HomeSort by relevance Sort by last modified time
    Searched refs:captures (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/v8/src/regexp/
interpreter-irregexp.h 22 int* captures,
  /external/v8/test/mjsunit/
string-match.js 33 function testMatch(name, input, regexp, result, captures, from, to) {
40 var lastParen = captures.length > 0 ? captures[captures.length - 1] : "";
47 // Returns array of match and captures.
49 assertEquals(captures.length + 1, matchResult.length, name + "-cap-return");
51 assertEquals(captures[i - 1], matchResult[i], name + "-cap-return-" + i);
60 if (i <= captures.length) {
61 assertEquals(captures[i - 1], RegExp["$" + i], name + "-capture-" + i);
regexp-global.js 45 // Test zero-length matches that have non-zero-length sub-captures.
52 // Test multiple captures.
65 // Test multiple alternate captures.
97 // Test zero-length matches that have non-zero-length sub-captures.
104 // Test multiple captures.
117 // Test multiple alternate captures.
134 // Test zero-length matches that have non-zero-length sub-captures that do not
144 // Create regexp that has a *lot* of captures.
168 // Large regexp (a lot of captures).
search-string-multiple.js 39 // Arg 0 is the match, n captures follow, n + 1 is offset of match, n + 2 is
regexp-capture-3.js 94 // captures.
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 19 T captures(T x, T y) { function
35 template int captures(int, int);
36 template X captures(X, X);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
  /external/v8/test/cctest/
test-regexp.cc 511 // Check that we don't allow more than kMaxCapture captures
513 const char* kTooManyCaptures = "Too many captures";
819 int* captures) {
826 captures,
848 int captures[4] = {42, 37, 87, 117}; local
860 captures);
863 CHECK_EQ(-1, captures[0]);
864 CHECK_EQ(-1, captures[1]);
865 CHECK_EQ(-1, captures[2]);
866 CHECK_EQ(-1, captures[3])
903 int captures[4] = {42, 37, 87, 117}; local
970 int captures[4] = {42, 37, 87, 117}; local
1447 int captures[2]; local
1507 int captures[5]; local
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 25 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 28 (* proto - This type represents the "prototype" for a function, which captures
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 31 (* proto - This type represents the "prototype" for a function, which captures
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 81 for (const auto &I : block->captures()) {
  /external/v8/src/js/
regexp.js 607 // If the number of captures is two then there are no explicit captures in
608 // the regexp, just the implicit capture that captures the whole match. In
673 // Compute the parameter list consisting of the match, captures, index,
675 // The number of captures plus one for the match.
679 // No captures, only the match, which is always valid.
744 // GetSubstitution(matched, str, position, captures, replacement)
749 function GetSubstitution(matched, string, position, captures, replacement) {
752 var capturesLength = captures.length;
797 var capture = captures[scaledIndex]
    [all...]
  /external/autotest/server/cros/chaos_lib/
chaos_analyzer.py 152 packet captures.
226 packet captures.
277 help='analyze only packet captures.')
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 144 for (const auto &I : BD->captures()) {
159 for (const LambdaCapture &LC : parent->captures()) {
538 for (const auto &CI : BD->captures()) {
  /art/tools/ahat/src/
AhatSnapshot.java 27 import com.android.tools.perflib.captures.MemoryMappedFileBuffer;
  /external/v8/test/mjsunit/harmony/
regexp-lookbehind.js 79 // Captures inside negative lookbehind. (They never capture.)
110 // Back references to captures inside the lookbehind.
126 // The lookbehind captures "abc" so that \1 does not match. We do not backtrack
  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
Hprof.java 24 import com.android.tools.perflib.captures.MemoryMappedFileBuffer;
  /external/clang/lib/CodeGen/
CGBlocks.cpp 182 _CapturesTypes captures...;
211 info.Captures.insert({Capture->getVariable(),
359 // Next, all the block captures.
360 for (const auto &CI : block->captures()) {
380 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
580 // Walk through the captures (in order) and find the ones not
582 for (const auto &CI : block->captures()) {
583 // Ignore __block captures; there's nothing special in the
599 // Block captures count as local values and have imprecise semantics.
670 // If the block has no captures, we won't have a pre-compute
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 428 for (const LambdaCapture &C : LE->captures()) {
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/24.5.0/
perflib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0/
perflib-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.0.0-alpha1/
perflib-25.0.0-alpha1.jar 

Completed in 458 milliseconds

1 2 3 4