Searched refs:match (Results 1 - 25 of 62) sorted by relevance

123

/frameworks/compile/libbcc/tools/
H A Dgen-config-from-mk.py19 if conf_patt.match(line.strip()):
23 if split_patt.match(line.strip()):
29 match = var_patt.match(line.strip())
30 if match:
31 print '#define', match.group(1), match.group(2)
33 elif split_patt.match(line.strip()):
/frameworks/base/tools/aapt/
H A DResourceFilter.h22 bool match(int axis, uint32_t value) const;
23 bool match(int axis, const ResTable_config& config) const;
24 bool match(const ResTable_config& config) const;
H A DResourceFilter.cpp51 // if it's a locale with a region, also match an unmodified locale of the
73 ResourceFilter::match(int axis, uint32_t value) const function in class:ResourceFilter
89 ResourceFilter::match(int axis, const ResTable_config& config) const function in class:ResourceFilter
91 return match(axis, AaptGroupEntry::getConfigValueForAxis(config, axis));
95 ResourceFilter::match(const ResTable_config& config) const function in class:ResourceFilter
98 if (!match(i, AaptGroupEntry::getConfigValueForAxis(config, i))) {
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode_inline.h26 UInt end, match; local
31 match = 1 << 31;
37 while (match >= end)
39 if ((match&bitmapzz[0]) == 0)
43 match >>= 1;
47 match >>= 1;
72 match = 1 << 31;
74 while (match >= end)
76 if ((match&bitmapzz[1]) == 0)
80 match >>
117 UInt end, match; local
125 ldr match, [bitmapzz] local
137 bic match, match, end /* remove it from bitmap */ local
168 ldr match, [bitmapzz, #4] local
178 bic match, match, end /* remove it from bitmap */ local
231 UInt end = 0, match; local
[all...]
/frameworks/base/core/java/android/os/
H A DPatternMatcher.java26 * Pattern type: the given pattern must exactly match the string it is
32 * Pattern type: the given pattern must match the
40 * In this syntax, you can use the '*' character to match against zero or
42 * character before it is '.' it will match any character. The character
64 public boolean match(String str) { method in class:PatternMatcher
109 static boolean matchPattern(String pattern, String match, int type) { argument
110 if (match == null) return false;
112 return pattern.equals(match);
114 return match.startsWith(pattern);
121 return match
[all...]
H A DUEventObserver.java26 * startObserving() with a match string. The UEvent thread will then call your
27 * onUEvent() method when a UEvent occurs that contains your match string.<p>
86 /** Many to many mapping of string match to observer.
88 * an ArrayList where even elements are the String match and odd
116 public void addObserver(String match, UEventObserver observer) { argument
118 mObservers.add(match);
161 * @param match A substring of the UEvent to match. Use "" to match all
164 public final synchronized void startObserving(String match) { argument
[all...]
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java65 int match = sURLMatcher.match(url);
66 switch (match) {
87 int match = sURLMatcher.match(url);
88 switch (match) {
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java89 int match = sURLMatcher.match(url);
90 switch (match) {
118 int match = sURLMatcher.match(url);
119 switch (match) {
133 int match = sURLMatcher.match(url);
135 switch (match) {
/frameworks/base/core/java/android/text/method/
H A DDialerKeyListener.java65 int match = super.lookup(event, content);
67 if (match != 0) {
68 return match;
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java120 int match = sURLMatcher.match(url);
121 switch (match) {
133 int match = sURLMatcher.match(url);
134 switch (match) {
/frameworks/base/core/java/android/util/
H A DDebugUtils.java60 * @param object any object to match against the ANDROID_OBJECT_FILTER
66 boolean match = false;
90 match |= (value != null ?
103 return match;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccProvider.java79 switch (URL_MATCHER.match(url)) {
96 switch (URL_MATCHER.match(url)) {
115 int match = URL_MATCHER.match(url);
116 switch (match) {
141 switch (match) {
182 int match = URL_MATCHER.match(url);
183 switch (match) {
255 int match
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPreferredActivity.java39 PreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) { argument
41 mPref = new PreferredComponent(this, match, set, activity);
/frameworks/base/core/java/com/google/android/mms/util/
H A DPduCache.java119 int match = URI_MATCHER.match(uri);
120 switch (match) {
138 purgeByMessageBox(MATCH_TO_MSGBOX_ID_MAP.get(match));
171 int match = URI_MATCHER.match(uri);
174 switch (match) {
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java37 * The activity that corresponds to this resolution match, if this
44 * The service that corresponds to this resolution match, if this
56 * The declared priority of this match. Comes from the "priority"
71 * IntentFilter. This is a match constant, a combination of
75 public int match; field in class:ResolveInfo
94 * match's label. From the "label" attribute or, if not set, 0.
106 * match's icon. From the "icon" attribute or, if not set, 0.
190 * Return the icon resource identifier to use for this match. If the
191 * match defines an icon, that is used; else if the activity defines
194 * @return The icon associated with this match
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DLocalBroadcastManager.java126 * Register a receive for any local broadcasts that match the given IntentFilter.
231 int match = receiver.filter.match(action, type, scheme, data,
233 if (match >= 0) {
234 if (debug) Log.v(TAG, " Filter matched! match=0x" +
235 Integer.toHexString(match));
244 switch (match) {
251 Log.v(TAG, " Filter did not match: " + reason);
/frameworks/base/tools/preload/
H A Dsorttable.js81 if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col
82 mtch = headrow[i].className.match(/\bsorttable_([a-z0-9]+)\b/);
172 if (text.match(/^-?[�$�]?[\d,.]+%?$/)) {
178 possdate = text.match(sorttable.DATE_RE)
272 mtch = a[0].match(sorttable.DATE_RE);
277 mtch = b[0].match(sorttable.DATE_RE);
287 mtch = a[0].match(sorttable.DATE_RE);
292 mtch = b[0].match(sorttable.DATE_RE);
/frameworks/base/core/java/android/content/
H A DIntentFilter.java40 * match against actions, categories, and data (either via its type, scheme,
58 * only match intents that contain no data.
63 * specified must match the contents of the Intent. If you specify a scheme
65 * match; a content: URI will never match because they always have a MIME type
67 * has somewhat special meaning: it will match either an Intent with no URI
69 * then only an Intent with no data or type will match. To specify an authority,
82 * <p>A match is based on the following rules. Note that
83 * for an IntentFilter to match an Intent, three conditions must hold:
84 * the <strong>action</strong> and <strong>category</strong> must match, an
674 public int match(Uri data) { method in class:IntentFilter.AuthorityEntry
1068 public final int match(ContentResolver resolver, Intent intent, method in class:IntentFilter
1103 public final int match(String action, String type, String scheme, method in class:IntentFilter
[all...]
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java239 // the filters that match that MIME type.
248 // completely match or wildcards whose base type matches.
254 // We can match anything with our base type.
275 // the filters that match its scheme (we will further refine matches
344 protected R newResult(F filter, int match) { argument
519 int match;
545 match = filter.match(action, resolvedType, scheme, data, categories, TAG);
546 if (match >= 0) {
547 if (debug) Slog.v(TAG, " Filter matched! match
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DUriMatcherTest.java87 int result = mURLMatcher.match(Uri.parse(uri));
/frameworks/base/opengl/libs/EGL/
H A Degl_display.cpp231 const char* match = strstr(disp[i].queryString.extensions, ext.string()); local
232 if (match && (match[len] == ' ' || match[len] == 0)) {
/frameworks/base/media/libstagefright/foundation/
H A DAString.cpp256 const char *match = strstr(mData + start, substring); local
258 if (match == NULL) {
262 return match - mData;
/frameworks/base/core/java/android/provider/
H A DTelephony.java1357 Matcher match = NAME_ADDR_EMAIL_PATTERN.matcher(address);
1359 if (match.matches()) {
1360 return match.group(2);
1377 Matcher match = Patterns.EMAIL_ADDRESS.matcher(s);
1378 return match.matches();
1392 Matcher match = Patterns.PHONE.matcher(number);
1393 return match.matches();
/frameworks/base/core/java/android/text/util/
H A DLinkify.java45 * required. Any pattern match that does not begin with the supplied scheme
137 public final String transformUrl(final Matcher match, String url) {
138 return Patterns.digitsAndPlusOnly(match);
144 * what is allowed to match and become a link, and what is not.
147 * http://www.example.com to match, as well as just example.com itelf.
148 * However, you would not want to match against the domain in
150 * might also include a MatchFilter that disallows the match if it is
156 * if the match should be turned into an actionable link.
165 * @return Whether this match should be turned into a link
183 * @param match Th
188 transformUrl(final Matcher match, String url) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DSimUnlockScreen.java247 final char match = event.getMatch(DIGITS);
248 if (match != 0) {
249 reportDigit(match - '0');

Completed in 705 milliseconds

123