/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
PropertiesSidebarPane.js | 108 if (title.match(/Prototype$/))
|
/external/chromium_org/third_party/icu/source/i18n/ |
csrutf8.cpp | 26 int32_t CharsetRecog_UTF8::match(InputText* det) { function in class:CharsetRecog_UTF8
|
/external/chromium_org/third_party/opus/src/tests/ |
run_vectors.sh | 95 echo ERROR: output does not match reference 124 echo ERROR: output does not match reference
|
/external/chromium_org/third_party/protobuf/python/ |
ez_setup.py | 268 match = re.search("\nmd5_data = {\n([^}]+)}", src) 269 if not match: 273 src = src[:match.start(1)] + repl + src[match.end(1):]
|
/external/chromium_org/third_party/re2/re2/ |
bitstate.cc | 53 bool longest_; // whether search wants leftmost-longest match 54 bool endmatch_; // whether match must end at text.end() 201 // One opcode is byte range; the other leads to match. 203 // out1 is the match 209 // out is the match - non-greedy 259 // VLOG(0) << "Found match."; 260 // We found a match. If the caller doesn't care 261 // where the match is, no point going further. 265 // Record best match so far. 276 // If going for first match, we're done [all...] |
prog.h | 52 kInstAltMatch, // Alt: out_ is [00-FF] and back, out1_ is match; or vice versa. 56 kInstMatch, // found a match! 58 kInstFail, // never match; occasionally unavoidable 113 // Does this inst (an kInstByteRange) match c? 154 // Match ID to identify this match (for re2::Set). 175 kUnanchored, // match anywhere 176 kAnchored, // match only starting at beginning of text 179 // Kind of match to look for (for anchor != kFullMatch) 182 // match but still makes its submatch choices the wa [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
backtrack.cc | 58 // Explores from instruction ip at string position p looking for a match. 67 bool longest_; // whether search wants leftmost-longest match 140 if (Visit(prog_->start(), p)) // Match must be leftmost; done. 146 // Explores from instruction ip at string position p looking for a match. 150 // either it didn't match or it did but we're hoping for a better match. 160 // have to explore in hope of finishing a match. Use impossible byte -1. 207 // We found a match. If it's the best so far, record the 212 if (submatch_[0].data() == NULL || // First match so far ... 213 (longest_ && p > submatch_[0].end())) { // ... or better match [all...] |
/external/chromium_org/tools/find_runtime_symbols/ |
reduce_debugline.py | 39 matched = _FILENAME_PATTERN.match(line)
|
/external/chromium_org/tools/gn/ |
builder_unittest.cc | 45 bool match = (files_[0] == f); local 47 return match; 57 bool match = ( local 61 return match;
|
/external/chromium_org/tools/grit/grit/format/ |
html_inline.py | 79 Takes a regex match for src="filename", attempts to read the file 85 src_match: regex match object with 'filename' and 'quote' named capturing 244 def InlineScript(match): 246 attrs = (match.group('attrs1') + match.group('attrs2')).strip() 249 return InlineFileContents(match, '<script' + attrs + '>%s</script>') 264 src_match: A regular expression match with a named group named "filename". 296 """Helper function that inlines each url on a CSS image rule match."""
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-archs.py | 28 if not re.match(expected, o, re.DOTALL):
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
inspector_console_unittest.py | 33 self.assertTrue(re.match(expected_line, line))
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
posix_platform_backend.py | 47 m = ps_line_re.match(pid_ppid_state)
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
strace_profiler.py | 54 # match up the lines. 61 m = _KILLED_LINE_RE.match(line) 66 m = _UNFINISHED_LINE_RE.match(line) 74 m = _RESUMED_LINE_RE.match(line) 82 # At this point we can do a normal match. 83 m = _STRACE_LINE_RE.match(line)
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-crbug-142087.js | 36 assertArrayEquals(expected_match, string.match(/(_)|(_|)/g, "")); 38 '***************************************'.match(/((\\)|(\*)|(\$))/g, ".");
|
/external/chromium_org/v8/tools/testrunner/local/ |
utils.py | 88 elif (not machine) or (not re.match('(x|i[3-6])86$', machine) is None):
|
/external/chromium_org/webkit/tools/layout_tests/ |
PRESUBMIT.py | 38 is_error = lambda line: (input_api.re.match('^Line:', line) or
|
/external/clang/test/CXX/special/class.dtor/ |
p10-0x.cpp | 9 x->~decltype(*x)(); // expected-error{{the type of object expression ('const int') does not match the type being destroyed ('decltype(*x)' (aka 'const int &')) in pseudo-destructor expression}} \ 13 y->~decltype(*y)(); // expected-error{{destructor type 'decltype(*y)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 14 y->~decltype(T())(); // expected-error{{destructor type 'decltype(T())' in object destruction expression does not match the type 'const A' of the object being destroyed}} 21 x->~decltype(*x)(); // expected-error{{destructor type 'decltype(*x)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 23 x->~decltype(B())(); // expected-error{{destructor type 'decltype(B())' (aka 'B') in object destruction expression does not match the type 'const A' of the object being destroyed}} 24 x->~decltype(x)(); // expected-error{{destructor type 'decltype(x)' (aka 'const A *') in object destruction expression does not match the type 'const A' of the object being destroyed}} 33 expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}} 34 i.~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}} 36 pi.~decltype(int())(); // expected-error{{the type of object expression ('int *') does not match the type being destroyed ('decltype(int())' (aka 'int')) in pseudo-destructor expression}} 38 pi->~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression} [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/ |
searchcvs.php | 45 $match = "'1'"; variable 48 $match = "MATCH(`message`) AGAINST('$q'" . (preg_match("/\".+\"/", $q) ? " IN BOOLEAN MODE" : "") . ")"; variable 50 $where = "WHERE " . ($match ? $match : "1"); 53 $ec = ", $match AS `relevance`";
|
/external/harfbuzz_ng/contrib/python/lib/ |
fontconfig.pyx | 12 FcPattern *FcFontMatch(FcConfig *config, FcPattern *match, FcResult *res) 30 print "Failed to match" + str(res)
|
/external/icu4c/i18n/ |
csrutf8.cpp | 27 UBool CharsetRecog_UTF8::match(InputText* input, CharsetMatch *results) const { function in class:CharsetRecog_UTF8
|
/external/iptables/extensions/ |
libip6t_rt.c | 22 "rt match options:\n" 23 "[!] --rt-type type match the type\n" 24 "[!] --rt-segsleft num[:num] match the Segments Left field (range)\n" 179 static void rt_print(const void *ip, const struct xt_entry_match *match, 182 const struct ip6t_rt *rtinfo = (struct ip6t_rt *)match->data; 204 static void rt_save(const void *ip, const struct xt_entry_match *match) 206 const struct ip6t_rt *rtinfo = (struct ip6t_rt *)match->data;
|
libxt_dccp.c | 36 "dccp match options\n" 37 "[!] --source-port port[:port] match source port(s)\n" 39 "[!] --destination-port port[:port] match destination port(s)\n" 207 dccp_print(const void *ip, const struct xt_entry_match *match, int numeric) 210 (const struct xt_dccp_info *)match->data; 238 static void dccp_save(const void *ip, const struct xt_entry_match *match) 241 (const struct xt_dccp_info *)match->data;
|
libxt_u32.c | 34 "u32 match options:\n" 248 static void u32_print(const void *ip, const struct xt_entry_match *match, 251 const struct xt_u32 *data = (const void *)match->data; 258 static void u32_save(const void *ip, const struct xt_entry_match *match) 260 const struct xt_u32 *data = (const void *)match->data;
|
/external/kernel-headers/original/linux/ |
attribute_container.h | 22 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
|