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

123

/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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DInMatcher.java50 public boolean matches(Object o) { method in class:InMatcher
/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.java42 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
/frameworks/support/v4/tests/java/android/support/v4/testutils/
H A DTestUtilsMatchers.java40 * Returns a matcher that matches views which have specific background color.
81 * Returns a matcher that matches Views which are an instance of the provided class.
101 * Returns a matcher that matches Views that are aligned to the left / start edge of
147 * Returns a matcher that matches Views that are aligned to the right / end edge of
193 * Returns a matcher that matches Views that are centered horizontally in their parent.
234 * Returns a matcher that matches lists of integer values that match the specified sequence
237 public static Matcher<List<Integer>> matches(final int ... expectedValues) { method in class:TestUtilsMatchers
/frameworks/base/core/java/android/view/
H A DHandlerActionQueue.java57 if (actions[i].matches(action)) {
122 public boolean matches(Runnable otherAction) { method in class:HandlerActionQueue.HandlerAction
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DIMSIParameter.java39 public boolean matches(String fullIMSI) { method in class:IMSIParameter
/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.java79 Map<HomeSP, PasspointMatch> matches) {
82 mMatches = matches;
78 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/tools/aapt/
H A DApkBuilder.h82 bool matches(const sp<AaptFile>& file) const { function in class:ApkSplit
/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/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTelephonyEventLogTest.java60 public boolean matches(Object item) { method in class:TelephonyEventLogTest.TelephonyEventMatcher
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1Object.java67 public boolean matches(Asn1ID id) { method in class:Asn1Object
/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/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioSession.cpp99 bool AudioSession::matches(const sp<AudioSession> &other) const function in class:android::AudioSession

Completed in 3832 milliseconds

123