Home
last modified time | relevance | path

Searched refs:CAPTURE (Results 1 – 9 of 9) sorted by relevance

/external/parameter-framework/upstream/utility/test/
Dutility.cpp60 CAPTURE(Catch::toString(test.input));
86 CAPTURE(Catch::toString(test.input));
88 CAPTURE(test.separator);
120 CAPTURE(Catch::toString(test.input));
121 CAPTURE(test.keyValueSep);
122 CAPTURE(test.itemSep);
143 CAPTURE(test.initial);
144 CAPTURE(test.title);
160 CAPTURE(str);
168 CAPTURE(str);
[all …]
/external/parameter-framework/upstream/bindings/c/
DTest.cpp60 CAPTURE(pfwGetLastError(pfw)); in REQUIRE_FAILURE()
70 CAPTURE(pfwGetLastError(pfw)); in REQUIRE_SUCCESS()
275 CAPTURE(criterionName);
287 CAPTURE(criterionName);
293 CAPTURE(criterionName);
/external/v8/src/js/
Dregexp.js417 var start = RegExpLastMatchInfo[CAPTURE(length - 2)];
418 var end = RegExpLastMatchInfo[CAPTURE(length - 1)];
451 var matchStart = RegExpLastMatchInfo[CAPTURE(index)];
452 var matchEnd = RegExpLastMatchInfo[CAPTURE(index + 1)];
Dstring.js345 var start = matchInfo[CAPTURE(scaled_index)];
348 %_SubString(subject, start, matchInfo[CAPTURE(scaled_index + 1)]);
387 var start = lastCaptureInfo[CAPTURE(scaled)];
390 var end = lastCaptureInfo[CAPTURE(scaled + 1)];
Dmacros.py166 macro CAPTURE(index) = (3 + (index));
/external/clang/test/CodeGenObjC/
Dblocks.m76 // CHECK-NEXT: [[CAPTURE:%.*]] = load [[TEST2]]*, [[TEST2]]** [[X]]
77 // CHECK-NEXT: store [[TEST2]]* [[CAPTURE]], [[TEST2]]** [[T6]]
Darc-blocks.m182 …// CHECK: [[CAPTURE:%.*]] = getelementptr inbounds [[BLOCK_T]], [[BLOCK_T]]* [[BLOCK]], i32 0…
184 // CHECK-NEXT: store i8* [[T0]], i8** [[CAPTURE]]
517 …// CHECK: [[CAPTURE:%.*]] = getelementptr inbounds [[BLOCK_T]], [[BLOCK_T]]* [[BLOCK]], i32 0…
520 // CHECK-NEXT: store i8* [[T1]], i8** [[CAPTURE]], align 8
/external/v8/src/regexp/
Dregexp-parser.cc176 if (group_type == CAPTURE) { in ParseDisjunction()
238 SubexpressionType subexpr_type = CAPTURE; in ParseDisjunction()
631 if (s->group_type() != CAPTURE) continue; in IsInsideCaptureGroup()
Dregexp-parser.h195 CAPTURE, // All positive values represent captures. enumerator