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

/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java147 private ArrayList<F> collectFilters(F[] array, IntentFilter matching) { argument
155 if (filterEquals(cur, matching)) {
166 public ArrayList<F> findFilters(IntentFilter matching) { argument
167 if (matching.countDataSchemes() == 1) {
169 return collectFilters(mSchemeToFilter.get(matching.getDataScheme(0)), matching);
170 } else if (matching.countDataTypes() != 0 && matching.countActions() == 1) {
172 return collectFilters(mTypedActionToFilter.get(matching.getAction(0)), matching);
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java388 ArrayList<MultiAttributeSetter> matching = getMatchingMultiAttributeSetters(attributes,
390 Collections.sort(matching, COMPARE_MULTI_ATTRIBUTE_SETTERS);
391 while (!matching.isEmpty()) {
392 MultiAttributeSetter bestMatch = matching.get(0);
394 removeConsumedAttributes(matching, bestMatch.attributes);
400 private static void removeConsumedAttributes(ArrayList<MultiAttributeSetter> matching, argument
402 for (int i = matching.size() - 1; i >= 0; i--) {
403 final MultiAttributeSetter setter = matching.get(i);
412 matching.remove(i);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 71 milliseconds