Home
last modified time | relevance | path

Searched refs:ToLabel (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/AST/
DASTImporter.cpp2618 LabelDecl *ToLabel = D->isGnuLocal() in VisitLabelDecl() local
2626 Importer.Imported(D, ToLabel); in VisitLabelDecl()
2632 ToLabel->setStmt(Label); in VisitLabelDecl()
2633 ToLabel->setLexicalDeclContext(LexicalDC); in VisitLabelDecl()
2634 LexicalDC->addDeclInternal(ToLabel); in VisitLabelDecl()
2635 return ToLabel; in VisitLabelDecl()
5114 LabelDecl *ToLabel = nullptr; in VisitGotoStmt() local
5116 ToLabel = dyn_cast_or_null<LabelDecl>(Importer.Import(FromLabel)); in VisitGotoStmt()
5117 if (!ToLabel) in VisitGotoStmt()
5122 return new (Importer.getToContext()) GotoStmt(ToLabel, in VisitGotoStmt()
[all …]