Searched defs:match (Results 1 - 25 of 61) sorted by last modified time

123

/frameworks/rs/api/
H A DGenerateStubsWhiteList.cpp152 * corresponds to this list of tokens. If a match is found, consume these tokens
159 bool match = true; local
160 // We match up to three tokens.
167 match = false;
170 if (match) {
276 // We have a match, construct an index reference to that previously emitted mangling.
H A DUtilities.cpp77 string stringReplace(string s, string match, string rep) { argument
80 size_t p = s.find(match);
83 s.erase(p, match.size());
/frameworks/rs/
H A DrsElement.cpp233 // Look for an existing match.
279 // Look for an existing match.
284 bool match = true; local
301 match = false;
305 if (match) {
/frameworks/support/design/base/android/support/design/widget/
H A DStateListAnimator.java57 * @param specs The drawable state specs to match against
58 * @param animation The Animation to run when the specs match
112 Tuple match = null;
117 match = tuple;
121 if (match == mLastMatch) {
128 mLastMatch = match;
131 if (match != null && view != null && view.getVisibility() == View.VISIBLE ) {
132 start(match);
136 private void start(Tuple match) { argument
137 mRunningAnimation = match
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DScanDetailCache.java57 void put(ScanDetail scanDetail, PasspointMatch match, HomeSP homeSp) { argument
61 if (match != null && homeSp != null) {
63 new PasspointMatchInfo(match, scanDetail, homeSp));
227 * Method returning the Visibility based on passpoint match time.
259 String logMsg = "Visiblity by passpoint match returned ";
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DNAIRealmData.java61 public int match(List<String> credLabels, Credential credential) { method in class:NAIRealmData
74 // else there is a realm match and one or more EAP methods - check them.
82 int match = eapMethod.match(credential) | realmMatch;
83 if (match > best) {
84 best = match;
H A DNAIRealmElement.java49 public int match(Credential credential) { method in class:NAIRealmElement
56 int match = realmData.match(credLabels, credential);
57 if (match > best) {
58 best = match;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
H A DEAPMethod.java113 public int match(com.android.server.wifi.hotspot2.pps.Credential credential) { method in class:EAPMethod
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DAuthMatch.java7 * Indeterminate means that there is no ANQP information to match against.
20 public static String toString(int match) { argument
21 if (match < 0) {
24 else if (match == 0) {
29 if ((match & Realm) != 0) {
32 if ((match & Method) != 0) {
35 if ((match & Param) != 0) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
H A DDomainMatcher.java25 private Label(Match match) { argument
26 mMatch = match;
27 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null;
30 private void addDomain(Iterator<String> labels, Match match) { argument
35 subLabel.addDomain(labels, match);
37 mSubDomains.put(labelName, new Label(match));
H A DHomeSP.java142 public PasspointMatch match(NetworkDetail networkDetail, method in class:HomeSP
156 // PLMN match, promote sp match to roaming if necessary.
164 naiRealmElement.match(mCredential) :
167 Log.d(Utils.hs2LogTag(getClass()), networkDetail.toKeyString() + " match on " + mFQDN +
175 // No realm match, return sp match as is.
179 // Realm match, promote sp match to roaming if necessary.
191 Log.d(Utils.hs2LogTag(getClass()), "match SSI
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/native/opengl/libagl/
H A Degl.cpp813 bool (*match)(GLint reqValue, GLint confValue); member in struct:android::config_management_t
1171 // attribute found, check if this config could match
1177 bool match = gConfigManagement[cfgMgtIndex].match( local
1179 if (match) {
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.cpp1137 bool match = (attribute == local
1140 return match;
1143 return match && (attribute ==
/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. ...
/frameworks/minikin/libs/minikin/
H A DFontFamily.cpp109 // Compute a matching metric between two styles - 0 is an exact match
134 int match = computeMatch(font.style, style); local
135 if (i == 0 || match < bestMatch) {
137 bestMatch = match;
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java390 // the filters that match that MIME type.
399 // completely match or wildcards whose base type matches.
406 // We can match anything with our base type.
428 // the filters that match its scheme (we will further refine matches
515 protected R newResult(F filter, int match, int userId) { argument
712 int match;
749 match = filter.match(action, resolvedType, scheme, data, categories, TAG);
750 if (match >= 0) {
751 if (debug) Slog.v(TAG, " Filter matched! match
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java900 protected BroadcastFilter newResult(BroadcastFilter filter, int match, int userId) {
903 return super.newResult(filter, match, userId);
5457 // Remove all tasks match the cleared application package and user
5938 // that match it. We need to qualify this by the processes
7027 "Intent array length does not match resolvedTypes length");
7773 // check if target holds any <path-permission> that match uri
7781 if (pp.match(path)) {
7786 + ": match=" + pp.match(path)
7801 + ": match
14898 boolean match(Object object, ComponentName comp) { method in class:ActivityManagerService.ItemMatcher
[all...]
/frameworks/base/services/core/java/com/android/server/firewall/
H A DIntentFirewall.java160 // For the second pass, try to match the potentially more specific conditions in each
399 * is to select a subset of rules that might match a given intent.
403 * component filters, only a single filter must match for the rule to be passed on to the
407 * intent. All top level conditions (but not filters) in the rule must match for the rule as a
408 * whole to match.
411 * rules match, we combine the block/log flags from any matching rule.
512 protected Rule newResult(FirewallIntentFilter filter, int match, int userId) { argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java3544 // Caller expressed no opinion, so match based on user state
3625 // Safe mode means we shouldn't match any third-party components
3670 if (a.intents.get(i).match(intent.getAction(), resolvedType, intent.getScheme(),
4904 IntentFilter filter, int match, ComponentName activity) {
4911 + " match=" + match
4922 addPreferredActivityInternal(filter, match, null, activity, false, userId,
5006 // No hash prefix match; there are no ephemeral apps for this domain.
5019 // We have a domain match; resolve the filters to see if anything matches.
5032 // Hash or filter mis-match; n
4903 setLastChosenActivity(Intent intent, String resolvedType, int flags, IntentFilter filter, int match, ComponentName activity) argument
10800 newResult(PackageParser.ActivityIntentInfo info, int match, int userId) argument
11007 newResult(PackageParser.ServiceIntentInfo filter, int match, int userId) argument
11225 newResult(PackageParser.ProviderIntentInfo filter, int match, int userId) argument
11311 newResult(EphemeralResolveIntentInfo info, int match, int userId) argument
16767 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
16773 addPreferredActivityInternal(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, boolean always, int userId, String opname) argument
16808 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
[all...]
H A DPreferredActivity.java38 PreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, argument
41 mPref = new PreferredComponent(this, match, set, activity, always);
H A DPreferredComponent.java38 private static final String ATTR_MATCH = "match"; // number
60 public PreferredComponent(Callbacks callbacks, int match, ComponentName[] set, argument
63 mMatch = match&IntentFilter.MATCH_CATEGORY_MASK;
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java305 * @hide - to match hiding in superclass
603 * @hide - to match hiding in superclass
677 * @hide - to match hiding in superclass
686 * @hide - to match hiding in superclass
695 * @hide - to match hiding in superclass
717 * @hide - to match hiding in superclass
726 * @hide - to match hiding in superclass
778 int match, ComponentName[] set, ComponentName activity) {
783 * @hide - to match hiding in superclass
787 int match, ComponentNam
777 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
786 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
[all...]
/frameworks/base/tools/aapt/
H A DImages.cpp974 bool match = false; local
979 match = true;
984 if (!match) {
999 match = true;
1004 if (!match) {
H A DResourceFilter.cpp58 WeakResourceFilter::match(const ResTable_config& config) const function in class:WeakResourceFilter
77 // we match.
85 // Special case if the smallest screen width doesn't match. We check that the

Completed in 414 milliseconds

123