OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumCatchStmts
(Results
1 - 3
of
3
) sorted by null
/external/clang/include/clang/AST/
StmtObjC.h
161
unsigned
NumCatchStmts
: 16;
177
Stmt **CatchStmts, unsigned
NumCatchStmts
,
180
explicit ObjCAtTryStmt(EmptyShell Empty, unsigned
NumCatchStmts
,
182
: Stmt(ObjCAtTryStmtClass, Empty),
NumCatchStmts
(
NumCatchStmts
),
188
Stmt **CatchStmts, unsigned
NumCatchStmts
,
191
unsigned
NumCatchStmts
,
205
unsigned getNumCatchStmts() const { return
NumCatchStmts
; }
209
assert(I <
NumCatchStmts
&& "Out-of-bounds @catch index");
215
assert(I <
NumCatchStmts
&& "Out-of-bounds @catch index")
[
all
...]
/external/clang/lib/AST/
Stmt.cpp
485
Stmt **CatchStmts, unsigned
NumCatchStmts
,
488
NumCatchStmts
(
NumCatchStmts
), HasFinally(atFinallyStmt != 0)
492
for (unsigned I = 0; I !=
NumCatchStmts
; ++I)
496
Stmts[
NumCatchStmts
+ 1] = atFinallyStmt;
503
unsigned
NumCatchStmts
,
506
(1 +
NumCatchStmts
+ (atFinallyStmt != 0)) * sizeof(Stmt *);
508
return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts,
NumCatchStmts
,
513
unsigned
NumCatchStmts
,
516
(1 +
NumCatchStmts
+ HasFinally) * sizeof(Stmt *)
[
all
...]
/external/clang/lib/Sema/
SemaStmt.cpp
[
all
...]
Completed in 498 milliseconds