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

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
InReplyToParser.java 78 this.lexer.match(TokenTypes.ID);
81 this.lexer.match('@');
82 this.lexer.match(TokenTypes.ID);
95 this.lexer.match(',');
100 this.lexer.match(TokenTypes.ID);
103 this.lexer.match('@');
104 this.lexer.match(TokenTypes.ID);
FromParser.java 55 this.lexer.match(TokenTypes.FROM);
57 this.lexer.match(':');
60 this.lexer.match('\n');
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex7.c 39 int match, n; local
53 match = re_search (&regex, "baobab", 6, 0, 6, &regs);
55 if (match != 1)
57 printf ("re_search returned %d, expected 1\n", match);
78 match = re_match (&regex, "apl", 3, 0, &regs);
80 if (match != 1)
82 printf ("re_match returned %d, expected 1\n", match);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/
Platform.js 79 var match = userAgent.match(/Windows NT (\d+)\.(?:\d+)/);
80 if (match && match[1] >= 6)
84 var match = userAgent.match(/Mac OS X\s*(?:(\d+)_(\d+))?/);
85 if (!match || match[1] != 10)
87 switch (Number(match[2])) {
  /external/chromium_org/third_party/mesa/src/src/glx/
clientinfo.c 88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;
  /external/libcxx/test/re/re.alg/re.alg.match/
Android.mk 17 test_makefile := external/libcxx/test/re/re.alg/re.alg.match/Android.mk
19 test_name := re/re.alg/re.alg.match/awk
23 test_name := re/re.alg/re.alg.match/grep
27 test_name := re/re.alg/re.alg.match/egrep
31 test_name := re/re.alg/re.alg.match/ecma
35 test_name := re/re.alg/re.alg.match/extended
39 test_name := re/re.alg/re.alg.match/basic
43 test_name := re/re.alg/re.alg.match/parse_curly_brackets
47 test_name := re/re.alg/re.alg.match/lookahead_capture
  /external/mesa3d/src/glx/
clientinfo.c 88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
jsonchecker.py 46 match = re.search(r': line (?P<line>\d+) column \d+', str(error))
47 if not match:
49 return int(match.group('line'))
  /external/chromium_org/third_party/icu/source/i18n/
csr2022.h 49 * @return match quality, in the range of 0-100.
65 UBool match(InputText *textIn, CharsetMatch *results) const;
74 UBool match(InputText *textIn, CharsetMatch *results) const;
85 UBool match(InputText *textIn, CharsetMatch *results) const;
csrecog.h 42 * with the quality of the match plus other information related to the match.
44 * Return TRUE if the the input bytes are a potential match, and
47 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
csrsbcs.h 72 virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
81 virtual UBool match(InputText *det, CharsetMatch *results) const;
89 virtual UBool match(InputText *det, CharsetMatch *results) const;
140 virtual UBool match(InputText *det, CharsetMatch *results) const;
150 virtual UBool match(InputText *det, CharsetMatch *results) const;
160 virtual UBool match(InputText *det, CharsetMatch *results) const;
172 virtual UBool match(InputText *det, CharsetMatch *results) const;
182 virtual UBool match(InputText *det, CharsetMatch *results) const;
192 virtual UBool match(InputText *det, CharsetMatch *results) const;
204 virtual UBool match(InputText *det, CharsetMatch *results) const
    [all...]
csrucode.h 37 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
39 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
51 UBool match(InputText* textIn, CharsetMatch *results) const;
62 UBool match(InputText* textIn, CharsetMatch *results) const;
75 UBool match(InputText* textIn, CharsetMatch *results) const;
csrutf8.h 33 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
35 UBool match(InputText *input, CharsetMatch *results) const;
  /external/chromium_org/tools/resources/
find_used_resources.py 37 match = unknown_pragma_warning_pattern.search(ln)
38 if match:
39 resource_id = int(match.group('resource_id'))
  /external/icu/icu4c/source/i18n/
csr2022.h 49 * @return match quality, in the range of 0-100.
65 UBool match(InputText *textIn, CharsetMatch *results) const;
74 UBool match(InputText *textIn, CharsetMatch *results) const;
85 UBool match(InputText *textIn, CharsetMatch *results) const;
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlToken.java 43 boolean tokenInContextMatches(String context, String match) {
45 if (n != match.length()) { return false; }
46 return context.regionMatches(start, match, 0, n);
  /external/chromium_org/third_party/angle/src/libEGL/
Config.cpp 264 bool match = true;
271 case EGL_BUFFER_SIZE: match = config->mBufferSize >= attribute[1]; break;
272 case EGL_ALPHA_SIZE: match = config->mAlphaSize >= attribute[1]; break;
273 case EGL_BLUE_SIZE: match = config->mBlueSize >= attribute[1]; break;
274 case EGL_GREEN_SIZE: match = config->mGreenSize >= attribute[1]; break;
275 case EGL_RED_SIZE: match = config->mRedSize >= attribute[1]; break;
276 case EGL_DEPTH_SIZE: match = config->mDepthSize >= attribute[1]; break;
277 case EGL_STENCIL_SIZE: match = config->mStencilSize >= attribute[1]; break;
278 case EGL_CONFIG_CAVEAT: match = config->mConfigCaveat == (EGLenum) attribute[1]; break;
279 case EGL_CONFIG_ID: match = config->mConfigID == attribute[1]; break
    [all...]
  /external/ltrace/testsuite/ltrace.minor/
time-record-tt.exp 33 # match the line with sleep and extract the strat time and sleep argument.
34 if [ regexp {[0-9]+:([0-9]+):([0-9]+)\.[0-9]+ sleep\(([0-9]+)} $line match start_min start_sec sleep_sec] then {
36 regexp {0([1-9])} $start_min match start_min
37 regexp {0([1-9])} $start_sec match start_sec
42 regexp {[0-9]+:([0-9]+):([0-9]+)} $line match end_min end_sec
46 regexp {0([1-9])} $end_min match end_min
47 regexp {0([1-9])} $end_sec match end_sec
67 if [ regexp {define NANOSLEEP_COUNT ([0-9]+)} $line match nanosleep_usec] then {
77 # match the line with sleep and extract the strat time and sleep argument.
78 if [ regexp {[0-9]+:[0-9]+:([0-9]+)\.([0-9][0-9][0-9]).* nanosleep} $line match start_sec start_usec ] then
    [all...]
time-record-ttt.exp 34 # match the line with sleep and extract the strat time and sleep argument.
35 if [ regexp {([0-9]+)\.([0-9][0-9][0-9]).* sleep\(([0-9]+)} $line match start_sec start_usec sleep_sec] then {
38 regexp {0*([1-9][0-9]*)} $start_sec match start_sec
39 regexp {0*([1-9][0-9]*)} $start_usec match start_usec
44 regexp {([0-9]+)\.([0-9][0-9][0-9])} $line match end_sec end_usec
48 regexp {0*([1-9][0-9]*)} $end_sec match end_sec
49 regexp {0*([1-9][0-9]*)} $end_usec match end_usec
71 if [ regexp {define NANOSLEEP_COUNT ([0-9]+)} $line match nanosleep_usec] then {
81 # match the line with sleep and extract the strat time and sleep argument.
82 if [ regexp {([0-9]+)\.([0-9][0-9][0-9]).* nanosleep} $line match start_sec start_usec ] then
    [all...]
  /external/chromium_org/tools/findit/
findit_for_crash.py 28 """Generates a match object and adds it to the match set.
31 matches: A matchset object, a map from CL to a match object.
52 match = match_set.Match(revision_info, component_name)
55 match.ParseMessage(message, matches.codereview_api_url)
57 # If this match is a revert, add to the set of CLs to be ignored.
58 if match.is_revert:
61 # If this match has info on what CL it is reverted from, add that CL.
62 if match.revert_of
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_owner.h 32 __u8 match, invert; member in struct:xt_owner_match_info
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_owner.h 32 __u8 match, invert; member in struct:xt_owner_match_info
  /external/chromium_org/content/shell/renderer/test_runner/resources/fonts/
fonts.conf 5 <match target="font">
7 </match>
9 <match target="pattern">
16 </match>
18 <match target="pattern">
25 </match>
27 <match target="pattern">
34 </match>
38 <match target="pattern">
45 </match>
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
SearchSymbol.h 29 bool match; member in class:sh::SearchSymbol
  /external/chromium_org/tools/gyp/test/configurations/inheritance/
gyptest-duplicates.py 29 if not test.match(contents, expect):

Completed in 663 milliseconds

1 23 4 5 6 7 8 91011>>