HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 51 - 75 of 1303) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/autocomplete/
builtin_provider.cc 37 AutocompleteMatch match(this, kRelevance, false,
39 match.fill_into_edit = *i;
40 match.destination_url = GURL(*i);
41 match.contents = match.fill_into_edit;
42 match.contents_class.push_back(ACMatchClassification(0,
43 ACMatchClassification::MATCH | ACMatchClassification::URL));
44 if (match.contents.length() > input.text().length()) {
45 match.contents_class.push_back(
49 matches_.push_back(match);
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
RegExp_lastParen.js 41 // 'abcd'.match(/(abc)d/); RegExp.lastParen
42 'abcd'.match(/(abc)d/);
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp.lastParen",
46 // 'abcd'.match(new RegExp('(abc)d')); RegExp.lastParen
47 'abcd'.match(new RegExp('(abc)d'));
48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('(abc)d')); RegExp.lastParen",
51 // 'abcd'.match(/(bcd)e/); RegExp.lastParen
52 'abcd'.match(/(bcd)e/);
53 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(bcd)e/); RegExp.lastParen",
56 // 'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp.lastPare
    [all...]
alphanumeric.js 46 "'" + alphanumeric + "'.match(new RegExp('\\w+'))",
47 String([alphanumeric]), String(alphanumeric.match(new RegExp('\\w+'))));
51 "'" + non_alphanumeric + "'.match(new RegExp('\\W+'))",
52 String([non_alphanumeric]), String(non_alphanumeric.match(new RegExp('\\W+'))));
56 "'" + non_alphanumeric + "'.match(new RegExp('\\w'))",
57 null, non_alphanumeric.match(new RegExp('\\w')));
61 "'" + alphanumeric + "'.match(new RegExp('\\W'))",
62 null, alphanumeric.match(new RegExp('\\W')));
68 "'" + s + "'.match(new RegExp('\\w+'))",
69 String([alphanumeric]), String(s.match(new RegExp('\\w+'))))
    [all...]
whitespace.js 46 "'" + whitespace + "'.match(new RegExp('\\s+'))",
47 String([whitespace]), String(whitespace.match(new RegExp('\\s+'))));
51 "'" + non_whitespace + "'.match(new RegExp('\\S+'))",
52 String([non_whitespace]), String(non_whitespace.match(new RegExp('\\S+'))));
56 "'" + non_whitespace + "'.match(new RegExp('\\s'))",
57 null, non_whitespace.match(new RegExp('\\s')));
61 "'" + whitespace + "'.match(new RegExp('\\S'))",
62 null, whitespace.match(new RegExp('\\S')));
68 "'" + s + "'.match(new RegExp('\\s+'))",
69 String([whitespace]), String(s.match(new RegExp('\\s+'))))
    [all...]
hexadecimal.js 47 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
48 String(["ABCDEFGHIJKLMNOPQRSTUVWXYZ"]), String(testString.match(new RegExp(testPattern))));
55 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
56 String(["abcdefghijklmnopqrstuvwxyz"]), String(testString.match(new RegExp(testPattern))));
63 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
64 String([" !\"#$%&'()*+,-./0123"]), String(testString.match(new RegExp(testPattern))));
71 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
72 String(["456789:;<=>?@"]), String(testString.match(new RegExp(testPattern))));
79 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
80 String(["{|}~"]), String(testString.match(new RegExp(testPattern))))
    [all...]
octal.js 47 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
48 String(["ABCDEFGHIJKLMNOPQRSTUVWXYZ"]), String(testString.match(new RegExp(testPattern))));
55 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
56 String(["abcdefghijklmnopqrstuvwxyz"]), String(testString.match(new RegExp(testPattern))));
63 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
64 String([" !\"#$%&'()*+,-./0123"]), String(testString.match(new RegExp(testPattern))));
71 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
72 String(["456789:;<=>?@"]), String(testString.match(new RegExp(testPattern))));
79 "'" + testString + "'.match(new RegExp('" + testPattern + "'))",
80 String(["{|}~"]), String(testString.match(new RegExp(testPattern))))
    [all...]
  /external/icu4c/i18n/
