Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp1046 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributeAttribute()
1051 PragmaAttributeStack.back().Entries.push_back( in ActOnPragmaAttributeAttribute()
1057 PragmaAttributeStack.emplace_back(); in ActOnPragmaAttributeEmptyPush()
1058 PragmaAttributeStack.back().Loc = PragmaLoc; in ActOnPragmaAttributeEmptyPush()
1059 PragmaAttributeStack.back().Namespace = Namespace; in ActOnPragmaAttributeEmptyPush()
1064 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributePop()
1077 PragmaAttributeStack[Index].Entries) { in ActOnPragmaAttributePop()
1085 PragmaAttributeStack.erase(PragmaAttributeStack.begin() + Index); in ActOnPragmaAttributePop()
1098 if (PragmaAttributeStack.empty()) in AddPragmaAttributes()
1100 for (auto &Group : PragmaAttributeStack) { in AddPragmaAttributes()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h777 SmallVector<PragmaAttributeGroup, 2> PragmaAttributeStack; variable