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

/development/tools/mkstubs/src/com/android/mkstubs/
H A DFilter.java22 * A "filter" holds the various patterns that MkStubs should accept (include)
29 * The {@link #accept(String)} method examines a given string against the known
73 * @param s The string to accept or reject.
76 public boolean accept(String s) { method in class:Filter
79 boolean accept = mIncludeFull.contains(s);
80 if (!accept) {
84 accept = true;
90 if (accept) {
92 accept = !mExcludeFull.contains(s);
94 if (accept) {
[all...]

Completed in 112 milliseconds