Home
last modified time | relevance | path

Searched refs:match (Results 1 – 25 of 75) sorted by relevance

123

/ndk/sources/third_party/googletest/googletest/test/
Dgtest_xml_output_unittest.py176 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)))
Dgtest_filter_unittest.py193 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)
Dgtest_list_tests_unittest.py162 expected_output_re.match(output),
169 not EXPECTED_OUTPUT_NO_FILTER_RE.match(output),
/ndk/sources/host-tools/ndk-stack/
Dndk-stack-parser.c104 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/
Dcppunit_mini.h99 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/
Dcppunit_mini.h99 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/
Dextract-platform.awk33 if (match($0,android_regex)) {
36 else if (match($0,vendor_regex)) {
Dgen-windows-host-path.awk73 if (!match(host[nn],"^[A-Za-z]:$")) {
83 if (match(cygwin[nn],"/"lo"$")) {
92 if (match(cygwin[nn],"/"up"$")) {
Dextract-package-name.awk120 if (!match( $0, "^" sec_begin )) return 0;
121 while (!match($0, sec_end "$")) {
Dextract-minsdkversion.awk116 if (!match( $0, "^" sec_begin )) return 0;
117 while (!match($0, sec_end "$")) {
Dextract-debuggable.awk119 if (!match( $0, "^" sec_begin )) return 0;
120 while (!match($0, sec_end "$")) {
Dxml.awk104 if (!match( $0, "^" sec_begin )) return 0;
105 while (!match($0, sec_end "$")) {
Dcheck-awk.awk26 if (! match(s1,"world")) {
Dextract-launchable.awk178 if (!match( $0, "^" sec_begin )) return 0;
179 while (!match($0, sec_end "$")) {
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dsubstitution20 # Patsubst without '%'--shouldn't match because the whole word has to match
Dwildcard12 test echo's all files which match '?.example' and
/ndk/sources/host-tools/ndk-stack/regex/
Dengine.c54 #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/
D0002-Work-around-broken-abort-on-Android-MIPS.patch8 match the abort() behaviour.
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-port.cc156 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/
Ddynsections.js60 return this.id.match(re);
/ndk/docs/Getting_Started/html/
Ddynsections.js60 return this.id.match(re);
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0013-temp-collective-ndk-hackathon-fixes.patch28 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/
Djquery.js12match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if…
20match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").repla…
21match(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+-.]…
43match(/canvas|textarea|input|select|button|img/i)){if(/relative/.test(this.element.css("position")…
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dpatternrules15 # to match properly.
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-W73 # Make sure ./ stripping doesn't interfere with the match.

123