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

1 2

  /external/chromium_org/v8/src/
interpreter-irregexp.h 19 int* captures,
string.js 431 // If the number of captures is two then there are no explicit captures in
432 // the regexp, just the implicit capture that captures the whole match. In
494 // Compute the parameter list consisting of the match, captures, index,
496 // The number of captures plus one for the match.
501 // No captures, only the match, which is always valid.
regexp.js 284 // on the captures array of the last successful match and the subject string
304 if (length <= 2) return ''; // There were no captures.
  /external/chromium_org/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/chromium_org/v8/test/cctest/
test-regexp.cc 435 // Check that we don't allow more than kMaxCapture captures
437 const char* kTooManyCaptures = "Too many captures";
718 int* captures) {
725 captures,
746 int captures[4] = {42, 37, 87, 117}; local
758 captures);
761 CHECK_EQ(-1, captures[0]);
762 CHECK_EQ(-1, captures[1]);
763 CHECK_EQ(-1, captures[2]);
764 CHECK_EQ(-1, captures[3])
800 int captures[4] = {42, 37, 87, 117}; local
866 int captures[4] = {42, 37, 87, 117}; local
1335 int captures[2]; local
1394 int captures[5]; local
    [all...]
  /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/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/chromium_org/third_party/WebKit/Tools/GardeningServer/
karma.conf.js 83 // if true, Karma captures browsers, runs the tests and exits
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 136 for (const auto &I : BD->captures()) {
514 for (const auto &CI : BD->captures()) {
UninitializedValues.cpp 635 for (const auto &I : bd->captures()) {
  /external/clang/lib/CodeGen/
CGBlocks.cpp 176 _CapturesTypes captures...;
204 info.Captures[Capture->getVariable()]
372 // Next, all the block captures.
373 for (const auto &CI : block->captures()) {
396 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.
669 // If the block has no captures, we won't have a pre-compute
    [all...]
CGDecl.cpp 537 for (const auto &I : block->captures()) {
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 448 // non-trivial cleanups of their captures. This is theoretically
453 for (const auto &CI : BDecl->captures()) {
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 1089 SmallVector<BlockDecl::Capture, 16> captures; local
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 2113 capture_range captures() { function in class:clang::CapturedStmt
2116 capture_const_range captures() const { function in class:clang::CapturedStmt
    [all...]
Decl.h     [all...]

Completed in 594 milliseconds

1 2