HomeSort by relevance Sort by last modified time
    Searched refs:matcher (Results 201 - 225 of 552) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/uimodel/
UiColorValueNode.java 59 if (RGBA_REGEXP.matcher(color).matches()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AMReceiver.java 23 import java.util.regex.Matcher;
79 Matcher m = sAmErrorType.matcher(s);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceVersionDetector.java 30 import java.util.regex.Matcher;
92 Matcher m = p.matcher(category);
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 27 import java.util.regex.Matcher;
86 Matcher m = pat.matcher(cookie);
96 m = pat.matcher(cookie);
107 m = pat.matcher(cookie);
  /external/chromium_org/third_party/icu/source/common/
util.cpp 399 * Given a matcher reference, which may be null, append its
403 const UnicodeMatcher* matcher,
406 if (matcher != NULL) {
408 appendToRule(rule, matcher->toPattern(pat, escapeUnprintable),
  /external/chromium_org/third_party/icu/source/i18n/
strmatch.cpp 201 const UnicodeMatcher* matcher = data->lookupMatcher(ch); local
202 if (matcher == NULL) {
205 matcher->addMatchSetTo(toUnionTo);
rbt_rule.cpp 535 const UnicodeMatcher* matcher = data->lookupMatcher(ch); local
536 if (matcher == NULL) {
539 matcher->addMatchSetTo(toUnionTo);
  /external/icu4c/common/
util.cpp 395 * Given a matcher reference, which may be null, append its
399 const UnicodeMatcher* matcher,
402 if (matcher != NULL) {
404 appendToRule(rule, matcher->toPattern(pat, escapeUnprintable),
  /external/icu4c/i18n/
strmatch.cpp 206 const UnicodeMatcher* matcher = data->lookupMatcher(ch); local
207 if (matcher == NULL) {
210 matcher->addMatchSetTo(toUnionTo);
rbt_rule.cpp 536 const UnicodeMatcher* matcher = data->lookupMatcher(ch); local
537 if (matcher == NULL) {
540 matcher->addMatchSetTo(toUnionTo);
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pDevice.java 24 import java.util.regex.Matcher;
173 Matcher match;
185 match = twoTokenPattern.matcher(string);
192 match = threeTokenPattern.matcher(string);
199 match = detailedDevicePattern.matcher(string);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 301 if (DIMENSION_PATTERN.matcher(value).matches()) {
314 if (FLOAT_PATTERN.matcher(value).matches()) {
329 if (INTEGER_PATTERN.matcher(value).matches()) {
  /external/openfst/src/include/fst/
matcher-fst.h 0 // matcher-fst.h
19 // Class to add a matcher to an FST.
26 #include <fst/lookahead-matcher.h>
32 // matcher.h) and these additional methods:
35 // class Matcher {
40 // // data; matcher increments its reference count on construction and
42 // Matcher(const F &fst, MatchType type, MatcherData *data);
45 // // passed to a Matcher constructor.
49 // The matcher initialization data class must have the form:
74 // Class to add a matcher M to an Fst F. Creates a new Fst of type name N
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
compose.h 37 // This class is a matcher that treats parens as multi-epsilon labels.
66 ParenMatcher(const ParenMatcher<F> &matcher, bool safe = false)
67 : matcher_(matcher.matcher_, safe),
68 match_type_(matcher.match_type_),
69 flags_(matcher.flags_),
70 open_parens_(matcher.open_parens_),
71 close_parens_(matcher.close_parens_),
72 loop_(matcher.loop_) {
154 // Advances matcher to next open paren if it exists, returning true.
158 // Advances matcher to next open paren if it exists, returning true
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 204 final UriMatcher matcher = URI_MATCHER; typedefs
206 matcher.addURI(authority, "accounts", ACCOUNTS);
207 matcher.addURI(authority, "bookmarks", BOOKMARKS);
208 matcher.addURI(authority, "bookmarks/#", BOOKMARKS_ID);
209 matcher.addURI(authority, "bookmarks/folder", BOOKMARKS_FOLDER);
210 matcher.addURI(authority, "bookmarks/folder/#", BOOKMARKS_FOLDER_ID);
211 matcher.addURI(authority, "bookmarks/folder/id", BOOKMARKS_DEFAULT_FOLDER_ID);
212 matcher.addURI(authority,
215 matcher.addURI(authority,
218 matcher.addURI(authority, "history", HISTORY)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 235 packageName = p.matcher(packageName).replaceAll("");
236 version = p.matcher(version).replaceAll("");
237 codeName = p.matcher(codeName).replaceAll("");
238 model = p.matcher(model).replaceAll("");
239 id = p.matcher(id).replaceAll("");
240 vendor = p.matcher(vendor).replaceAll("");
241 networkOperator = p.matcher(networkOperator).replaceAll("");
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 1118 final UriMatcher matcher = sUriMatcher; typedefs
    [all...]
  /external/chromium_org/v8/src/extensions/i18n/
i18n-utils.js 105 // Provide defaults if matcher was not specified.
112 var matcher = options.localeMatcher;
113 if (matcher !== undefined) {
114 matcher = String(matcher);
115 if (matcher !== 'lookup' && matcher !== 'best fit') {
116 throw new RangeError('Illegal value for localeMatcher:' + matcher);
119 matcher = 'best fit';
130 if (matcher === 'best fit')
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 194 * Determines whether a character is single-width (not double-width). When in doubt, this matcher
377 * Returns a {@code char} matcher that matches only one specified character.
412 * Returns a {@code char} matcher that matches any character except the one specified.
437 * Returns a {@code char} matcher that matches any character present in the given character
482 * Returns a {@code char} matcher that matches any character not present in the given character
490 * Returns a {@code char} matcher that matches any character in a given range (both endpoints are
520 * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
554 * Returns a matcher that matches any character not matched by this matcher.
582 * Returns a matcher that matches any character matched by both this matcher and {@code other}
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
CharMatcher.java 207 * in doubt, this matcher errs on the side of returning {@code false} (that
233 * create a matcher for the specific characters you want. Not deprecated yet because it is a
377 * Returns a {@code char} matcher that matches only one specified character.
408 * Returns a {@code char} matcher that matches any character except the one
432 * Returns a {@code char} matcher that matches any character present in the
474 * Returns a {@code char} matcher that matches any character not present in
482 * Returns a {@code char} matcher that matches any character in a given range
511 * Returns a matcher with identical behavior to the given {@link
539 * Returns a matcher that matches any character not matched by this matcher
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 207 * in doubt, this matcher errs on the side of returning {@code false} (that
233 * create a matcher for the specific characters you want. Not deprecated yet because it is a
377 * Returns a {@code char} matcher that matches only one specified character.
408 * Returns a {@code char} matcher that matches any character except the one
432 * Returns a {@code char} matcher that matches any character present in the
474 * Returns a {@code char} matcher that matches any character not present in
482 * Returns a {@code char} matcher that matches any character in a given range
511 * Returns a matcher with identical behavior to the given {@link
539 * Returns a matcher that matches any character not matched by this matcher
    [all...]
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksProvider.java 75 // URI matcher
100 final UriMatcher matcher = URI_MATCHER; typedefs
102 matcher.addURI(authority, "bookmarks", URI_MATCH_BOOKMARKS);
103 matcher.addURI(authority, "bookmarks/#", URI_MATCH_BOOKMARKS_ID);
104 matcher.addURI(authority, "bookmarks/folder", URI_MATCH_BOOKMARKS_FOLDER);
105 matcher.addURI(authority, "bookmarks/folder/#", URI_MATCH_BOOKMARKS_FOLDER_ID);
106 matcher.addURI(authority, "bookmarks/folder/id",
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 53 import java.util.regex.Matcher;
454 Matcher matcher = pattern.matcher(desc);
455 assertTrue(matcher.matches());
456 String fqn = matcher.group(1);
458 String boundsString = matcher.group(2);
470 String tag = matcher.group(3);
  /external/chromium_org/chrome/browser/policy/
browser_policy_connector.cc 380 icu::RegexMatcher matcher(icu_pattern, UREGEX_CASE_INSENSITIVE, status);
383 matcher.reset(icu_input);
385 UBool match = matcher.matches(status);
  /packages/apps/Browser/src/com/android/browser/homepages/
Template.java 25 import java.util.regex.Matcher;
187 Matcher m = pattern.matcher(template);
200 Matcher end_m = p.matcher(template);
240 Matcher m = pattern.matcher(template);

Completed in 714 milliseconds

1 2 3 4 5 6 7 891011>>