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

123

/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/docs/html/resources/webinars/
H A Ddate.js105 var match = regex.exec(date.toString()); variable
106 var yy = match[1];
107 var mm = match[2];
108 var dd = match[3];
109 var hh = parseInt(match[4], 10) + 8; // +8 to convert from PST to GMT
110 var mi = match[5] + "00"; // add seconds
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java90 int match = sURLMatcher.match(url);
91 switch (match) {
119 int match = sURLMatcher.match(url);
120 switch (match) {
134 int match = sURLMatcher.match(url);
136 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/java/android/util/
H A DDebugUtils.java58 * @param object any object to match against the ANDROID_OBJECT_FILTER
64 boolean match = false;
88 match |= (value != null ?
101 return match;
/frameworks/base/core/java/com/google/android/mms/util/
H A DPduCache.java120 int match = URI_MATCHER.match(uri);
121 switch (match) {
139 purgeByMessageBox(MATCH_TO_MSGBOX_ID_MAP.get(match));
172 int match = URI_MATCHER.match(uri);
175 switch (match) {
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java125 int match = sURLMatcher.match(url);
126 switch (match) {
138 int match = sURLMatcher.match(url);
139 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.
185 * Return the icon resource identifier to use for this match. If the
186 * match defines an icon, that is used; else if the activity defines
189 * @return The icon associated with this match
[all...]
H A DIPackageManager.aidl191 void addPreferredActivity(in IntentFilter filter, int match,
194 void replacePreferredActivity(in IntentFilter filter, int match,
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccProvider.java237 switch (URL_MATCHER.match(url)) {
284 switch (URL_MATCHER.match(url)) {
303 int match = URL_MATCHER.match(url);
304 switch (match) {
329 switch (match) {
370 int match = URL_MATCHER.match(url);
371 switch (match) {
443 int match
[all...]
/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/wifi/java/android/net/wifi/
H A DWifiMonitor.java386 Matcher match = mConnectedEventPattern.matcher(data);
387 if (!match.find()) {
390 BSSID = match.group(1);
392 networkId = Integer.parseInt(match.group(2));
/frameworks/base/core/java/android/content/
H A DIntentFilter.java42 * match against actions, categories, and data (either via its type, scheme,
60 * only match intents that contain no data.
65 * specified must match the contents of the Intent. If you specify a scheme
67 * match; a content: URI will never match because they always have a MIME type
69 * has somewhat special meaning: it will match either an Intent with no URI
71 * then only an Intent with no data or type will match. To specify an authority,
76 * <p>A match is based on the following rules. Note that
77 * for an IntentFilter to match an Intent, three conditions must hold:
78 * the <strong>action</strong> and <strong>category</strong> must match, an
672 public int match(Uri data) { method in class:IntentFilter.AuthorityEntry
1064 public final int match(ContentResolver resolver, Intent intent, method in class:IntentFilter
1099 public final int match(String action, String type, String scheme, method in class:IntentFilter
[all...]
H A DUriMatcher.java72 <p>Then when you need to match match against a URI, call {@link #match}, providing
74 a match. You can use the result to build a query, return a type, insert or
80 int match = sURIMatcher.match(url, NO_MATCH);
81 switch (match)
123 * @param code the code to match for the root URI
142 * Add a URI to match, and the code to return when this URI is
143 * matched. URI nodes may be exact match strin
202 public int match(Uri uri) method in class:UriMatcher
[all...]
H A DSearchRecentSuggestionsProvider.java42 * <i>configures</i> the provider to match the requirements of your searchable activity.</li>
159 * @param authority This must match the authority that you've declared in your manifest.
238 if (mUriMatcher.match(uri) == URI_MATCH_SUGGEST) {
312 if (mUriMatcher.match(uri) == URI_MATCH_SUGGEST) {
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java238 // the filters that match that MIME type.
247 // completely match or wildcards whose base type matches.
253 // We can match anything with our base type.
274 // the filters that match its scheme (we will further refine matches
329 protected R newResult(F filter, int match) { argument
490 int match;
501 match = filter.match(
503 if (match >= 0) {
504 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/libs/rs/
H A DrsElement.cpp90 // Look for an existing match.
114 // Look for an existing match.
118 bool match = true; local
123 match = false;
127 if (match) {
/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.java1338 Matcher match = NAME_ADDR_EMAIL_PATTERN.matcher(address);
1340 if (match.matches()) {
1341 return match.group(2);
1358 Matcher match = Patterns.EMAIL_ADDRESS.matcher(s);
1359 return match.matches();
1373 Matcher match = Patterns.PHONE.matcher(number);
1374 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.java250 final char match = event.getMatch(DIGITS);
251 if (match != 0) {
252 reportDigit(match - '0');

Completed in 420 milliseconds

123