/packages/apps/Launcher2/src/com/android/launcher2/ |
D | Workspace.java | 360 CellLayout cl = (CellLayout) mLauncher.getWorkspace().getChildAt(0); in estimateItemSize() local 361 Rect r = estimateItemPosition(cl, itemInfo, 0, 0, hSpan, vSpan); in estimateItemSize() 375 public Rect estimateItemPosition(CellLayout cl, ItemInfo pendingInfo, in estimateItemPosition() argument 378 cl.cellToRect(hCell, vCell, hSpan, vSpan, r); in estimateItemPosition() 443 CellLayout cl = ((CellLayout) child); in onChildViewAdded() local 444 cl.setOnInterceptTouchListener(this); in onChildViewAdded() 445 cl.setClickable(true); in onChildViewAdded() 446 cl.setContentDescription(getContext().getString( in onChildViewAdded() 455 final CellLayout cl = (CellLayout) child; in shouldDrawChild() local 457 (cl.getShortcutsAndWidgets().getAlpha() > 0 || in shouldDrawChild() [all …]
|
D | SpringLoadedDragController.java | 42 public void setAlarm(CellLayout cl) { in setAlarm() argument 44 mAlarm.setAlarm((cl == null) ? ENTER_SPRING_LOAD_CANCEL_HOVER_TIME : in setAlarm() 46 mScreen = cl; in setAlarm()
|
D | Launcher.java | 2342 CellLayout cl = (CellLayout) fi.getParent().getParent(); in growAndFadeOutFolderIcon() local 2344 cl.setFolderLeaveBehindCell(lp.cellX, lp.cellY); in growAndFadeOutFolderIcon() 2363 final CellLayout cl = (CellLayout) fi.getParent().getParent(); in shrinkAndFadeInFolderIcon() local 2374 if (cl != null) { in shrinkAndFadeInFolderIcon() 2375 cl.clearFolderLeaveBehind(); in shrinkAndFadeInFolderIcon()
|
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/ |
D | TestInstrumentationRunner.java | 56 public Activity newActivity(ClassLoader cl, String className, Intent intent) in newActivity() argument 60 return callback.createActivity(cl, className, intent); in newActivity() 62 return super.newActivity(cl, className, intent); in newActivity() 67 public Application newApplication(ClassLoader cl, String className, Context context) in newApplication() argument 69 Application app = super.newApplication(cl, className, context); in newApplication() 102 Activity createActivity(ClassLoader cl, String className, Intent intent) in createActivity() argument
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | Workspace.java | 397 CellLayout cl = (CellLayout) getChildAt(numCustomPages()); in estimateItemSize() local 400 Rect r = estimateItemPosition(cl, 0, 0, itemInfo.spanX, itemInfo.spanY); in estimateItemSize() 427 public Rect estimateItemPosition(CellLayout cl, int hCell, int vCell, int hSpan, int vSpan) { in estimateItemPosition() argument 429 cl.cellToRect(hCell, vCell, hSpan, vSpan, r); in estimateItemPosition() 569 CellLayout cl = ((CellLayout) child); in onChildViewAdded() local 570 cl.setOnInterceptTouchListener(this); in onChildViewAdded() 571 cl.setClickable(true); in onChildViewAdded() 572 cl.setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO); in onChildViewAdded() 811 CellLayout cl = (CellLayout) mDragSourceInternal.getParent(); in addExtraEmptyScreenOnDrag() local 812 if (indexOfChild(cl) == getChildCount() - 1) { in addExtraEmptyScreenOnDrag() [all …]
|
D | WorkspaceStateTransitionAnimation.java | 310 final CellLayout cl = (CellLayout) mWorkspace.getChildAt(i); in animateWorkspace() local 311 float initialAlpha = cl.getShortcutsAndWidgets().getAlpha(); in animateWorkspace() 334 cl.setShortcutAndWidgetAlpha(initialAlpha); in animateWorkspace() 339 float oldBackgroundAlpha = cl.getBackgroundAlpha(); in animateWorkspace() 342 cl.getShortcutsAndWidgets(), View.ALPHA, finalAlpha); in animateWorkspace() 348 ValueAnimator bgAnim = ObjectAnimator.ofFloat(cl, "backgroundAlpha", in animateWorkspace() 355 cl.setBackgroundAlpha(finalBackgroundAlpha); in animateWorkspace() 356 cl.setShortcutAndWidgetAlpha(finalAlpha); in animateWorkspace()
|
D | PinchAnimationManager.java | 187 final CellLayout cl = (CellLayout) mWorkspace.getChildAt(i); in setOverviewPanelsAlpha() local 189 cl.setBackgroundAlpha(alpha); in setOverviewPanelsAlpha() 191 ObjectAnimator.ofFloat(cl, "backgroundAlpha", alpha).setDuration(duration).start(); in setOverviewPanelsAlpha()
|
D | LauncherAppState.java | 164 try (ContentProviderClient cl = context.getContentResolver() 166 return (LauncherProvider) cl.getLocalContentProvider();
|
D | Launcher.java | 3394 CellLayout cl = mWorkspace.getScreenWithId(item.screenId); in bindItems() local 3395 if (cl != null && cl.isOccupied(item.cellX, item.cellY)) { in bindItems() 3396 View v = cl.getChildAt(item.cellX, item.cellY); in bindItems()
|
/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
D | FolderIcon.java | 247 CellLayout cl = (CellLayout) getParent().getParent(); in onDragEnter() local 249 mBackground.animateToAccept(cl, lp.cellX, lp.cellY); in onDragEnter() 793 public void animateToAccept(final CellLayout cl, final int cellX, final int cellY) { 797 delegateDrawing(cl, cellX, cellY); 807 final CellLayout cl = mDrawingDelegate; 814 delegateDrawing(cl, cellX, cellY); 1113 final CellLayout cl = (CellLayout) getParent().getParent(); 1121 if (cl != null) { 1122 cl.clearFolderLeaveBehind(); 1130 if (cl != null) { [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/ |
D | ColorGridDialog.java | 35 public ColorGridDialog(Context context, final RGBListener cl) { in ColorGridDialog() argument 37 mCallback = cl; in ColorGridDialog() 87 ColorListener cl = new ColorListener() { in showColorPicker() local 99 ColorPickerDialog cpd = new ColorPickerDialog(this.getContext(), cl); in showColorPicker()
|
D | ColorPickerDialog.java | 46 public ColorPickerDialog(Context context, final ColorListener cl) { in ColorPickerDialog() argument 70 cl.setColor(mHSVO); in ColorPickerDialog()
|
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/ |
D | SpringLoadedDragController.java | 47 public void setAlarm(CellLayout cl) { in setAlarm() argument 49 mAlarm.setAlarm((cl == null) ? ENTER_SPRING_LOAD_CANCEL_HOVER_TIME : in setAlarm() 51 mScreen = cl; in setAlarm()
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
D | CommonControllerOverlay.java | 296 int cl = (r - l - cw) / 2; in layoutCenteredView() local 298 view.layout(cl, ct, cl + cw, ct + ch); in layoutCenteredView()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/ |
D | ColorChooser.java | 162 ColorListener cl = new ColorListener() { in showColorPicker() local 171 ColorPickerDialog cpd = new ColorPickerDialog(mContext, cl); in showColorPicker()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
D | ParametricEditor.java | 89 static Constructor getConstructor(Class cl) { in getConstructor() argument 91 return cl.getConstructor(Context.class, ViewGroup.class); in getConstructor()
|
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/e2eui/ |
D | ManagedProfileTest.java | 58 (cl, className, intent) -> new TestPreProvisioningActivity(mResultListener)); in setUp()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapContent.java | 3561 String cl = c.getString(c.getColumnIndex(Mms.Part.CONTENT_LOCATION)); in extractMmsParts() local 3572 "\n cl : " + cl + in extractMmsParts() 3579 part.mContentLocation = cl; in extractMmsParts()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | ro_wordlist.combined.gz | 1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ... |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
D | pt_BR_wordlist.combined.gz | 1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ... |
D | pt_PT_wordlist.combined.gz | 1dictionary=main:pt_pt,locale=pt_PT,description=Português (Portugal),date ... |
D | es_wordlist.combined.gz | 1dictionary=main:es,locale=es,description=Español,date=1414726268, ... |
D | tr_wordlist.combined.gz | 1dictionary=main:tr,locale=tr,description=Türkçe,date=1414726261, ... |
/packages/apps/Messaging/build/gcheckstyle/ |
D | google-style-checker_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |