Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaAttr.cpp625 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributeAttribute()
630 PragmaAttributeStack.back().Entries.push_back( in ActOnPragmaAttributeAttribute()
636 PragmaAttributeStack.emplace_back(); in ActOnPragmaAttributeEmptyPush()
637 PragmaAttributeStack.back().Loc = PragmaLoc; in ActOnPragmaAttributeEmptyPush()
638 PragmaAttributeStack.back().Namespace = Namespace; in ActOnPragmaAttributeEmptyPush()
643 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributePop()
656 PragmaAttributeStack[Index].Entries) { in ActOnPragmaAttributePop()
664 PragmaAttributeStack.erase(PragmaAttributeStack.begin() + Index); in ActOnPragmaAttributePop()
677 if (PragmaAttributeStack.empty()) in AddPragmaAttributes()
679 for (auto &Group : PragmaAttributeStack) { in AddPragmaAttributes()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h515 SmallVector<PragmaAttributeGroup, 2> PragmaAttributeStack; variable