HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 401 - 425 of 2257) sorted by null

<<11121314151617181920>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 9 match Stream.peek stream with
19 try match token with
  /external/mesa3d/src/glsl/
ir_function.cpp 30 PARAMETER_LIST_INEXACT_MATCH /*< Match requires implicit conversion. */
34 * \brief Check if two parameter lists match.
46 /* This is set to true if there is an inexact match requiring an implicit
55 * do not match.
106 * match.
129 ir_function_signature *match = NULL; local
134 * "If an exact match is found, the other signatures are ignored, and
135 * the exact match is used. Otherwise, if no exact match is found, then
137 * be applied to the calling arguments if this can make their types match
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ToParser.java 60 this.lexer.match('\n');
  /external/oprofile/libpp/
filename_spec.h 24 * These derived values are then used to match against a
54 * @param rhs right hand side of the match operator
59 * return true if *this match rhs, matching if:
62 * - event_spec match
66 bool match(filename_spec const & rhs,
  /external/oprofile/libutil/
op_file.c 126 * filter match, so for simplicity, we perform this match for all recursion
127 * types and logically OR the match result with the value of the passed
131 #define MATCH 1
136 int match; local
145 match = 1;
147 match = 0;
149 switch (recursion | match) {
154 case NO_RECURSION + MATCH:
157 case MATCH_ANY_ENTRY_RECURSION + MATCH
    [all...]
  /external/oprofile/libutil++/
glob_filter.cpp 27 bool glob_filter::match(string const & str) const function in class:glob_filter
glob_filter.h 43 virtual bool match(std::string const & str) const;
string_filter.cpp 37 bool string_filter::match(string const & str) const function in class:string_filter
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 124 match( "group" )
148 match( "::" )
172 match( 0x3b )
196 match( "::=" )
220 match( 0x28 )
244 match( 0x29 )
268 match( 0x2c )
292 match( 0x2a )
316 match( 0x26 )
340 match( 0x3d
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigInterface_direct.cpp 153 // Equivalence classes, used to match the Liberation and other fonts
178 // Match the font name against a whilelist of fonts, returning the equivalence
183 // replacement is a "strong" match (that is, an equivalent font) or
184 // a "weak" match (that is, fontconfig's next-best attempt at finding a
357 FcPattern* match = NULL; local
361 match = current;
366 if (match && !IsFallbackFontAllowed(family)) {
369 const char* post_match_family = get_name(match, FC_FAMILY, id);
378 // -> We should treat this case as a good match.
388 return match;
511 FcPattern* match = MatchFont(font_set, post_config_family, familyStr); local
595 FcPattern* match = fs->fonts[i]; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
cpplint.py 390 # match those on a word boundary.
428 # Match start of assembly blocks
504 def Match(pattern, s):
506 # The regexp compilation caching is inlined in both Match and Search for
511 return _regexp_compile_cache[pattern].match(s)
517 The compiled regex is kept in a cache shared by Match and Search.
618 not Match(r'^\s*$', clean_lines.elided[linenum - 1])):
833 if Match(r'T(EST|est)', self.current_function):
    [all...]
  /external/libvpx/libvpx/tools/
cpplint.py 390 # match those on a word boundary.
428 # Match start of assembly blocks
504 def Match(pattern, s):
506 # The regexp compilation caching is inlined in both Match and Search for
511 return _regexp_compile_cache[pattern].match(s)
517 The compiled regex is kept in a cache shared by Match and Search.
618 not Match(r'^\s*$', clean_lines.elided[linenum - 1])):
833 if Match(r'T(EST|est)', self.current_function):
    [all...]
  /external/chromium_org/v8/test/mjsunit/
string-match.js 29 * @fileoverview Test String.prototype.match
34 var matchResult = input.match(regexp);
35 assertEquals(result, matchResult, name + "-match");
37 var match = input.substring(from, to);
45 assertEquals(match, lastMatch, name + "-match-string_g");
47 // Returns array of match and captures.
48 assertEquals(match, matchResult[0], name + "-match-string");
55 assertEquals(match, RegExp["$&"], name + "-$&")
    [all...]
  /external/chromium_org/third_party/android_platform/development/scripts/
symbol.py 158 package_name: package name to match.
170 match = package_name_re.match(line)
171 if match:
172 return package_name == match.group(1)
238 match = re.match('lib/[^/]*/crazy.(lib.*[.]so)', filename)
239 if match:
240 return match.group(1)
243 """Find any APKs which match the package indicated by the device_apk_name
    [all...]
  /external/chromium_org/tools/mac/
symbolicate_crash.py 87 # This returns a list of just symbols. The indices will match up with the
107 while not thread_re.match(line):
140 while line_re.match(line) or in_stack:
142 matches = line_re.match(line)
167 matches = re.match(regex, line)
195 while user_thread_re.match(line) or in_user_stack or in_kernel_stack:
197 matches = user_thread_re.match(line)
237 matches = re.match(regex_a, line)
247 # If pattern A didn't match (which it will most of the time), try B.
248 matches = re.match(regex_b, line
    [all...]
  /external/clang/docs/tools/
dump_ast_matchers.py 61 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""".*Variadic(?:DynCast)?AllOfMatcher\s*<
149 m = re.match(""".*AST_TYPE_MATCHER\(
163 m = re.match(""".*AST_TYPE(LOC)?_TRAVERSE_MATCHER\(
183 m = re.match(r"""^\s*AST_POLYMORPHIC_MATCHER(_P)?(.?)(?:_OVERLOAD)?\(
207 m = re.match(r"""^\s*AST_MATCHER_FUNCTION(_P)?(.?)(?:_OVERLOAD)?\(
226 m = re.match(r"""^\s*AST_MATCHER(_P)?(.?)(?:_OVERLOAD)?\(
253 m = re.match(
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
csdetest.cpp 330 const UCharsetMatch *match; local
334 match = ucsdet_detect(csd, &status);
336 if (match == NULL) {
341 ucsdet_getUChars(match, detected, sLength, &status);
370 const UCharsetMatch *match; local
375 match = ucsdet_detect(csd, &status);
377 if (match == NULL) {
382 name = ucsdet_getName(match, &status);
383 conf = ucsdet_getConfidence(match, &status);
396 match = ucsdet_detect(csd, &status)
430 const UCharsetMatch *match; local
498 const UCharsetMatch *match; local
646 const UCharsetMatch *match; local
734 const UCharsetMatch *match; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
csdetest.cpp 330 const UCharsetMatch *match; local
334 match = ucsdet_detect(csd, &status);
336 if (match == NULL) {
341 ucsdet_getUChars(match, detected, sLength, &status);
370 const UCharsetMatch *match; local
375 match = ucsdet_detect(csd, &status);
377 if (match == NULL) {
382 name = ucsdet_getName(match, &status);
383 conf = ucsdet_getConfidence(match, &status);
396 match = ucsdet_detect(csd, &status)
430 const UCharsetMatch *match; local
498 const UCharsetMatch *match; local
646 const UCharsetMatch *match; local
734 const UCharsetMatch *match; local
    [all...]
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatcherTest.java 252 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null; local
253 assertMatchProperties(match, text, number1, RegionCode.US);
255 match = iterator.hasNext() ? iterator.next() : null;
256 assertMatchProperties(match, text, number2, RegionCode.US);
258 match = iterator.hasNext() ? iterator.next() : null;
259 assertMatchProperties(match, text, number3, RegionCode.US);
261 match = iterator.hasNext() ? iterator.next() : null;
262 assertMatchProperties(match, text, number4, RegionCode.US);
272 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null; local
273 assertMatchProperties(match, text, number1, RegionCode.US)
285 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null; local
607 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null; local
628 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null; local
933 PhoneNumberMatch match = matches.next(); local
1021 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null; local
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 337 // if the operands match too. If so, return the simplified value.
417 if (match(FCmp, m_Zero()))
422 if (match(TCmp, m_One()))
427 if (match(FCmp, m_One()) && match(TCmp, m_Zero()))
534 if (match(Op1, m_Undef()))
538 if (match(Op1, m_Zero()))
545 if (match(Op1, m_Sub(m_Value(Y), m_Specific(Op0))) ||
546 match(Op0, m_Sub(m_Value(Y), m_Specific(Op1))))
550 if (match(Op0, m_Not(m_Specific(Op1))) |
    [all...]
  /device/asus/fugu/recovery/
Android.mk 20 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /device/asus/tilapia/recovery/
Android.mk 28 # should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 179 m=ua.match(/AppleWebKit\/([^\s]*)/);
187 m=ua.match(/NokiaN[^\/]*/);
193 m=ua.match(/AdobeAIR\/([^\s]*)/);
202 m=ua.match(/Opera[\s\/]([^\s]*)/);
205 m=ua.match(/Opera Mini[^;]*/);
210 m=ua.match(/MSIE\s([^;]*)/);
214 m=ua.match(/Gecko\/([^\s]*)/);
217 m=ua.match(/rv:([^\s\)]*)/);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertStoreSpiTest.java 89 public boolean match(CRL crl) { method in class:CertStoreSpiTest.tmpCRLSelector
99 public boolean match(Certificate crl) { method in class:CertStoreSpiTest.tmpCertSelector
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerId.java 50 * @param subjectKeyId the subject key identifier to use to match the signers associated certificate.
90 public boolean match(Object obj) method in class:SignerId
97 return baseSelector.match(obj);

Completed in 1092 milliseconds

<<11121314151617181920>>