/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/ |
H A D | package.d | 36 $(LREF Captures) 69 assert(c2[1] == "bar"); // Captures is a range of submatches: 0 = full match. 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"); 334 Getting a range of all the named captures in the regex. 529 `Captures` object contains submatches captured during a call in foreach() 534 @trusted public struct Captures(R) in foreach() 685 @property ref captures(){ return this; } in length() function [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/ |
H A D | package.d | 35 $(LREF Captures) 68 assert(c2[1] == "bar"); // Captures is a range of submatches: 0 = full match. 321 Getting a range of all the named captures in the regex. 460 $(D Captures) object contains submatches captured during a call in foreach() 465 @trusted public struct Captures(R, DIndex = size_t) in foreach() struct 517 "Failed to allocate Captures struct" in foreach() argument 666 @property ref captures(){ return this; } in foreach() function 694 Effectively it's a forward range of Captures!R, produced in foreach() 709 Captures!(R,EngineType.DataIndex) _captures; in foreach() 723 _captures = Captures!(R,EngineType.DataIndex)(this); in foreach() [all …]
|
/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 …]
|
/netbsd-src/external/bsd/libpcap/dist/ |
H A D | pcap_get_tstamp_precision.3pcap.in | 25 captures 38 returns the precision of the time stamp returned in packet captures on the pcap 47 that pcap captures contains time stamps in microseconds or nanoseconds
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | ScopeInfo.h | 523 // local variables, and C++1y initialized captures (which can have an 668 /// CaptureMap - A map of captured variables to (index+1) into Captures. 675 /// Captures - The captures. 676 SmallVector<Capture, 4> Captures; variable 689 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc, in addCapture() 691 CaptureMap[Var] = Captures.size(); in addCapture() 696 Captures.push_back(Capture(Capture::VLACapture, VLAType, in addVLATypeCapture() 709 return Captures[CXXThisCaptureIndex - 1]; in getCXXThisCapture() 724 return Captures[CaptureMap[Var] - 1]; in getCapture() 731 return Captures[Known->second - 1]; in getCapture() [all …]
|
/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 103 above example it is refered to in the replacement expression. Captures 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} 200 Captures can also be used for capturing results of sub-expressions. 221 In the above example, @code{@@2} captures the result of the expression 407 available which captures the outermost expression (something
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
H A D | lambda.c | 127 LAMBDA must have its explicit captures already. */ 640 /* Normal captures are invisible to name lookup but uses are replaced in add_capture() 643 qualify_lookup. For now, let's make explicitly initialized captures in add_capture() 671 /* For explicit captures we haven't started the function yet, so we wait in add_capture() 677 /* Register all the capture members on the list CAPTURES, which is the 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() 1459 /* Push the proxies for any explicit captures. */ in start_lambda_function() [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 103 above example it is referred to in the replacement expression. Captures 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} 200 Captures can also be used for capturing results of sub-expressions. 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/dist/gcc/cp/ |
H A D | lambda.cc | 128 LAMBDA must have its explicit captures already. */ 639 /* Normal captures are invisible to name lookup but uses are replaced in add_capture() 642 qualify_lookup. For now, let's make explicitly initialized captures in add_capture() 670 /* For explicit captures we haven't started the function yet, so we wait in add_capture() 676 /* Register all the capture members on the list CAPTURES, which is the 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() 1480 /* Push the proxies for any explicit captures. */ in start_lambda_function() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGBlocks.h | 217 /// no non-constant captures. 220 /// True if the block has captures that would necessitate custom copy or 242 llvm::DenseMap<const VarDecl*, Capture> Captures; variable 271 it = Captures.find(var); in getCapture() 272 assert(it != Captures.end() && "no entry for variable!"); in getCapture()
|
H A D | CGBlocks.cpp | 334 _CapturesTypes captures...; 362 info.Captures.insert({Capture->getVariable(), C}); in setIndex() 568 // Next, all the block captures. in computeBlockInfo() 569 for (const auto &CI : block->captures()) { in computeBlockInfo() 593 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant); in computeBlockInfo() 779 // If the block has no captures, we won't have a pre-computed in EmitBlockLiteral() 910 for (const auto &CI : blockDecl->captures()) { in EmitBlockLiteral() 914 // Ignore constant captures. in EmitBlockLiteral() 1039 // Ignore __block captures; there's nothing special in the on-stack block in EmitBlockLiteral() 1051 // Block captures count as local values and have imprecise semantics. in EmitBlockLiteral() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/textmate/TableGen.tmbundle/Syntaxes/ |
H A D | TableGen.tmLanguage | 50 <key>captures</key> 66 <key>captures</key> 86 <key>captures</key>
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vscode/llvm/syntaxes/ |
H A D | TableGen.tmLanguage | 50 <key>captures</key> 66 <key>captures</key> 86 <key>captures</key>
|
H A D | ll.tmLanguage.yaml | 34 captures: 311 captures: 315 captures:
|
/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/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaLambda.cpp | 540 ArrayRef<LambdaIntroducer::LambdaCapture> Captures, in addLambdaParameters() argument 552 for (const auto &Capture : Captures) { in addLambdaParameters() 1019 // For simple-captures, this is covered by the check below that any named in ActOnStartOfLambdaDefinition() 1034 // Handle explicit captures. in ActOnStartOfLambdaDefinition() 1037 for (auto C = Intro.Captures.begin(), E = Intro.Captures.end(); C != E; in ActOnStartOfLambdaDefinition() 1078 if (!LSI->Captures.empty()) in ActOnStartOfLambdaDefinition() 1079 LSI->ExplicitCaptureRanges[LSI->Captures.size() - 1] = C->ExplicitRange; in ActOnStartOfLambdaDefinition() 1125 // captures a variable [...] whose declarative region is the in ActOnStartOfLambdaDefinition() 1230 if (!LSI->Captures.empty()) in ActOnStartOfLambdaDefinition() 1231 LSI->ExplicitCaptureRanges[LSI->Captures.size() - 1] = C->ExplicitRange; in ActOnStartOfLambdaDefinition() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | LambdaCapture.h | 1 //===--- LambdaCapture.h - Types for C++ Lambda Captures --------*- C++ -*-===// 92 /// Determine whether this captures a variable length array bound 128 /// which captures a function parameter pack.
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/build/ |
H A D | sync_source_lists_from_cmake.py | 61 # Matches e.g. | "foo.cpp",|, captures |foo| in group 1. 63 # Matches e.g. | bar_sources = [ "foo.cpp" ]|, captures |foo| in group 1. 67 # Matches e.g. | foo.cpp|, captures |foo| in group 1.
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | genmatch.cc | 765 /* A wrapper around another operand that captures its value. */ 1353 /* Deep-copy captures and expressions, replacing operations as in replace_id() 2083 of expressions with omit_one_operand. Analyze captures in 2115 /* Analyze captures in S. */ 2144 /* Analyze captures in the match expression piece O. */ 2161 /* Recurse to exprs and captures. */ in walk_match() 2165 /* We need to look past multiple captures to find a captured in walk_match() 2166 expression as with conditional converts two captures in walk_match() 2168 what captures capture the same thing. */ in walk_match() 2177 /* Mark expr (non-leaf) captures and forced single-use exprs. */ in walk_match() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | genmatch.c | 761 /* A wrapper around another operand that captures its value. */ 1349 /* Deep-copy captures and expressions, replacing operations as in replace_id() 2075 of expressions with omit_one_operand. Analyze captures in 2107 /* Analyze captures in S. */ 2138 /* Analyze captures in the match expression piece O. */ 2155 /* Recurse to exprs and captures. */ in walk_match() 2159 /* We need to look past multiple captures to find a captured in walk_match() 2160 expression as with conditional converts two captures in walk_match() 2162 what captures capture the same thing. */ in walk_match() 2171 /* Mark expr (non-leaf) captures and forced single-use exprs. */ in walk_match() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | Stmt.cpp | 1308 ArrayRef<Capture> Captures, in CapturedStmt() argument 1312 : Stmt(CapturedStmtClass), NumCaptures(Captures.size()), in CapturedStmt() 1328 std::copy(Captures.begin(), Captures.end(), Buffer); in CapturedStmt() 1339 ArrayRef<Capture> Captures, in Create() argument 1352 assert(CaptureInits.size() == Captures.size() && "wrong number of arguments"); in Create() 1354 unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (Captures.size() + 1); in Create() 1355 if (!Captures.empty()) { in Create() 1358 Size += sizeof(Capture) * Captures.size(); in Create() 1362 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD); in Create() 1412 for (const auto &I : captures()) { in capturesVariable()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | CaptureTracking.h | 47 /// DominatorTree is provided, only captures which happen before the given 53 /// or not. Captures by the provided instruction are considered if the
|
/netbsd-src/sys/net/ |
H A D | dlt.h | 48 * purpose, and of having tools that read libpcap-format captures not 49 * being able to handle captures with your new DLT_ value, with no hope 51 * ability to read captures using that value for that other purpose). 200 * as 117 so that pflog captures would use a link-layer header type 631 * For future use with 802.11 captures - defined by AbsoluteValue 1003 * captures from the Linux kernel /dev/input/eventN devices. This 1396 * be able to handle the old LINKTYPE_USER2 captures *and* the new 1397 * LINKTYPE_PKTAP captures.) 1419 * per Joshua Wright <jwright@hasborg.com>, formats for Zwave captures. 1426 * Digital Lighting Management room bus serial protocol captures [all...] |
/netbsd-src/external/bsd/tcpdump/dist/ |
H A D | atm.h | 26 * some OAM cell captures (most notably Juniper's)
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Man/man1m/ |
H A D | tcpsnoop_snv.d.1m | 8 plus standard details such as IP address and port. This captures traffic
|