/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_xml_output_unittest.py | 176 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str) 178 re.match, 181 year=int(match.group(1)), month=int(match.group(2)), 182 day=int(match.group(3)), hour=int(match.group(4)), 183 minute=int(match.group(5)), second=int(match.group(6)))
|
D | gtest_filter_unittest.py | 193 match = TEST_CASE_REGEX.match(line) 194 if match is not None: 195 test_case = match.group(1) 197 match = TEST_REGEX.match(line) 198 if match is not None: 199 test = match.group(1)
|
D | gtest_list_tests_unittest.py | 162 expected_output_re.match(output), 169 not EXPECTED_OUTPUT_NO_FILTER_RE.match(output),
|
/ndk/sources/host-tools/ndk-stack/ |
D | ndk-stack-parser.c | 104 static int MatchRegex(const char* line, const regex_t* regex, regmatch_t* match); 181 regmatch_t match; in ParseLine() local 214 if (MatchRegex(line, &parser->re_pid_header, &match)) { in ParseLine() 215 fprintf(parser->out_handle, "%s\n", line + match.rm_so); in ParseLine() 223 if (MatchRegex(line, &parser->re_sig_header, &match)) { in ParseLine() 224 fprintf(parser->out_handle, "%s\n", line + match.rm_so); in ParseLine() 231 if (!MatchRegex(line, &parser->re_frame_header, &match)) in ParseLine() 246 return ParseFrame(parser, line + match.rm_so); in ParseLine() 254 MatchRegex(const char* line, const regex_t* regex, regmatch_t* match) in MatchRegex() argument 256 int err = regexec(regex, line, 1, match, 0x00400/*REG_TRACE*/); in MatchRegex()
|
/ndk/tests/device/test-stlport/unit/cppunit/ |
D | cppunit_mini.h | 99 bool match = (strncmp(in_desiredTest, in_className, strlen(in_className)) == 0) && in shouldRunThis() local 102 return invert ? (match ? !match : !explicit_test) in shouldRunThis() 103 : match; in shouldRunThis() 105 bool match = (strcmp(in_desiredTest, in_className) == 0); in shouldRunThis() local 106 do_progress = match; in shouldRunThis() 107 return !explicit_test && (match == !invert); in shouldRunThis()
|
/ndk/tests/device/test-gnustl-full/unit/cppunit/ |
D | cppunit_mini.h | 99 bool match = (strncmp(in_desiredTest, in_className, strlen(in_className)) == 0) && in shouldRunThis() local 102 return invert ? (match ? !match : !explicit_test) in shouldRunThis() 103 : match; in shouldRunThis() 105 bool match = (strcmp(in_desiredTest, in_className) == 0); in shouldRunThis() local 106 do_progress = match; in shouldRunThis() 107 return !explicit_test && (match == !invert); in shouldRunThis()
|
/ndk/build/awk/ |
D | extract-platform.awk | 33 if (match($0,android_regex)) { 36 else if (match($0,vendor_regex)) {
|
D | gen-windows-host-path.awk | 73 if (!match(host[nn],"^[A-Za-z]:$")) { 83 if (match(cygwin[nn],"/"lo"$")) { 92 if (match(cygwin[nn],"/"up"$")) {
|
D | extract-package-name.awk | 120 if (!match( $0, "^" sec_begin )) return 0; 121 while (!match($0, sec_end "$")) {
|
D | extract-minsdkversion.awk | 116 if (!match( $0, "^" sec_begin )) return 0; 117 while (!match($0, sec_end "$")) {
|
D | extract-debuggable.awk | 119 if (!match( $0, "^" sec_begin )) return 0; 120 while (!match($0, sec_end "$")) {
|
D | xml.awk | 104 if (!match( $0, "^" sec_begin )) return 0; 105 while (!match($0, sec_end "$")) {
|
D | check-awk.awk | 26 if (! match(s1,"world")) {
|
D | extract-launchable.awk | 178 if (!match( $0, "^" sec_begin )) return 0; 179 while (!match($0, sec_end "$")) {
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | substitution | 20 # Patsubst without '%'--shouldn't match because the whole word has to match
|
D | wildcard | 12 test echo's all files which match '?.example' and
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | engine.c | 54 #define match smat macro 66 #define match lmat macro 71 struct match { struct 88 static char *dissect(struct match *, char *, char *, sopno, sopno); argument 89 static char *backref(struct match *, char *, char *, sopno, sopno, sopno, int); 90 static char *fast(struct match *, char *, char *, sopno, sopno); 91 static char *slow(struct match *, char *, char *, sopno, sopno); 104 static void print(struct match *, char *, states, int, FILE *); 107 static void at(struct match *, char *, char *, char *, sopno, sopno); 133 struct match mv; in matcher() [all …]
|
/ndk/sources/third_party/googletest/patches.ndk/ |
D | 0002-Work-around-broken-abort-on-Android-MIPS.patch | 8 match the abort() behaviour.
|
/ndk/sources/third_party/googletest/googletest/src/ |
D | gtest-port.cc | 156 regmatch_t match; in FullMatch() local 157 return regexec(&re.full_regex_, str, 1, &match, 0) == 0; in FullMatch() 165 regmatch_t match; in PartialMatch() local 166 return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; in PartialMatch()
|
/ndk/docs/Programmers_Guide/html/ |
D | dynsections.js | 60 return this.id.match(re);
|
/ndk/docs/Getting_Started/html/ |
D | dynsections.js | 60 return this.id.match(re);
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0013-temp-collective-ndk-hackathon-fixes.patch | 28 test/re/re.alg/re.alg.match/basic.pass.cpp | 14 ++++++++ 29 test/re/re.alg/re.alg.match/ecma.pass.cpp | 14 ++++++++ 30 test/re/re.alg/re.alg.match/extended.pass.cpp | 14 ++++++++ 736 diff --git a/test/re/re.alg/re.alg.match/basic.pass.cpp b/test/re/re.alg/re.alg.match/basic.pass.cpp 738 --- a/test/re/re.alg/re.alg.match/basic.pass.cpp 739 +++ b/test/re/re.alg/re.alg.match/basic.pass.cpp 782 diff --git a/test/re/re.alg/re.alg.match/ecma.pass.cpp b/test/re/re.alg/re.alg.match/ecma.pass.cpp 784 --- a/test/re/re.alg/re.alg.match/ecma.pass.cpp 785 +++ b/test/re/re.alg/re.alg.match/ecma.pass.cpp 828 diff --git a/test/re/re.alg/re.alg.match/extended.pass.cpp b/test/re/re.alg/re.alg.match/extended.p… [all …]
|
/ndk/docs/Additional_library_docs/renderscript/ |
D | jquery.js | 12 …match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if… 20 …match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").repla… 21 …match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.… 22 …ide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]… 43 …match(/canvas|textarea|input|select|button|img/i)){if(/relative/.test(this.element.css("position")…
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | patternrules | 15 # to match properly.
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
D | dash-W | 73 # Make sure ./ stripping doesn't interfere with the match.
|