Searched defs:match (Results 51 - 65 of 65) sorted by relevance

123

/frameworks/base/tools/aapt/
H A DImages.cpp975 bool match = false; local
980 match = true;
985 if (!match) {
1000 match = true;
1005 if (!match) {
/frameworks/base/tools/aapt2/compile/
H A DPng.cpp318 bool match = false; local
321 match = true;
330 if (!match) {
1244 // If the PNG signature doesn't match, bail early.
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePackageManager.java742 public void addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, argument
747 public void replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, argument
/frameworks/native/opengl/libagl/
H A Degl.cpp805 bool (*match)(GLint reqValue, GLint confValue); member in struct:android::config_management_t
1181 // attribute found, check if this config could match
1187 bool match = gConfigManagement[cfgMgtIndex].match( local
1189 if (match) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSupplicantStaNetworkHal.java526 Log.e(TAG, ssid + ": failed to set eap subject match: " + eapParam);
551 Log.e(TAG, ssid + ": failed to set eap alt subject match: " + eapParam);
557 Log.e(TAG, ssid + ": failed to set eap domain suffix match: " + eapParam);
1302 private boolean setEapSubjectMatch(String match) { argument
1307 SupplicantStatus status = mISupplicantStaNetwork.setEapSubjectMatch(match);
1316 private boolean setEapAltSubjectMatch(String match) { argument
1321 SupplicantStatus status = mISupplicantStaNetwork.setEapAltSubjectMatch(match);
1358 private boolean setEapDomainSuffixMatch(String match) { argument
1363 SupplicantStatus status = mISupplicantStaNetwork.setEapDomainSuffixMatch(match);
2107 Matcher match
[all...]
/frameworks/support/transition/src/android/support/transition/
H A DTransition.java124 * With {@link #setMatchOrder(int...)}, chooses to match by View instance.
130 * With {@link #setMatchOrder(int...)}, chooses to match by
136 * With {@link #setMatchOrder(int...)}, chooses to match by
142 * With {@link #setMatchOrder(int...)}, chooses to match by the {@link android.widget.Adapter}
143 * item id. When {@link android.widget.Adapter#hasStableIds()} returns false, no match
321 throw new InflateException("Unknown match type in matchOrder: '" + token + "'");
490 * The default behavior is to match first by {@link android.view.View#getTransitionName()},
495 * the match algorithms supplied will be used to determine whether Views are the
496 * the same in both the start and end Scene. Views that do not match will be considered
502 * If none are provided, then the default match orde
521 isValidMatch(int match) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java2191 int match, ComponentName[] set, ComponentName activity) {
2193 mPM.addPreferredActivity(filter, match, set, activity, mContext.getUserId());
2200 public void addPreferredActivityAsUser(IntentFilter filter, int match, argument
2203 mPM.addPreferredActivity(filter, match, set, activity, userId);
2211 int match, ComponentName[] set, ComponentName activity) {
2213 mPM.replacePreferredActivity(filter, match, set, activity, mContext.getUserId());
2221 int match, ComponentName[] set, ComponentName activity,
2224 mPM.replacePreferredActivity(filter, match, set, activity, userId);
2190 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
2210 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
2220 replacePreferredActivityAsUser(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java670 int cat = ri.match & IntentFilter.MATCH_CATEGORY_MASK;
699 if (p.match(ssp)) {
709 if (a.match(data) >= 0) {
722 if (p.match(path)) {
750 if (r.match > bestMatch) bestMatch = r.match;
755 final int otherProfileMatch = mAdapter.mOtherProfile.getResolveInfo().match;
979 // Try to initialize the title icon if we have a view for it and a title to match
1044 * Check a simple match for the component of two ResolveInfos.
1117 // to the application's icon, making it a match
2005 isSpecificUriMatch(int match) argument
[all...]
/frameworks/native/libs/hwc2on1adapter/
H A DHWC2On1Adapter.cpp1085 bool match = (attribute == local
1088 return match;
1091 return match && (attribute ==
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java394 * Querying flag: match components which are direct boot <em>unaware</em> in
399 * to match only runnable components based on the user state. For example,
411 * Querying flag: match components which are direct boot <em>aware</em> in
416 * to match only runnable components based on the user state. For example,
559 * if all signatures on the two packages match.
583 * if not all signatures on both packages match.
1283 * package because its packaged native code did not match any of the ABIs
3284 * must be under a domain you control, with a suffix that will not match
3480 * two packages match. The value is >= 0 ({@link #SIGNATURE_MATCH}) if
3481 * all signatures match o
5115 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
5124 addPreferredActivityAsUser(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, @UserIdInt int userId) argument
5151 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
5158 replacePreferredActivityAsUser(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, @UserIdInt int userId) argument
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp882 // because the strings are sorted with strzcmp16(). So to match
2228 // match the requested locale.
2230 // Because of the locale-related checks in match() and the checks, we know
2232 // 1) The resource languages are either empty or match the request;
2235 // unknown or match the request.
2243 // We consider the one that has the language specified a better match.
2245 // The exception is that we consider no-language resources a better match
2252 // better match if the other resource has a country other than
2275 // script checks in match(), the scripts are either all unknown or are all
2385 // For screen size, the best match i
2570 bool ResTable_config::match(const ResTable_config& settings) const { function in class:android::ResTable_config
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java994 protected BroadcastFilter newResult(BroadcastFilter filter, int match, int userId) {
997 return super.newResult(filter, match, userId);
1254 // If the activity was relaunched to match the new configuration.
5782 // Remove all tasks match the cleared application package and user
6262 // that match it. We need to qualify this by the processes
6546 // record that we expected; if it doesn't match then we raced with a
7426 "Intent array length does not match resolvedTypes length");
8310 // check if target holds any <path-permission> that match uri
8318 if (pp.match(path)) {
8323 + ": match
16076 boolean match(Object object, ComponentName comp) { method in class:ActivityManagerService.ItemMatcher
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java4428 // Caller expressed no opinion, so match based on user state
4481 // then match all users. This is to make sure that launchers that need to access work
4562 // Safe mode means we shouldn't match any third-party components
4649 if (a.intents.get(i).match(intent.getAction(), resolvedType, intent.getScheme(),
6357 IntentFilter filter, int match, ComponentName activity) {
6367 + " match=" + match
6378 addPreferredActivityInternal(filter, match, null, activity, false, userId,
6657 // First figure out how good the original match set is.
6659 // from the same match qualit
6356 setLastChosenActivity(Intent intent, String resolvedType, int flags, IntentFilter filter, int match, ComponentName activity) argument
13309 newResult(PackageParser.ActivityIntentInfo info, int match, int userId) argument
13541 newResult(PackageParser.ServiceIntentInfo filter, int match, int userId) argument
13778 newResult(PackageParser.ProviderIntentInfo filter, int match, int userId) argument
13895 newResult(AuxiliaryResolveInfo responseObj, int match, int userId) argument
20110 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
20116 addPreferredActivityInternal(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, boolean always, int userId, String opname) argument
20170 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
[all...]
/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/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 4564 milliseconds

123