csr2022.h 47 * @return match quality, in the range of 0-100.
60 int32_t match(InputText *textIn);
69 int32_t match(InputText *textIn);
80 int32_t match(InputText *textIn);
csrucode.h 37 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
39 int32_t match(InputText* textIn) = 0;
51 int32_t match(InputText* textIn);
62 int32_t match(InputText* textIn);
75 int32_t match(InputText* textIn);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
FromParser.java 55 this.lexer.match(TokenTypes.FROM);
57 this.lexer.match(':');
60 this.lexer.match('\n');
ContentTypeParser.java 66 lexer.match(TokenTypes.ID);
72 lexer.match('/');
73 lexer.match(TokenTypes.ID);
78 this.lexer.match('\n');
SubscriptionStateParser.java 77 lexer.match(TokenTypes.ID);
82 this.lexer.match(';');
84 lexer.match(TokenTypes.ID);
88 this.lexer.match('=');
90 lexer.match(TokenTypes.ID);
95 this.lexer.match('=');
97 lexer.match(TokenTypes.ID);
109 this.lexer.match('=');
111 lexer.match(TokenTypes.ID);
123 this.lexer.match('=')
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/
debflex.awk 42 if (match ($0, /^%%/)) {
53 if (section == 2 && match ($0, /^[^ \t]/)) {
87 if (0 == match(field[i], /\"\n+\"[)]/)) {
109 if (match(field[i], /accepting rule at line /)) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-67773.js 48 actualmatch = string.match(pattern);
54 actualmatch = string.match(pattern);
60 actualmatch = string.match(pattern);
68 actualmatch = string.match(pattern);
74 actualmatch = string.match(pattern);
80 actualmatch = string.match(pattern);
86 actualmatch = string.match(pattern);
87 expectedmatch = null; // because string doesn't match at end
94 actualmatch = string.match(pattern);
102 actualmatch = string.match(pattern)
    [all...]
  /external/iptables/extensions/
libxt_comment.c 1 /* Shared library add-on to iptables to add comment match support.
5 * Initial comment match
20 "comment match options:\n"
32 comment_print(const void *ip, const struct xt_entry_match *match, int numeric)
34 struct xt_comment_info *commentinfo = (void *)match->data;
42 comment_save(const void *ip, const struct xt_entry_match *match)
44 struct xt_comment_info *commentinfo = (void *)match->data;
  /external/iptables/include/linux/netfilter/
xt_owner.h 15 __u8 match, invert; member in struct:xt_owner_match_info
  /external/lohit-fonts/lohit-bengali-ttf/
66-lohit-bengali.conf 4 <match>
14 </match>
  /external/lohit-fonts/lohit-tamil-ttf/
66-lohit-tamil.conf 4 <match>
14 </match>
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SearchSymbol.h 29 bool match; member in class:sh::SearchSymbol
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcher.java 26 public T match(Uri uri); method in interface:TypedUriMatcher
  /external/llvm/unittests/Support/
RegexTest.cpp 23 EXPECT_TRUE(r1.match("916"));
24 EXPECT_TRUE(r1.match("9"));
25 EXPECT_FALSE(r1.match("9a"));
29 EXPECT_TRUE(r2.match("aa216b", &Matches));
34 EXPECT_TRUE(r3.match("9a:513b", &Matches));
40 EXPECT_TRUE(r3.match("9:513b", &Matches));
49 EXPECT_FALSE(r4.match("abb"));
50 EXPECT_TRUE(r4.match(String, &Matches));
59 EXPECT_FALSE(r5.match(String));
60 EXPECT_FALSE(r5.match("X9"))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
match-002.js 2 * File Name: String/match-002.js
11 * String.match( regexp )
20 * RegExp.prototype.exec repeatedly until there is no match. If there is a
21 * match with an empty string (in other words, if the value of
27 * Note that the match function is intentionally generic; it does not
36 var SECTION = "String/match-002.js";
38 var TITLE = "String.prototype.match( regexp )";
105 string + ".match(" + regexp +")",
107 string.match(regexp) );
113 "( " + string + " ).match(" + str_regexp +").length"
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Config.cpp 304 bool match = true;
311 case EGL_BUFFER_SIZE: match = config->mBufferSize >= attribute[1]; break;
312 case EGL_ALPHA_SIZE: match = config->mAlphaSize >= attribute[1]; break;
313 case EGL_BLUE_SIZE: match = config->mBlueSize >= attribute[1]; break;
314 case EGL_GREEN_SIZE: match = config->mGreenSize >= attribute[1]; break;
315 case EGL_RED_SIZE: match = config->mRedSize >= attribute[1]; break;
316 case EGL_DEPTH_SIZE: match = config->mDepthSize >= attribute[1]; break;
317 case EGL_STENCIL_SIZE: match = config->mStencilSize >= attribute[1]; break;
318 case EGL_CONFIG_CAVEAT: match = config->mConfigCaveat == attribute[1]; break;
319 case EGL_CONFIG_ID: match = config->mConfigID == attribute[1]; break
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebRegularExpression.cpp 57 int WebRegularExpression::match(const WebString& str, function in class:WebKit::WebRegularExpression
64 return m_private->match(str, startFrom, matchLength);
  /ndk/build/awk/
check-awk.awk 17 # implements the match() and substr() functions appropriately.
26 if (! match(s1,"world")) {
27 print "Fail match"
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
runptests.c 62 regmatch_t match[20]; local
92 err = regexec (&re, tests[cnt].str, 20, match, 0);
97 puts ("no match, OK");
100 puts ("no match, FAIL");
106 if (match[0].rm_so == 0 && tests[cnt].start == 0
107 && match[0].rm_eo == 0 && tests[cnt].end == 0)
108 puts ("match, OK");
109 else if (match[0].rm_so + 1 == tests[cnt].start
110 && match[0].rm_eo == tests[cnt].end)
111 puts ("match, OK")
    [all...]

Completed in 1305 milliseconds

1 23 4 5 6 7 8 91011>>