Searched defs:delegate (Results 1 - 7 of 7) sorted by relevance

/packages/apps/UnifiedEmail/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/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/Gallery2/src/com/android/photos/
H A DMultiChoiceManager.java76 public void setDelegate(Delegate delegate) { argument
77 if (mDelegate == delegate) {
83 mDelegate = delegate;
192 public BulkDeleteTask(Delegate delegate, List<Object> paths) { argument
193 mDelegate = delegate;

Completed in 109 milliseconds