Searched refs:computeChannel (Results 1 – 2 of 2) sorted by relevance
/frameworks/layoutlib/bridge/src/android/graphics/ |
D | Gradient_Delegate.java | 213 int a = computeChannel((c1 >> 24) & 0xFF, (c2 >> 24) & 0xFF, percent); in computeColor() 214 int r = computeChannel((c1 >> 16) & 0xFF, (c2 >> 16) & 0xFF, percent); in computeColor() 215 int g = computeChannel((c1 >> 8) & 0xFF, (c2 >> 8) & 0xFF, percent); in computeColor() 216 int b = computeChannel((c1 ) & 0xFF, (c2 ) & 0xFF, percent); in computeColor() 224 private int computeChannel(int c1, int c2, float percent) { in computeChannel() method in Gradient_Delegate.GradientPaint
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
D | NotificationController.java | 182 Notification.Builder builder = new Notification.Builder(mContext, computeChannel(printJob)) in createNotification() 326 private static String computeChannel(PrintJobInfo printJob) { in computeChannel() method in NotificationController
|