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

  /external/clang/include/clang/AST/
StmtObjC.h 72 /// ObjCAtCatchStmt - This represents objective-c's @catch statement.
73 class ObjCAtCatchStmt : public Stmt {
80 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc,
86 explicit ObjCAtCatchStmt(EmptyShell Empty) :
115 static bool classof(const ObjCAtCatchStmt *) { return true; }
208 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const {
210 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
214 ObjCAtCatchStmt *getCatchStmt(unsigned I) {
216 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
220 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S)
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
StmtDumper.cpp 164 void VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node);
621 void StmtDumper::VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node) {
StmtPrinter.cpp 407 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I);
431 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) {
    [all...]
StmtProfile.cpp 201 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 379 ObjCAtCatchStmt *AC = AT->getCatchStmt(I);
SemaStmt.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 914 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
941 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Reader.ReadSubStmt()));
    [all...]
ASTWriterStmt.cpp 879 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 341 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]

Completed in 289 milliseconds