OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NumCaptures
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
385
/// The number of captures in this lambda is limited 2^
NumCaptures
.
386
unsigned
NumCaptures
: 15;
414
CaptureDefault(CaptureDefault),
NumCaptures
(0),
1067
return isLambda() ? captures_begin() + getLambdaData().
NumCaptures
1071
unsigned capture_size() const { return getLambdaData().
NumCaptures
; }
Stmt.h
952
unsigned
NumCaptures
: 16;
3533
unsigned
NumCaptures
;
3547
CapturedStmt(EmptyShell Empty, unsigned
NumCaptures
);
3557
void setCapturedStmt(Stmt *S) { getStoredStmts()[
NumCaptures
] = S; }
3569
unsigned
NumCaptures
);
3572
Stmt *getCapturedStmt() { return getStoredStmts()[
NumCaptures
]; }
3573
const Stmt *getCapturedStmt() const { return getStoredStmts()[
NumCaptures
]; }
3620
return getStoredCaptures() +
NumCaptures
;
3624
unsigned capture_size() const { return
NumCaptures
; }
3656
return capture_init_begin() +
NumCaptures
;
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1725
unsigned
NumCaptures
= Record.readInt();
1726
(void)
NumCaptures
;
1727
assert(
NumCaptures
== E->LambdaExprBits.
NumCaptures
);
3812
unsigned
NumCaptures
= Record[ASTStmtReader::NumExprFields];
3813
S = LambdaExpr::CreateDeserialized(Context,
NumCaptures
);
Completed in 66 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026