/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 | 805 CXCursor cxcursor::MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc, in MakeCursorLabelRef() 814 std::pair<const LabelStmt *, SourceLocation> 817 return std::make_pair(static_cast<const LabelStmt *>(C.data[0]), in getCursorLabelRef()
|
D | CIndex.cpp | 2553 if (LabelStmt *stmt = LS->getStmt()) { in RunVisitorWorkList() 3609 const LabelStmt *Label = getCursorLabelRef(C).first; in clang_getCursorSpelling() 3668 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) in clang_getCursorSpelling() 3715 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) { in clang_Cursor_getSpellingNameRange() 4590 std::pair<const LabelStmt *, SourceLocation> P = getCursorLabelRef(C); in clang_getCursorLocation() 4885 if (LabelStmt *labelS = label->getStmt()) in clang_getCursorReferenced()
|
/external/clang/unittests/AST/ |
D | SourceLocationTest.cpp | 61 class LabelDeclRangeVerifier : public RangeVerifier<LabelStmt> { 63 SourceRange getRange(const LabelStmt &Node) override { in getRange() 74 TEST(LabelStmt, Range) { in TEST() argument 75 RangeVerifier<LabelStmt> Verifier; in TEST()
|
/external/lldb/include/lldb/Core/ |
D | ClangForward.h | 76 class LabelStmt; variable
|
/external/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 113 LabelStmt = 1, enumerator 195 return PGOHash::LabelStmt; in getHashType() 326 void VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
|
D | CGStmt.cpp | 249 case Stmt::LabelStmtClass: EmitLabelStmt(cast<LabelStmt>(*S)); break; in EmitSimpleStmt() 293 while (const LabelStmt *LS = dyn_cast<LabelStmt>(LastStmt)) { in EmitCompoundStmtWithoutScope() 455 void CodeGenFunction::EmitLabelStmt(const LabelStmt &S) { in EmitLabelStmt()
|
D | CoverageMappingGen.cpp | 597 void VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
|
D | CodeGenFunction.h | 61 class LabelStmt; variable 1957 void EmitLabelStmt(const LabelStmt &S);
|
/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/Sema/ |
D | JumpDiagnostics.cpp | 393 else if (LabelStmt *LS = dyn_cast<LabelStmt>(SubStmt)) in BuildScopeInformation()
|
D | SemaStmt.cpp | 185 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) in DiagnoseUnusedExprResult() 460 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt); in ActOnLabelStmt()
|
D | AnalysisBasedWarnings.cpp | 957 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 353 LabelStmt *TheStmt; 362 LabelStmt *S, SourceLocation StartL) in LabelDecl() 376 LabelStmt *getStmt() const { return TheStmt; } in getStmt() 377 void setStmt(LabelStmt *T) { TheStmt = T; } in setStmt()
|
D | Stmt.h | 787 class LabelStmt : public Stmt { 793 LabelStmt(SourceLocation IL, LabelDecl *D, Stmt *substmt) in LabelStmt() function 795 static_assert(sizeof(LabelStmt) == in LabelStmt() 801 explicit LabelStmt(EmptyShell Empty) : Stmt(LabelStmtClass, Empty) { } in LabelStmt() function
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CoreEngine.h | 467 return cast<LabelStmt>((*I)->getLabel())->getDecl(); in getLabel()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 879 VISIT(LabelStmt); in VisitStmt() 905 IGNORE_STMT(LabelStmt);
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 391 CFGBlock *VisitLabelStmt(LabelStmt *L); 1494 return VisitLabelStmt(cast<LabelStmt>(S)); in Visit() 2240 CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) { in VisitLabelStmt() 4257 if (LabelStmt *L = dyn_cast<LabelStmt>(Label)) in print_block()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 140 if (const LabelStmt *LS = dyn_cast<LabelStmt>(S)) in stripLabelLikeStatements() 307 const char *LabelStmt::getName() const { in getName()
|
D | ASTDumper.cpp | 480 void VisitLabelStmt(const LabelStmt *Node); 1626 void ASTDumper::VisitLabelStmt(const LabelStmt *Node) { in VisitLabelStmt()
|
D | StmtProfile.cpp | 106 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 917 InjectedClassNameType, LabelStmt, MemberExpr, QualType,
|
D | ASTMatchers.h | 1265 const internal::VariadicDynCastAllOfMatcher<Stmt, LabelStmt> labelStmt;
|