OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumHandlers
(Results
1 - 7
of
7
) sorted by null
/external/clang/include/clang/AST/
StmtCXX.h
63
unsigned
NumHandlers
;
66
unsigned
numHandlers
);
68
CXXTryStmt(EmptyShell Empty, unsigned
numHandlers
)
69
: Stmt(CXXTryStmtClass),
NumHandlers
(
numHandlers
) { }
81
unsigned
numHandlers
);
84
unsigned
numHandlers
);
92
return getStmts()[
NumHandlers
]->getLocEnd();
102
unsigned getNumHandlers() const { return
NumHandlers
; }
/external/clang/lib/CodeGen/
CGCleanup.h
60
unsigned
NumHandlers
: BitsRemaining;
96
EHCatchScope(unsigned
NumHandlers
)
97
: EHScope(Catch),
NumHandlers
(
NumHandlers
) {
101
return
NumHandlers
;
CGException.cpp
506
unsigned
NumHandlers
= S.getNumHandlers();
507
EHCatchScope *CatchScope = EHStack.pushCatch(
NumHandlers
);
509
for (unsigned I = 0; I !=
NumHandlers
; ++I) {
[
all
...]
CGCleanup.cpp
203
EHCatchScope *EHScopeStack::pushCatch(unsigned
NumHandlers
) {
204
char *Buffer = allocate(EHCatchScope::getSizeForNumHandlers(
NumHandlers
));
206
EHCatchScope *Scope = new (Buffer) EHCatchScope(
NumHandlers
);
207
for (unsigned I = 0; I !=
NumHandlers
; ++I)
[
all
...]
CodeGenFunction.h
445
class EHCatchScope *pushCatch(unsigned
NumHandlers
);
[
all
...]
/external/clang/lib/Sema/
SemaStmt.cpp
[
all
...]
/external/clang/lib/AST/
Stmt.cpp
535
unsigned
numHandlers
) {
537
Size += ((
numHandlers
+ 1) * sizeof(Stmt));
540
return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers,
numHandlers
);
544
unsigned
numHandlers
) {
546
Size += ((
numHandlers
+ 1) * sizeof(Stmt));
549
return new (Mem) CXXTryStmt(Empty,
numHandlers
);
553
Stmt **handlers, unsigned
numHandlers
)
554
: Stmt(CXXTryStmtClass), TryLoc(tryLoc),
NumHandlers
(
numHandlers
) {
557
std::copy(handlers, handlers +
NumHandlers
, Stmts + 1)
[
all
...]
Completed in 1060 milliseconds