Home
last modified time | relevance | path

Searched refs:captures (Results 1 – 25 of 96) sorted by relevance

1234

/external/v8/test/mjsunit/
Dstring-match.js33 function testMatch(name, input, regexp, result, captures, from, to) { argument
40 var lastParen = captures.length > 0 ? captures[captures.length - 1] : "";
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);
/external/v8/test/cctest/
Dtest-regexp.cc718 int* captures) { in Execute() argument
725 captures, in Execute()
746 int captures[4] = {42, 37, 87, 117}; in TEST() local
758 captures); in TEST()
761 CHECK_EQ(-1, captures[0]); in TEST()
762 CHECK_EQ(-1, captures[1]); in TEST()
763 CHECK_EQ(-1, captures[2]); in TEST()
764 CHECK_EQ(-1, captures[3]); in TEST()
800 int captures[4] = {42, 37, 87, 117}; in TEST() local
811 captures); in TEST()
[all …]
/external/llvm/test/Analysis/BasicAA/
Dnoalias-param.ll3 declare i32* @captures(i32* %cap) nounwind readonly
8 %cap = call i32* @captures(i32* %a) nounwind readonly
18 %cap = call i32* @captures(i32* %c) nounwind readonly
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dtemplates.cpp19 T captures(T x, T y) { in captures() function
35 template int captures(int, int);
36 template X captures(X, X);
/external/clang/test/SemaObjC/
Darc-jump-block.m22 …eLeft]; }); // expected-note 3 {{jump enters lifetime of block which strongly captures a variable}}
25 …Right]; }); // expected-note 2 {{jump enters lifetime of block which strongly captures a variable}}
/external/v8/src/
Dinterpreter-irregexp.h19 int* captures,
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
Dast.ml19 (* proto - This type represents the "prototype" for a function, which captures
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
Dast.ml19 (* proto - This type represents the "prototype" for a function, which captures
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
Dast.ml19 (* proto - This type represents the "prototype" for a function, which captures
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dast.ml25 (* proto - This type represents the "prototype" for a function, which captures
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dast.ml28 (* proto - This type represents the "prototype" for a function, which captures
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dast.ml31 (* proto - This type represents the "prototype" for a function, which captures
/external/clang/lib/ARCMigrate/
DTransBlockObjCVariable.cpp81 for (const auto &I : block->captures()) { in VisitBlockDecl()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testConfigs/testingConfigTemplate/
Dtesting.properties29 #name of file that captures console output from running JUnit plug-in tests
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/
Dtesting.properties.template30 #name of file that captures console output from running JUnit plug-in tests
/external/clang/lib/Analysis/
DAnalysisDeclContext.cpp144 for (const auto &I : BD->captures()) { in getSelfDecl()
521 for (const auto &CI : BD->captures()) { in LazyInitializeReferencedDecls()
/external/clang/lib/CodeGen/
DCGBlocks.cpp379 for (const auto &CI : block->captures()) { in computeBlockInfo()
598 for (const auto &CI : block->captures()) { in enterBlockScope()
760 for (const auto &CI : blockDecl->captures()) { in EmitBlockLiteral()
1199 for (const auto &CI : blockDecl->captures()) { in GenerateBlockFunction()
1239 for (const auto &CI : blockDecl->captures()) { in GenerateBlockFunction()
1350 for (const auto &CI : blockDecl->captures()) { in GenerateCopyHelperFunction()
1521 for (const auto &CI : blockDecl->captures()) { in GenerateDestroyHelperFunction()
DCGDecl.cpp575 for (const auto &I : block->captures()) { in isAccessedBy()
1035 for (const auto &I : block->captures()) { in isCapturedBy()
/external/llvm/docs/tutorial/
DOCamlLangImpl2.rst30 The AST for a program captures its behavior in such a way that it is
46 about this code is that the Number variant captures the numeric value of
69 expressions. One thing that is nice about our AST is that it captures
82 (* proto - This type represents the "prototype" for a function, which captures
701 (* proto - This type represents the "prototype" for a function, which captures
DLangImpl2.rst29 The AST for a program captures its behavior in such a way that it is
53 about this code is that the NumberExprAST class captures the numeric
93 expressions. One thing that is nice about our AST is that it captures
107 /// which captures its name, and its argument names (thus implicitly the number
/external/llvm/test/Transforms/Inline/
Dinline-tail.ll6 ; No tail marker after inlining, since test_capture_c captures an alloca.
/external/linux-tools-perf/src/tools/perf/Documentation/
Dperf-record.txt168 Enable taken branch stack sampling. Each sample captures a series of consecutive
/external/libpcap/
DREADME.hpux124 captures on HP-UX 9.x:
DCHANGES54 Fix addition of VLAN tags for Linux cooked captures
118 Fix the calculation of the frame size in memory-mapped captures.
204 Changes to Linux mmapped captures.
/external/clang/lib/Sema/
DJumpDiagnostics.cpp487 for (const auto &CI : BDecl->captures()) { in BuildScopeInformation()

1234