Searched refs:match (Results 476 - 500 of 1089) sorted by relevance

<<11121314151617181920>>

/external/markdown/markdown/
H A Dblockprocessors.py161 m = self.INDENT_RE.match(block)
246 m = self.RE.match(line)
266 return bool(self.RE.match(block))
306 m = self.CHILD_RE.match(line)
310 elif self.INDENT_RE.match(line):
368 return bool(self.RE.match(block))
401 m = self.MATCH_RE.match(line)
426 return bool(self.RE.match(block))
430 m = self.RE.match(block)
/external/zlib/src/examples/
H A Dgun.c164 unsigned char match[65280 + 2]; /* buffer for reversed match or gzip variable
309 /* special code to reuse last match */
324 match[stack++] = (unsigned char)final;
329 p = match + stack;
334 stack = p - match;
335 match[stack++] = (unsigned char)code;
351 outbuf[outcnt++] = match[--stack];
358 p = match + stack;
361 } while (p > match);
[all...]
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Djs_checker.py27 match = self.input_api.re.search(regex, line)
28 if match:
29 assert len(match.groups()) == 1
30 start = match.start(1)
31 length = match.end(1) - start
/external/clang/docs/tools/
H A Ddump_ast_matchers.py61 nodes a matcher can match on. Those comments have the form:
73 m = re.match(r'^(.*)Matcher<([^>]+)>\s*,?[\s\n]*$', comment, re.S)
130 can match on, as extracted from the static type asserts in the matcher
136 m = re.match(r""".*VariadicDynCastAllOfMatcher\s*<
147 m = re.match(r"""^\s*AST_(POLYMORPHIC_)?MATCHER(_P)?(.?)\(
174 m = re.match(r"""^\s*(.*)\s+
181 m = re.match(r'.*\s+internal::Matcher<([^>]+)>$', result)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp37 if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(PowerOf2), m_Value(A))),
109 if (match(Op1, m_AllOnes())) // X * -1 == 0 - X
133 match(Op0, m_Add(m_Value(X), m_ConstantInt(C1)))) {
150 if (match(Op0, m_Sub(m_Value(Y), m_Value(X))))
152 else if (match(Op0, m_Add(m_Value(Y), m_ConstantInt(C1))))
226 if (match(Op0, m_Shl(m_One(), m_Value(Y))))
228 if (match(Op1, m_Shl(m_One(), m_Value(Y))))
408 if (match(Op0, m_Sub(m_Value(X), m_Value(Z)))) { // (X - Z) / Y; Y = Op1
410 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
411 (!isSigned && match(
[all...]
/external/markdown/markdown/extensions/
H A Dfootnotes.py197 m = DEF_RE.match(line)
219 match = TABBED_RE.match(line)
220 if match:
221 return match.group(4)
/external/v8/src/
H A Dhashmap.h45 TemplateHashMapImpl(MatchFun match, uint32_t initial_capacity = 8);
105 TemplateHashMapImpl<P>::TemplateHashMapImpl(MatchFun match, argument
107 match_ = match;
328 typename TemplateHashMapImpl<AllocationPolicy>::MatchFun match)
329 : TemplateHashMapImpl<AllocationPolicy>(match) { }
327 TemplateHashMap( typename TemplateHashMapImpl<AllocationPolicy>::MatchFun match) argument
/external/v8/tools/
H A Dgen-postmortem-metadata.py209 match = re.match('class (\w[^\s:]*)(: public (\w[^\s{]*))?\s*{',
212 if (match):
213 klass = match.group(1);
214 pklass = match.group(3);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-216320.js61 if(!nid.match(/^\s*$/)){
71 if(text.match(/^\s*$/)){
93 if(date.match(/^\s*$/)) {return true; }
126 if(date.match(/^\s*$/)){
280 if(((ird1==ird2)&&(!ird1.match(/^\s*$/)))||((ird1==ird3)&&(!ird1.match(/^\s*$/)))){
285 else if((ird2==ird3)&&(!ird2.match(/^\s*$/))){
299 if(((ird1==ird2)&&(!ird1.match(/^\s*$/)))||((ird1==ird3)&&(!ird1.match(/^\s*$/)))){
304 else if((ird2==ird3)&&(!ird2.match(/
[all...]
/external/chromium/chrome/browser/history/
H A Din_memory_url_index.cc54 // and the quality of the string match). There is a matching value range for
101 int AccumulateMatchLength(int total, const TermMatch& match) { argument
102 return total + match.length;
365 // substring match, inserting those which pass in order by score.
449 // a final substring match in order to get the highlighting ranges later
705 ScoredHistoryMatch match(row);
708 return match;
715 match.prefix_adjust = strlen(chrome::kHttpScheme) + 3; // Allow for '://'.
716 url = url.substr(match.prefix_adjust);
727 return match; //
[all...]
/external/webkit/Tools/Scripts/
H A Dprepare-ChangeLog380 # We want to match the ChangeLog's line endings in case it doesn't match
595 my $match = $1;
596 if ($match eq "/*") {
601 } elsif ($match eq "//") {
604 if (!s-$match([^\\]|\\.)*?$match--) {
606 s-$match.*--;
877 my $match = $1;
878 if ($match e
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dscm.py96 if re.match("^\s*$", line):
204 match = re.search(status_regexp, line)
205 if not match:
207 # status = match.group('status')
208 filename = match.group('filename')
213 match = re.match("^r(?P<svn_revision>\d+)", unicode(svn_revision))
214 if (match):
215 return match.group('svn_revision')
219 match
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateIssuer.java141 public boolean match(Certificate cert) method in class:AttributeCertificateIssuer
199 public boolean match(Object obj) method in class:AttributeCertificateIssuer
206 return match((Certificate)obj);
/external/chromium/chrome/browser/instant/
H A Dinstant_controller.h83 const AutocompleteMatch& match,
135 // TabContents the match is being shown for.
226 // Returns true if a preview should be shown for |match|. If |match| has
228 bool ShouldShowPreviewFor(const AutocompleteMatch& match,
252 // NULL if there is no TemplateURL for |match|.
253 const TemplateURL* GetTemplateURL(const AutocompleteMatch& match);
/external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
H A Dchrome_ex_oauthsimple.js176 if (action.match('[^A-Z]')) {
226 if (method.toUpperCase().match(/(PLAINTEXT|HMAC-SHA1)/) === undefined) {
287 if (!pName.match(/^oauth/)) {
418 if (paramName.match(/\w+_secret/)) {
/external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
H A Dchrome_ex_oauthsimple.js176 if (action.match('[^A-Z]')) {
226 if (method.toUpperCase().match(/(PLAINTEXT|HMAC-SHA1)/) === undefined) {
287 if (!pName.match(/^oauth/)) {
418 if (paramName.match(/\w+_secret/)) {
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
H A Dchrome_ex_oauthsimple.js176 if (action.match('[^A-Z]')) {
226 if (method.toUpperCase().match(/(PLAINTEXT|HMAC-SHA1)/) === undefined) {
287 if (!pName.match(/^oauth/)) {
418 if (paramName.match(/\w+_secret/)) {
/external/chromium/testing/gtest/scripts/
H A Dfuse_gtest_files.py163 m = INCLUDE_GTEST_FILE_REGEX.match(line)
191 m = INCLUDE_GTEST_FILE_REGEX.match(line)
208 m = INCLUDE_SRC_FILE_REGEX.match(line)
/external/clang/utils/
H A DSummarizeErrors69 m = kStackDumpLineRE.match(ln)
73 m = kStackDumpLineRE.match(ln)
77 if prevLine is None or not kAssertionRE.match(prevLine):
/external/gtest/scripts/
H A Dfuse_gtest_files.py163 m = INCLUDE_GTEST_FILE_REGEX.match(line)
191 m = INCLUDE_GTEST_FILE_REGEX.match(line)
208 m = INCLUDE_SRC_FILE_REGEX.match(line)
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java118 * definition}. If you only care to match ASCII digits, you can use {@code inRange('0', '9')}.
128 * definition}. If you only care to match letters of the Latin alphabet, you can use {@code
379 public static CharMatcher is(final char match) { argument
382 return c == match;
386 return sequence.toString().replace(match, replacement);
390 return other.matches(match) ? this : NONE;
394 return other.matches(match) ? other : super.or(other);
398 return isNot(match);
402 table.set(match);
416 public static CharMatcher isNot(final char match) { argument
[all...]
/external/icu4c/i18n/
H A Dcsr2022.cpp30 * @return match quality, in the range of 0-100.
144 int32_t CharsetRecog_2022JP::match(InputText *textIn) function in class:CharsetRecog_2022JP
154 int32_t CharsetRecog_2022KR::match(InputText *textIn) function in class:CharsetRecog_2022KR
164 int32_t CharsetRecog_2022CN::match(InputText *textIn) function in class:CharsetRecog_2022CN
/external/openfst/src/lib/
H A Dfst.cc112 bool match = true; local
117 match = false;
120 return match;
/external/protobuf/gtest/scripts/
H A Dfuse_gtest_files.py163 m = INCLUDE_GTEST_FILE_REGEX.match(line)
191 m = INCLUDE_GTEST_FILE_REGEX.match(line)
208 m = INCLUDE_SRC_FILE_REGEX.match(line)
/external/skia/tests/
H A DMetaDataTest.cpp88 int match = 0; local
93 match += 1;
98 REPORTER_ASSERT(reporter, match == 1);

Completed in 607 milliseconds

<<11121314151617181920>>