Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaAttr.cpp1052 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributeAttribute()
1057 PragmaAttributeStack.back().Entries.push_back( in ActOnPragmaAttributeAttribute()
1063 PragmaAttributeStack.emplace_back(); in ActOnPragmaAttributeEmptyPush()
1064 PragmaAttributeStack.back().Loc = PragmaLoc; in ActOnPragmaAttributeEmptyPush()
1065 PragmaAttributeStack.back().Namespace = Namespace; in ActOnPragmaAttributeEmptyPush()
1070 if (PragmaAttributeStack.empty()) { in ActOnPragmaAttributePop()
1083 PragmaAttributeStack[Index].Entries) { in ActOnPragmaAttributePop()
1091 PragmaAttributeStack.erase(PragmaAttributeStack.begin() + Index); in ActOnPragmaAttributePop()
1104 if (PragmaAttributeStack.empty()) in AddPragmaAttributes()
1106 for (auto &Group : PragmaAttributeStack) { in AddPragmaAttributes()
[all …]
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h749 SmallVector<PragmaAttributeGroup, 2> PragmaAttributeStack; variable