Searched refs:accept (Results 1 - 25 of 132) sorted by relevance

123456

/packages/apps/DocumentsUI/src/com/android/documentsui/base/
H A DBooleanConsumer.java21 void accept(boolean value); method in interface:BooleanConsumer
H A DEventListener.java24 void accept(T event); method in interface:EventListener
H A DEventHandler.java25 boolean accept(T event); method in interface:EventHandler
39 public boolean accept(T event) { method in class:EventHandler.Stub
H A DConfirmationCallback.java38 void accept(@Result int code); method in interface:ConfirmationCallback
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionFilter.java28 boolean accept(Suggestion s); method in interface:SuggestionFilter
H A DResultFilter.java26 public boolean accept(Suggestion s) { method in class:ResultFilter
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
H A DAbstractFileFilter.java25 * Note that a subclass <b>must</b> override one of the accept methods,
41 public boolean accept(File file) { method in class:AbstractFileFilter
42 return accept(file.getParentFile(), file.getName());
52 public boolean accept(File dir, String name) { method in class:AbstractFileFilter
53 return accept(new File(dir, name));
H A DDelegateFileFilter.java71 public boolean accept(File file) { method in class:DelegateFileFilter
73 return fileFilter.accept(file);
75 return super.accept(file);
86 public boolean accept(File dir, String name) { method in class:DelegateFileFilter
88 return filenameFilter.accept(dir, name);
90 return super.accept(dir, name);
H A DNotFileFilter.java54 public boolean accept(File file) { method in class:NotFileFilter
55 return ! filter.accept(file);
65 public boolean accept(File file, String name) { method in class:NotFileFilter
66 return ! filter.accept(file, name);
H A DFalseFileFilter.java57 public boolean accept(File file) { method in class:FalseFileFilter
68 public boolean accept(File dir, String name) { method in class:FalseFileFilter
H A DIOFileFilter.java42 public boolean accept(File file); method in interface:IOFileFilter
53 public boolean accept(File dir, String name); method in interface:IOFileFilter
H A DTrueFileFilter.java57 public boolean accept(File file) { method in class:TrueFileFilter
68 public boolean accept(File dir, String name) { method in class:TrueFileFilter
H A DCanWriteFileFilter.java76 public boolean accept(File file) { method in class:CanWriteFileFilter
H A DDirectoryFileFilter.java69 public boolean accept(File file) { method in class:DirectoryFileFilter
H A DFileFileFilter.java56 public boolean accept(File file) { method in class:FileFileFilter
H A DHiddenFileFilter.java72 public boolean accept(File file) { method in class:HiddenFileFilter
H A DCanReadFileFilter.java88 public boolean accept(File file) { method in class:CanReadFileFilter
H A DEmptyFileFilter.java75 public boolean accept(File file) { method in class:EmptyFileFilter
H A DOrFileFilter.java117 public boolean accept(final File file) { method in class:OrFileFilter
120 if (fileFilter.accept(file)) {
131 public boolean accept(final File file, final String name) { method in class:OrFileFilter
134 if (fileFilter.accept(file, name)) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
H A DKlpActionTestsBase.java32 public boolean accept(final InputMethodSubtype subtype) {
45 public boolean accept(final InputMethodSubtype subtype) {
46 return !SUBTYPE_FILTER_NAME_IN_BASE_LOCALE.accept(subtype);
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
H A DTestActionModeAddons.java32 finishOnConfirmed.accept(code);
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
H A DTestConsumer.java30 public void accept(T event) { method in class:TestConsumer
H A DTestDocumentClipper.java81 clipForCut.accept(uris);
87 copyFromClip.accept(Pair.create(new DocumentStack(docStack, destination), primaryClip));
92 copyFromClip.accept(Pair.create(docStack, primaryClip));
98 copyFromClip.accept(Pair.create(new DocumentStack(docStack, destination), clipData));
104 copyFromClip.accept(Pair.create(dstStack, clipData));
105 this.opType.accept(opType);
110 copyFromClip.accept(Pair.create(docStack, clipData));
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/queries/
H A DCommandInterceptorTest.java51 mProcessor.accept(COMMAND_PREFIX + "poodles");
59 mProcessor.accept(":poodles");
67 mProcessor.accept(COMMAND_PREFIX + "cheese doodles");
75 mProcessor.accept(COMMAND_PREFIX);
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
H A DListeningGestureDetector.java89 scaleHandler.accept(detector.getScaleFactor());
110 mRefreshLayoutEnabler.accept(false);
117 mRefreshLayoutEnabler.accept(false);
124 mRefreshLayoutEnabler.accept(true);
146 mRefreshLayoutEnabler.accept(true);
159 return mMouseDragListener.accept(e);

Completed in 259 milliseconds

123456