Home
last modified time | relevance | path

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

123456

/netbsd/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dtests2.d24 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");
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");
96 assert(m8.captures[3] == "cc");
[all …]
H A Dtests.d350 replaceFmt(fmt, m.captures, app, true); in produceExpected()
362 replaceFmt(fmt, m.captures, app, true); in run_tests()
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
H A Dtests.d350 replaceFmt(fmt, m.captures, app, true); in produceExpected()
508 assert(m8.captures[1] == "a");
509 assert(m8.captures[2] == "b");
510 assert(m8.captures[3] == "cc");
537 assert(equal(mx.captures, [ "B", "B"]));
544 assert(mx3.captures[0] == "AaA");
548 assert(mx4.captures[0] == "aaaab");
552 assert(m8.captures[1] == "a");
553 assert(m8.captures[2] == "b");
554 assert(m8.captures[3] == "cc");
[all …]
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/regex/
H A Dpackage.d834 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);
873 sink.put(captures.post);
1179 if (digit < captures.length)
1189 sink.put(captures[name]);
1193 sink.put(captures[0]);
1198 sink.put(captures.pre);
[all …]
/netbsd/external/apache2/llvm/dist/llvm/utils/vscode/llvm/syntaxes/
H A Dll.tmLanguage.yaml34 captures:
311 captures:
315 captures:
/netbsd/external/gpl3/gcc.old/dist/gcc/doc/
H A Dmatch-and-simplify.texi101 @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/external/gpl3/gcc/dist/gcc/doc/
H A Dmatch-and-simplify.texi101 @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/lib/libc/arch/sh3/gen/
H A Dswapcontext.S49 !! getcontext captures oucp resuming here with r12 (when PIC),
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DUncountedLambdaCapturesChecker.cpp58 for (const LambdaCapture &C : L->captures()) { in visitLambdaExpr()
/netbsd/external/apache2/llvm/dist/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp153 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()
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/regex/
H A Dpackage.d88 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/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp80 for (const auto &I : block->captures()) { in VisitBlockDecl()
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/net/
H A Dcurl.d281 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/external/gpl3/gcc/dist/gcc/cp/
H A Dlambda.c681 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()
H A Dlambda.cc680 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/external/gpl3/gcc.old/dist/gcc/cp/
H A Dlambda.c681 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/external/gpl3/gcc/dist/libphobos/src/std/net/
H A Dcurl.d296 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/external/cddl/dtracetoolkit/dist/Examples/
H A Dshellsnoop_example.txt1 shellsnoop captures the text input and output from shells running on the
/netbsd/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dshellsnoop_example.txt1 shellsnoop captures the text input and output from shells running on the
/netbsd/external/bsd/kyua-cli/dist/utils/process/
H A Dchild.ipp73 /// Spawns a new subprocess and multiplexes and captures its stdout and stderr.
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtDataCollectors.td199 for (const LambdaCapture &C : S->captures()) {
/netbsd/external/bsd/libpcap/dist/
H A DCHANGES50 For remote captures, add an error code for "the server requires TLS"
88 Fixes for captures on MacOS, utun0
94 D-Bus captures can now be up to 128MB in size
166 On Linux, handle all CAN captures with pcap-linux.c, in cooked mode.
244 fixes for byte order issues with NFLOG captures
302 Fix addition of VLAN tags for Linux cooked captures
366 Fix the calculation of the frame size in memory-mapped captures.
452 Changes to Linux mmapped captures.
/netbsd/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl02.rst29 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/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp129 for (const auto &C : B.captures()) { in isSemaphoreCaptured()
/netbsd/external/bsd/ntp/dist/html/hints/
H A Dnotes-xntp-v377 13. A STREAMS module which captures carrier-detect data-lead transitions to

123456