Searched refs:delegate (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Email/src/org/apache/commons/io/comparator/
H A DReverseComparator.java24 * the delegate {@link Comparator}.
31 private final Comparator<T> delegate; field in class:ReverseComparator
34 * Construct an instance with the sepecified delegate {@link Comparator}.
36 * @param delegate The comparator to delegate to
38 public ReverseComparator(Comparator<T> delegate) { argument
39 if (delegate == null) {
42 this.delegate = delegate;
46 * Compare using the delegate Comparato
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DSynchronousProfileProvider.java30 public SynchronousProfileProvider(ContactsProvider2 delegate) { argument
31 super(delegate);
H A DBaseVoicemailProviderTest.java154 public static synchronized void setVvmProviderCallDelegate(VvmProviderCalls delegate) { argument
155 mDelegate = delegate;
/packages/apps/Email/src/org/apache/commons/io/filefilter/
H A DDelegateFileFilter.java40 * Constructs a delegate file filter around an existing FilenameFilter.
53 * Constructs a delegate file filter around an existing FileFilter.
100 String delegate = (fileFilter != null ? fileFilter.toString() : filenameFilter.toString());
101 return super.toString() + "(" + delegate + ")";
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DTestLoaderManager.java40 * delegate to the original object.
101 * Sets the object to which we delegate the actual work.
106 public void setDelegate(LoaderManager delegate) { argument
107 if (delegate == null || (mDelegate != null && mDelegate != delegate)) {
111 mDelegate = delegate;
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPhotoPageBottomControls.java60 public PhotoPageBottomControls(Delegate delegate, Context context, RelativeLayout layout) { argument
61 mDelegate = delegate;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DProfileProvider.java43 public ProfileProvider(ContactsProvider2 delegate) { argument
44 mDelegate = delegate;
48 * Performs a permission check on the read profile permission. Checks the delegate contacts
/packages/apps/Launcher2/src/com/android/launcher2/
H A DDragController.java490 DropTarget delegate = dropTarget.getDropTargetDelegate(mDragObject);
491 if (delegate != null) {
492 dropTarget = delegate;
694 DropTarget delegate = target.getDropTargetDelegate(mDragObject);
695 if (delegate != null) {
696 target = delegate;

Completed in 248 milliseconds