HomeSort by relevance Sort by last modified time
    Searched refs:LabelStmt (Results 1 - 25 of 32) sorted by null

1 2

  /external/clang/unittests/AST/
SourceLocationTest.cpp 61 class LabelDeclRangeVerifier : public RangeVerifier<LabelStmt> {
63 virtual SourceRange getRange(const LabelStmt &Node) {
71 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
74 TEST(LabelStmt, Range) {
75 RangeVerifier<LabelStmt> Verifier;
77 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
  /external/clang/tools/libclang/
CXCursor.h 32 class LabelStmt;
214 CXCursor MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
219 std::pair<const LabelStmt *, SourceLocation> getCursorLabelRef(CXCursor C);
CXCursor.cpp 731 CXCursor cxcursor::MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
740 std::pair<const LabelStmt *, SourceLocation>
743 return std::make_pair(static_cast<const LabelStmt *>(C.data[0]),
    [all...]
CIndex.cpp     [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 89 while (Parent && (isa<SwitchCase>(Parent) || isa<LabelStmt>(Parent)))
Transforms.cpp 294 while (LabelStmt *Label = dyn_cast<LabelStmt>(S))
  /external/clang/lib/AST/
Stmt.cpp 119 if (const LabelStmt *LS = dyn_cast<LabelStmt>(S))
281 const char *LabelStmt::getName() const {
    [all...]
ASTDumper.cpp 250 void VisitLabelStmt(const LabelStmt *Node);
    [all...]
StmtPrinter.cpp 169 void StmtPrinter::VisitLabelStmt(LabelStmt *Node) {
    [all...]
StmtProfile.cpp 107 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 470 return cast<LabelStmt>((*I)->getLabel())->getDecl();