/external/clang/unittests/AST/ |
D | SourceLocationTest.cpp | 61 class LabelDeclRangeVerifier : public RangeVerifier<LabelStmt> { 63 virtual SourceRange getRange(const LabelStmt &Node) { in getRange() 74 TEST(LabelStmt, Range) { in TEST() argument 75 RangeVerifier<LabelStmt> Verifier; in TEST()
|
/external/clang/tools/libclang/ |
D | CXCursor.h | 32 class LabelStmt; variable 214 CXCursor MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc, 219 std::pair<const LabelStmt *, SourceLocation> getCursorLabelRef(CXCursor C);
|
D | CXCursor.cpp | 763 CXCursor cxcursor::MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc, in MakeCursorLabelRef() 772 std::pair<const LabelStmt *, SourceLocation> 775 return std::make_pair(static_cast<const LabelStmt *>(C.data[0]), in getCursorLabelRef()
|
D | CIndex.cpp | 2379 if (LabelStmt *stmt = LS->getStmt()) { in RunVisitorWorkList() 3422 const LabelStmt *Label = getCursorLabelRef(C).first; in clang_getCursorSpelling() 3481 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) in clang_getCursorSpelling() 3528 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) { in clang_Cursor_getSpellingNameRange() 4330 std::pair<const LabelStmt *, SourceLocation> P = getCursorLabelRef(C); in clang_getCursorLocation() 4625 if (LabelStmt *labelS = label->getStmt()) in clang_getCursorReferenced()
|
/external/lldb/include/lldb/Core/ |
D | ClangForward.h | 76 class LabelStmt; variable
|
/external/clang/lib/ARCMigrate/ |
D | TransProtectedScope.cpp | 89 while (Parent && (isa<SwitchCase>(Parent) || isa<LabelStmt>(Parent))) in getCaseParent()
|
D | Transforms.cpp | 299 while (LabelStmt *Label = dyn_cast<LabelStmt>(S)) in mark()
|
/external/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 234 LabelStmt = 1, enumerator 316 return PGOHash::LabelStmt; in getHashType() 447 void VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
|
D | CGStmt.cpp | 212 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break; in EmitSimpleStmt() 255 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) { in EmitCompoundStmtWithoutScope() 417 void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) { in EmitLabelStmt()
|
D | CodeGenFunction.h | 60 class LabelStmt; variable 1858 void EmitLabelStmt(const LabelStmt &S);
|
D | CodeGenFunction.cpp | 880 if (isa<LabelStmt>(S)) in ContainsLabel()
|
/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 362 else if (LabelStmt *LS = dyn_cast<LabelStmt>(SubStmt)) in BuildScopeInformation()
|
D | SemaStmt.cpp | 181 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) in DiagnoseUnusedExprResult() 424 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt); in ActOnLabelStmt()
|
D | AnalysisBasedWarnings.cpp | 962 const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel()); in checkFallThroughIntoBlock()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 14 def LabelStmt : Stmt;
|
/external/clang/include/clang/AST/ |
D | Decl.h | 38 class LabelStmt; variable 307 LabelStmt *TheStmt; 314 LabelStmt *S, SourceLocation StartL) in LabelDecl() 325 LabelStmt *getStmt() const { return TheStmt; } in getStmt() 326 void setStmt(LabelStmt *T) { TheStmt = T; } in setStmt()
|
D | Stmt.h | 781 class LabelStmt : public Stmt { 786 LabelStmt(SourceLocation IL, LabelDecl *D, Stmt *substmt) in LabelStmt() function 791 explicit LabelStmt(EmptyShell Empty) : Stmt(LabelStmtClass, Empty) { } in LabelStmt() function
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 114 if (const LabelStmt *LS = dyn_cast<LabelStmt>(S)) in stripLabelLikeStatements() 281 const char *LabelStmt::getName() const { in getName()
|
D | ASTDumper.cpp | 305 void VisitLabelStmt(const LabelStmt *Node); 1554 void ASTDumper::VisitLabelStmt(const LabelStmt *Node) { in VisitLabelStmt()
|
D | StmtProfile.cpp | 106 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CoreEngine.h | 472 return cast<LabelStmt>((*I)->getLabel())->getDecl(); in getLabel()
|
/external/chromium_org/v8/tools/gcmole/ |
D | gcmole.cc | 896 VISIT(LabelStmt); in VisitStmt() 922 IGNORE_STMT(LabelStmt);
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 385 CFGBlock *VisitLabelStmt(LabelStmt *L); 1426 return VisitLabelStmt(cast<LabelStmt>(S)); in Visit() 2173 CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { in VisitLabelStmt() 4177 if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) in print_block()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1037 const internal::VariadicDynCastAllOfMatcher<Stmt, LabelStmt> labelStmt;
|
D | ASTMatchersInternal.h | 855 TypeList<InjectedClassNameType, LabelStmt, MemberExpr>,
|