Home
last modified time | relevance | path

Searched refs:matching (Results 1 – 18 of 18) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
DIntentResolver.java148 private ArrayList<F> collectFilters(F[] array, IntentFilter matching) { in collectFilters() argument
156 if (filterEquals(cur, matching)) { in collectFilters()
167 public ArrayList<F> findFilters(IntentFilter matching) { in findFilters() argument
168 if (matching.countDataSchemes() == 1) { in findFilters()
170 return collectFilters(mSchemeToFilter.get(matching.getDataScheme(0)), matching); in findFilters()
171 } else if (matching.countDataTypes() != 0 && matching.countActions() == 1) { in findFilters()
173 return collectFilters(mTypedActionToFilter.get(matching.getAction(0)), matching); in findFilters()
174 } else if (matching.countDataTypes() == 0 && matching.countDataSchemes() == 0 in findFilters()
175 && matching.countActions() == 1) { in findFilters()
177 return collectFilters(mActionToFilter.get(matching.getAction(0)), matching); in findFilters()
[all …]
/frameworks/av/media/codec2/vndk/util/
DC2ParamUtils.cpp142 size_t matching = countMatching( in sanitizeEnumValueNames() local
145 prefix.resize(matching); in sanitizeEnumValueNames()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/test/java/com/google/protobuf/nano/
Dunittest_repeated_packables_nano.proto74 // All packable types, all matching the field numbers in NonPacked,
/frameworks/base/core/proto/android/net/
Dnetworkrequest.proto47 // from the point of view of the request matching code, TRACK_DEFAULT is
/frameworks/opt/telephony/proto/src/
DcarrierId.proto59 // decimal format. Some digits can be replaced with "x" symbols matching any digit.
Dtelephony.proto1600 // Carrier id matching result object
1610 // but its matching rule is unknown
1614 // from subscription but its matching rule is unknown
1695 // Carrier id matching event
/frameworks/base/cmds/hid/
DREADME.md49 Device ID is used for matching the subsequent commands to a specific device
/frameworks/rs/script_api/
Drs_graphics.spec359 operate on the texture bound at the matching slot.
376 matching slot.
/frameworks/compile/slang/
DREADME.rst282 the same exact dimensionality (i.e. matching X and Y values for dimension).
/frameworks/rs/script_api/include/
Drs_graphics.rsh624 * operate on the texture bound at the matching slot.
645 * matching slot.
Drs_math.rsh737 * min_value: Lower bound, a scalar or matching vector.
2250 * exponent: Exponent, a single component or matching vector.
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/
Dunittest.proto665 // RepeatedFieldsGenerator defines matching field types as TestParsingMerge,
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/
Dunittest.proto665 // RepeatedFieldsGenerator defines matching field types as TestParsingMerge,
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dunittest.proto825 // RepeatedFieldsGenerator defines matching field types as TestParsingMerge,
/frameworks/base/core/proto/android/server/
Djobscheduler.proto223 // we consider matching it against a metered network.
/frameworks/base/proto/src/
Dwifi.proto304 …// Histogram counting instances of scans with N many ScanResults matching unique saved passpoint p…
307 …// Histogram counting instances of scans with N many ScanResults BSSIDs matching a saved passpoint…
/frameworks/base/core/proto/android/providers/settings/
Dglobal.proto193 // prompt the user for install when a SIM card with matching UICC carrier privilege rules is
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java6999 List<NotificationRecord> matching = new ArrayList<>();
7005 matching.add(r);
7008 return matching;