Home
last modified time | relevance | path

Searched refs:LabelStmt (Results 1 – 25 of 35) sorted by relevance

12

/external/clang/unittests/AST/
DSourceLocationTest.cpp61 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/
DCXCursor.h32 class LabelStmt; variable
214 CXCursor MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
219 std::pair<const LabelStmt *, SourceLocation> getCursorLabelRef(CXCursor C);
DCXCursor.cpp763 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()
DCIndex.cpp2379 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/
DClangForward.h76 class LabelStmt; variable
/external/clang/lib/ARCMigrate/
DTransProtectedScope.cpp89 while (Parent && (isa<SwitchCase>(Parent) || isa<LabelStmt>(Parent))) in getCaseParent()
DTransforms.cpp299 while (LabelStmt *Label = dyn_cast<LabelStmt>(S)) in mark()
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp234 LabelStmt = 1, enumerator
316 return PGOHash::LabelStmt; in getHashType()
447 void VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
DCGStmt.cpp212 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()
DCodeGenFunction.h60 class LabelStmt; variable
1858 void EmitLabelStmt(const LabelStmt &S);
DCodeGenFunction.cpp880 if (isa<LabelStmt>(S)) in ContainsLabel()
/external/clang/lib/Sema/
DJumpDiagnostics.cpp362 else if (LabelStmt *LS = dyn_cast<LabelStmt>(SubStmt)) in BuildScopeInformation()
DSemaStmt.cpp181 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) in DiagnoseUnusedExprResult()
424 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt); in ActOnLabelStmt()
DAnalysisBasedWarnings.cpp962 const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel()); in checkFallThroughIntoBlock()
/external/clang/include/clang/Basic/
DStmtNodes.td14 def LabelStmt : Stmt;
/external/clang/include/clang/AST/
DDecl.h38 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()
DStmt.h781 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/
DStmt.cpp114 if (const LabelStmt *LS = dyn_cast<LabelStmt>(S)) in stripLabelLikeStatements()
281 const char *LabelStmt::getName() const { in getName()
DASTDumper.cpp305 void VisitLabelStmt(const LabelStmt *Node);
1554 void ASTDumper::VisitLabelStmt(const LabelStmt *Node) { in VisitLabelStmt()
DStmtProfile.cpp106 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCoreEngine.h472 return cast<LabelStmt>((*I)->getLabel())->getDecl(); in getLabel()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc896 VISIT(LabelStmt); in VisitStmt()
922 IGNORE_STMT(LabelStmt);
/external/clang/lib/Analysis/
DCFG.cpp385 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/
DASTMatchers.h1037 const internal::VariadicDynCastAllOfMatcher<Stmt, LabelStmt> labelStmt;
DASTMatchersInternal.h855 TypeList<InjectedClassNameType, LabelStmt, MemberExpr>,

12