Home
last modified time | relevance | path

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

12

/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.cpp805 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()
DCIndex.cpp2553 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/
DSourceLocationTest.cpp61 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/
DClangForward.h76 class LabelStmt; variable
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp113 LabelStmt = 1, enumerator
195 return PGOHash::LabelStmt; in getHashType()
326 void VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
DCGStmt.cpp249 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()
DCoverageMappingGen.cpp597 void VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
DCodeGenFunction.h61 class LabelStmt; variable
1957 void EmitLabelStmt(const LabelStmt &S);
/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/Sema/
DJumpDiagnostics.cpp393 else if (LabelStmt *LS = dyn_cast<LabelStmt>(SubStmt)) in BuildScopeInformation()
DSemaStmt.cpp185 if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S)) in DiagnoseUnusedExprResult()
460 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt); in ActOnLabelStmt()
DAnalysisBasedWarnings.cpp957 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
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()
DStmt.h787 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/
DCoreEngine.h467 return cast<LabelStmt>((*I)->getLabel())->getDecl(); in getLabel()
/external/v8/tools/gcmole/
Dgcmole.cc879 VISIT(LabelStmt); in VisitStmt()
905 IGNORE_STMT(LabelStmt);
/external/clang/lib/Analysis/
DCFG.cpp391 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/
DStmt.cpp140 if (const LabelStmt *LS = dyn_cast<LabelStmt>(S)) in stripLabelLikeStatements()
307 const char *LabelStmt::getName() const { in getName()
DASTDumper.cpp480 void VisitLabelStmt(const LabelStmt *Node);
1626 void ASTDumper::VisitLabelStmt(const LabelStmt *Node) { in VisitLabelStmt()
DStmtProfile.cpp106 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt()
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h917 InjectedClassNameType, LabelStmt, MemberExpr, QualType,
DASTMatchers.h1265 const internal::VariadicDynCastAllOfMatcher<Stmt, LabelStmt> labelStmt;

12