Searched defs:matches (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DAbstractAssetMatcher.java27 * Returns true if this AssetMatcher matches the asset.
29 public abstract boolean matches(AbstractAsset asset); method in class:AbstractAssetMatcher
H A DAndroidAppAssetMatcher.java35 public boolean matches(AbstractAsset asset) { method in class:AndroidAppAssetMatcher
H A DWebAssetMatcher.java31 public boolean matches(AbstractAsset asset) { method in class:WebAssetMatcher
H A DRelation.java71 if (!KIND_PATTERN.matcher(kind).matches() || !DETAIL_PATTERN.matcher(detail).matches()) {
93 public boolean matches(Relation relation) { method in class:Relation
/frameworks/base/services/core/java/com/android/server/firewall/
H A DAndFilter.java28 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:AndFilter
31 if (!children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
H A DFilter.java34 boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in interface:Filter
H A DNotFilter.java35 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:NotFilter
37 return !mChild.matches(ifw, resolvedComponent, intent, callerUid, callerPid, resolvedType,
H A DOrFilter.java28 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:OrFilter
31 if (children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
H A DCategoryFilter.java37 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:CategoryFilter
H A DSenderPackageFilter.java41 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:SenderPackageFilter
H A DSenderPermissionFilter.java36 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:SenderPermissionFilter
H A DPortFilter.java44 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:PortFilter
H A DStringFilter.java121 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:StringFilter
207 return value != null && mPattern.matcher(value).matches();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DIMSIParameter.java41 public boolean matches(String fullIMSI) { method in class:IMSIParameter
H A DScanDetail.java54 Map<HomeSP, PasspointMatch> matches) {
57 mMatches = matches;
53 ScanDetail(ScanResult scanResult, NetworkDetail networkDetail, Map<HomeSP, PasspointMatch> matches) argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DBluetoothDeviceFilter.java28 * passed to it matches the specified filter type constant from
36 boolean matches(BluetoothDevice device); method in interface:BluetoothDeviceFilter.Filter
77 /** Filter that matches all devices. */
79 public boolean matches(BluetoothDevice device) { method in class:BluetoothDeviceFilter.AllFilter
84 /** Filter that matches only bonded devices. */
86 public boolean matches(BluetoothDevice device) { method in class:BluetoothDeviceFilter.BondedDeviceFilter
91 /** Filter that matches only unbonded devices. */
93 public boolean matches(BluetoothDevice device) { method in class:BluetoothDeviceFilter.UnbondedDeviceFilter
100 abstract boolean matches(ParcelUuid[] uuids, BluetoothClass btClass); method in class:BluetoothDeviceFilter.ClassUuidFilter
102 public boolean matches(BluetoothDevic method in class:BluetoothDeviceFilter.ClassUuidFilter
110 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { method in class:BluetoothDeviceFilter.AudioFilter
131 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { method in class:BluetoothDeviceFilter.TransferFilter
145 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { method in class:BluetoothDeviceFilter.PanuFilter
159 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { method in class:BluetoothDeviceFilter.NapFilter
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DAccessibilityManagerTest.java212 * matches expectations.
224 * matches expectations which in this case are that any instance is accepted.
243 public boolean matches(Object matched) { method in class:AccessibilityManagerTest.AccessibilityEventMather
263 public boolean matches(Object matched) { method in class:AccessibilityManagerTest.AnyIAccessibilityManagerClientMather
/frameworks/base/tools/aapt/
H A DApkBuilder.h82 bool matches(const sp<AaptFile>& file) const { function in class:ApkSplit
/frameworks/base/tools/aidl/
H A Doptions_test.cpp241 int matches[count]; local
256 matches[i] = test(g_tests[i]);
258 if (0 == matches[i]) {
263 result |= matches[i];
277 if (matches[i]) {
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java163 * Check whether the value of the specified setting matches the given one.
172 public <T> boolean matches(Key<T> key, T value) { method in class:Camera2RequestSettingsSet
/frameworks/av/media/libmedia/
H A DCharacterEncodingDetector.cpp117 int32_t matches; local
118 const UCharsetMatch** ucma = ucsdet_detectAll(csd, &matches, &status);
122 ucma, matches, &goodmatch, &highest);
148 ucma = ucsdet_detectAll(csd, &matches, &status);
150 ucma, matches, &goodmatch, &highest);
268 * When ICU detects multiple encoding matches, apply additional heuristics to determine
272 * - decode the input using each of the matches found
286 Vector<const UCharsetMatch*> matches; local
289 ALOGV("%zu matches", nummatches);
294 matches
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkTemplate.java256 * Test if given {@link NetworkIdentity} matches this template.
258 public boolean matches(NetworkIdentity ident) { method in class:NetworkTemplate
333 * Check if matches Wi-Fi network template.
346 * Check if matches Ethernet network template.
374 * Check if matches Bluetooth network template.
420 * active merge set [A,B], we'd return a new template that primarily matches
421 * A, but also matches B.
426 // a template that matches all merged subscribers.
H A DRouteInfo.java136 // matches the documented behaviour. Before we can do this we need to fix all callers (e.g.,
341 * Indicates if this route is a host route (ie, matches only a single host address).
369 public boolean matches(InetAddress destination) { method in class:RouteInfo
374 * Find the route from a Collection of routes that best matches a given address.
394 if (route.matches(dest)) bestRoute = route;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraDeviceBinderTest.java150 public boolean matches(Object obj) { method in class:CameraDeviceBinderTest.IsMetadataNotEmpty
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaInserterTest.java62 public boolean matches(Object argument) { method in class:MediaInserterTest.MediaUriMatcher

Completed in 2678 milliseconds

12