Searched refs:match (Results 251 - 275 of 2033) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/ui/omnibox/
H A Domnibox_current_page_delegate_impl.h31 const AutocompleteMatch& match,
36 virtual void DoPrerender(const AutocompleteMatch& match) OVERRIDE;
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/network/chrome-firephp/
H A Ddevtools.js127 var match = value.match(header_regexp);
128 if (!match) {
132 var json_part = match[1];
153 var match = /http:\/\/meta\.wildfirehq\.org\/Protocol\/([^\/]+)\/(.+)/.exec(
155 if (!match) {
159 var proto_name = match[1];
160 var proto_version = match[2];
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPRESUBMIT.py28 bucketMatch = bucketFinder.match(line)
33 maximumMatch = maximumFinder.match(line)
44 'Largest found CSSProperty bucket Id (%d) does not match '
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DParsedURL.js52 var match = url.match(/^([A-Za-z][A-Za-z0-9+.-]*):\/\/([^\/:]*)(?::([\d]+))?(?:(\/[^#]*)(?:#(.*))?)?$/i);
53 if (match) {
55 this.scheme = match[1].toLowerCase();
56 this.host = match[2];
57 this.port = match[3];
58 this.path = match[4] || "/";
59 this.fragment = match[5];
/external/chromium_org/tools/gyp/test/variables/filelist/
H A Dgyptest-filelist-golden.py38 if not test.match(contents, expect):
45 if not test.match(contents, expect):
/external/chromium_org/tools/mac/
H A Ddump-static-initializers.py49 match = dsymutil_re.search(line)
50 if match:
/external/chromium_org/tools/usb_gadget/
H A Dserver.py49 match = VERSION_PATTERN.match(path)
50 if match:
51 version = match.group(1)
62 match = VERSION_PATTERN.match(fileinfo['filename'])
63 if match is None:
70 if md5sum != match.group(1):
71 self.write('File hash does not match.')
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-capture.js33 assertEquals(["y", undefined], "y".match(/(x)?\1y/));
34 assertEquals(["y", undefined], "y".match(/(x)?y/));
35 assertEquals(["y"], "y".match(/(x)?\1y/g));
60 "".match(/((a|i|A|I|u|o|U|O)(s|c|b|c|d|f|g|h|j|k|l|m|n|p|q|r|s|t|v|w|x|y|z|B|C|D|F|G|H|J|K|L|M|N|P|Q|R|S|T|V|W|X|Y|Z)*) de\/da([.,!?\s]|$)/);
/external/clang/unittests/AST/
H A DASTTypeTraitsTest.cpp80 EXPECT_TRUE(Verifier.match("void f() {}", decl()));
86 EXPECT_TRUE(Verifier.match("void f() {}", stmt()));
92 EXPECT_TRUE(Verifier.match("void f() {}", typeLoc(loc(functionType()))));
98 EXPECT_TRUE(Verifier.match("namespace N { typedef void T; } N::T f() {}",
105 EXPECT_TRUE(Verifier.match("void f() {}", functionDecl()));
111 EXPECT_TRUE(Verifier.match("void f() {}", stmt()));
117 EXPECT_TRUE(Verifier.match("void f() {}", functionDecl()));
123 EXPECT_TRUE(Verifier.match("void f() {}", stmt()));
/external/iptables/extensions/
H A Dlibxt_owner.c15 /* match and invert flags */
35 uint8_t match, invert; /* flags */ member in struct:ipt_owner_info
44 uint8_t match, invert; /* flags */ member in struct:ip6t_owner_info
64 "owner match options:\n"
76 "owner match options:\n"
87 "owner match options:\n"
153 info->match |= IPT_OWNER_UID;
163 info->match |= IPT_OWNER_GID;
169 info->match |= IPT_OWNER_PID;
174 info->match |
429 owner_mt_print_v0(const void *ip, const struct xt_entry_match *match, int numeric) argument
442 owner_mt6_print_v0(const void *ip, const struct xt_entry_match *match, int numeric) argument
453 owner_mt_print(const void *ip, const struct xt_entry_match *match, int numeric) argument
464 owner_mt_save_v0(const void *ip, const struct xt_entry_match *match) argument
476 owner_mt6_save_v0(const void *ip, const struct xt_entry_match *match) argument
486 owner_mt_save(const void *ip, const struct xt_entry_match *match) argument
[all...]
H A Dlibxt_tos.c2 * Shared library add-on to iptables to add tos match support
44 "tos match options:\n"
81 static void tos_mt_print_v0(const void *ip, const struct xt_entry_match *match, argument
84 const struct ipt_tos_info *info = (const void *)match->data;
86 printf(" tos match ");
93 static void tos_mt_print(const void *ip, const struct xt_entry_match *match, argument
96 const struct xt_tos_match_info *info = (const void *)match->data;
98 printf(" tos match");
106 static void tos_mt_save_v0(const void *ip, const struct xt_entry_match *match) argument
108 const struct ipt_tos_info *info = (const void *)match
115 tos_mt_save(const void *ip, const struct xt_entry_match *match) argument
[all...]
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
H A DDecoder.java197 int match = 0;
208 if (((char) i) == deli.charAt(match)) {
209 match++;
210 if (match == deli.length())
214 if (match > 0) {
215 for (int j = 0; j < match; j++)
218 match = ((char) i == deli.charAt(0)) ? 1 : 0;
220 if (match == 0)
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
H A Dsctop-report7 if expr match "$i" "-" > /dev/null ; then
/external/lldb/scripts/Python/
H A Dmodify-python-lldb.py345 match = class_pattern.search(line)
348 if not lldb_iter_defined and match:
356 if match:
357 cls = match.group(1)
366 match = init_pattern.search(line)
367 if match:
409 doxygen_comment_match = doxygen_comment_start.match(line)
420 if one_liner_docstring_pattern.match(line):
/external/lldb/test/pexpect-2.4/examples/
H A Dmonitor.py135 duration, users, av1, av5, av15 = child.match.groups()
140 child.match = re.search('([0-9]+)\s+day',duration)
141 days = str(int(child.match.group(1)))
143 child.match = re.search('([0-9]+):([0-9]+)',duration)
144 hours = str(int(child.match.group(1)))
145 mins = str(int(child.match.group(2)))
147 child.match = re.search('([0-9]+)\s+min',duration)
148 mins = str(int(child.match.group(1)))
/external/llvm/test/MC/Mips/
H A Delf_eflags_abicalls.s3 # This *MUST* match the output of gas compiled with the same triple.
H A Delf_eflags_noreorder.s3 # This *MUST* match the output of gas compiled with the same triple.
H A Delf_eflags_pic0.s3 # This *MUST* match the output of gas compiled with the same triple.
H A Delf_eflags_pic2.s3 # This *MUST* match the output of gas compiled with the same triple.
/external/markdown/markdown/extensions/
H A Dmeta.py69 m1 = META_RE.match(line)
74 m2 = META_MORE_RE.match(line)
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DChallengeParser.java89 lexer.match(TokenTypes.ID);
102 this.lexer.match(',');
H A DContentDispositionParser.java77 this.lexer.match(TokenTypes.ID);
85 this.lexer.match('\n');
H A DEventParser.java75 this.lexer.match(TokenTypes.ID);
83 this.lexer.match('\n');
H A DMimeVersionParser.java78 this.lexer.match('.');
87 this.lexer.match('\n');
H A DReasonParser.java75 this.lexer.match(TokenTypes.ID);
83 this.lexer.match(',');

Completed in 2633 milliseconds

<<11121314151617181920>>