HomeSort by relevance Sort by last modified time
    Searched refs:ObjCAtCatchStmt (Results 1 - 15 of 15) sorted by null

  /external/clang/include/clang/AST/
StmtObjC.h 73 /// ObjCAtCatchStmt - This represents objective-c's @catch statement.
74 class ObjCAtCatchStmt : public Stmt {
81 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc,
87 explicit ObjCAtCatchStmt(EmptyShell Empty) :
116 static bool classof(const ObjCAtCatchStmt *) { return true; }
209 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const {
211 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
215 ObjCAtCatchStmt *getCatchStmt(unsigned I) {
217 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
221 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S)
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
StmtDumper.cpp 166 void VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node);
640 void StmtDumper::VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node) {
StmtPrinter.cpp 440 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I);
464 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) {
    [all...]
StmtProfile.cpp 217 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) {
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 184 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
CGObjCMac.cpp     [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 380 ObjCAtCatchStmt *AC = AT->getCatchStmt(I);
SemaStmt.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 348 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp 947 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
    [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]

Completed in 1797 milliseconds