/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/ |
H A D | tests2.d | 24 assert(array(match("azb",cr4).captures) == ["azb", "azb"]); 50 assert(m8.captures[1] == "a"); 51 assert(m8.captures[2] == "b"); 52 assert(m8.captures[3] == "cc"); 56 assert(equal(bmatch("xxqababqyy",cr9).captures, ["qababq", "b"])); 79 assert(equal(mx.captures, [ "B", "B"])); 86 assert(mx3.captures[0] == "AaA"); 90 assert(mx4.captures[0] == "aaaab"); 94 assert(m8.captures[1] == "a"); 95 assert(m8.captures[2] == "b"); [all …]
|
H A D | tests.d | 350 replaceFmt(fmt, m.captures, app, true); in produceExpected() 362 replaceFmt(fmt, m.captures, app, true); in run_tests()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/ |
H A D | tests.d | 350 replaceFmt(fmt, m.captures, app, true); in produceExpected() 362 replaceFmt(fmt, m.captures, app, true); in run_tests() 482 assert(array(match("azb",cr4).captures) == ["azb", "azb"]); 508 assert(m8.captures[1] == "a"); 509 assert(m8.captures[2] == "b"); 510 assert(m8.captures[3] == "cc"); 514 assert(equal(bmatch("xxqababqyy",cr9).captures, ["qababq", "b"])); 537 assert(equal(mx.captures, [ "B", "B"])); 544 assert(mx3.captures[0] == "AaA"); 548 assert(mx4.captures[0] == "aaaab"); [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/ |
H A D | package.d | 816 @property auto captures() inout { return _captures; } in foreach() function 830 auto captures = Captures!(R, EngineType.DataIndex)(input, re.ngroup, re.dict); in matchOnce() local 834 captures._nMatch = engine.match(captures.matches); in matchOnce() 835 return captures; in matchOnce() 858 (ref Sink sink, R input, T captures) 861 if (captures.empty) 866 sink.put(captures.pre); 870 sink.put(output(captures)); //"mutator" type of function 872 output(captures, sink); //"output" type of function 873 sink.put(captures.post); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
H A D | match-and-simplify.texi | 101 @code{@@n} denotes a so-called capture. It captures the operand and lets 129 Here @code{@@0} captures the first operand of the trunc_mod expression 131 may be either expressions, predicates or captures. Captures 139 expression which may contain references to captures. The @code{if} 221 In the above example, @code{@@2} captures the result of the expression 425 available which captures the outermost expression (something
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
H A D | match-and-simplify.texi | 101 @code{@@n} denotes a so-called capture. It captures the operand and lets 129 Here @code{@@0} captures the first operand of the trunc_mod expression 131 may be either expressions, predicates or captures. Captures 139 expression which may contain references to captures. The @code{if} 221 In the above example, @code{@@2} captures the result of the expression 407 available which captures the outermost expression (something
|
/netbsd-src/lib/libc/arch/sh3/gen/ |
H A D | swapcontext.S | 49 !! getcontext captures oucp resuming here with r12 (when PIC),
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
H A D | UncountedLambdaCapturesChecker.cpp | 58 for (const LambdaCapture &C : L->captures()) { in visitLambdaExpr()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
H A D | AnalysisDeclContext.cpp | 153 for (const auto &I : BD->captures()) { in getSelfDecl() 168 for (const auto &LC : parent->captures()) { in getSelfDecl() 598 for (const auto &CI : BD->captures()) { in LazyInitializeReferencedDecls()
|
H A D | CalledOnceCheck.cpp | 646 for (const auto &Capture : Block->captures()) { in findCapturesToTrack() 1573 for (const auto &Capture : Block->getBlockDecl()->captures()) { in VisitBlockExpr()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/ |
H A D | package.d | 88 if (const auto captures = matchFirst("At l34st one digit, but maybe more...", `((\d)(\d*))`)) 90 assert(captures[2] == "3"); 91 assert(captures[3] == "4"); 92 assert(captures[1] == "34");
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
H A D | TransBlockObjCVariable.cpp | 80 for (const auto &I : block->captures()) { in VisitBlockDecl()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/net/ |
H A D | curl.d | 281 size_t remain = m.captures[1].to!size_t - bdy.length; in version() 2484 auto fieldName = m.captures[1].toLower().idup; in onReceiveHeader() 2487 auto mct = match(cast(char[]) m.captures[2], in onReceiveHeader() 2489 if (!mct.empty && mct.captures.length > 1) in onReceiveHeader() 2490 charset = mct.captures[1].idup; in onReceiveHeader() 2494 callback(fieldName, m.captures[2]); in onReceiveHeader() 2495 headersIn[fieldName] = m.captures[2].idup; in onReceiveHeader() 2520 status.majorVersion = to!ushort(m.captures[1]); in parseStatusLine() 2521 status.minorVersion = m.captures[2].length ? to!ushort(m.captures[2]) : 0; in parseStatusLine() 2522 status.code = to!ushort(m.captures[3]); in parseStatusLine() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
H A D | lambda.c | 681 register_capture_members (tree captures) in register_capture_members() argument 683 if (captures == NULL_TREE) in register_capture_members() 686 register_capture_members (TREE_CHAIN (captures)); in register_capture_members() 688 tree field = TREE_PURPOSE (captures); in register_capture_members()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/net/ |
H A D | curl.d | 296 size_t remain = m.captures[1].to!size_t - bdy.length; in version() 2454 auto fieldName = m.captures[1].toLower().idup; in onReceiveHeader() 2457 auto mct = match(cast(char[]) m.captures[2], in onReceiveHeader() 2459 if (!mct.empty && mct.captures.length > 1) in onReceiveHeader() 2460 charset = mct.captures[1].idup; in onReceiveHeader() 2464 callback(fieldName, m.captures[2]); in onReceiveHeader() 2465 headersIn[fieldName] = m.captures[2].idup; in onReceiveHeader() 2491 status.majorVersion = to!ushort(m.captures[1]); in parseStatusLine() 2492 status.minorVersion = m.captures[2].length ? to!ushort(m.captures[2]) : 0; in parseStatusLine() 2493 status.code = to!ushort(m.captures[3]); in parseStatusLine() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | lambda.cc | 680 register_capture_members (tree captures) in register_capture_members() argument 682 if (captures == NULL_TREE) in register_capture_members() 685 register_capture_members (TREE_CHAIN (captures)); in register_capture_members() 687 tree field = TREE_PURPOSE (captures); in register_capture_members()
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
H A D | shellsnoop_example.txt | 1 shellsnoop captures the text input and output from shells running on the
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
H A D | shellsnoop_example.txt | 1 shellsnoop captures the text input and output from shells running on the
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | StmtDataCollectors.td | 199 for (const LambdaCapture &C : S->captures()) {
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/process/ |
H A D | child.ipp | 73 /// Spawns a new subprocess and multiplexes and captures its stdout and stderr.
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
H A D | LangImpl02.rst | 29 The AST for a program captures its behavior in such a way that it is 54 about this code is that the NumberExprAST class captures the numeric 99 expressions. One thing that is nice about our AST is that it captures 113 /// which captures its name, and its argument names (thus implicitly the number
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | StackAddrEscapeChecker.cpp | 129 for (const auto &C : B.captures()) { in isSemaphoreCaptured()
|
H A D | DeadStoresChecker.cpp | 514 for (const LambdaCapture &C : LE->captures()) { in findLambdaReferenceCaptures()
|
/netbsd-src/external/bsd/ntp/dist/html/hints/ |
H A D | notes-xntp-v3 | 77 13. A STREAMS module which captures carrier-detect data-lead transitions to
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGBlocks.cpp | 569 for (const auto &CI : block->captures()) { in computeBlockInfo() 910 for (const auto &CI : blockDecl->captures()) { in EmitBlockLiteral() 1544 for (const auto &CI : blockDecl->captures()) { in GenerateBlockFunction() 1581 for (const auto &CI : blockDecl->captures()) { in GenerateBlockFunction() 1680 for (const auto &CI : BlockInfo.getBlockDecl()->captures()) { in findBlockCapturedManagedEntities()
|