Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp923 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributeAttribute()
928 PragmaAttributeStack.back().Entries.push_back( in ActOnPragmaAttributeAttribute()
934 PragmaAttributeStack.emplace_back(); in ActOnPragmaAttributeEmptyPush()
935 PragmaAttributeStack.back().Loc = PragmaLoc; in ActOnPragmaAttributeEmptyPush()
936 PragmaAttributeStack.back().Namespace = Namespace; in ActOnPragmaAttributeEmptyPush()
941 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributePop()
954 PragmaAttributeStack[Index].Entries) { in ActOnPragmaAttributePop()
962 PragmaAttributeStack.erase(PragmaAttributeStack.begin() + Index); in ActOnPragmaAttributePop()
975 if (PragmaAttributeStack.empty()) in AddPragmaAttributes()
977 for (auto &Group : PragmaAttributeStack) { in AddPragmaAttributes()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h748 SmallVector<PragmaAttributeGroup, 2> PragmaAttributeStack; variable