Lines Matching defs:objectList

1085         const auto &objectList{
1099 for (const auto &ompObj : objectList.v) {
1494 const auto &objectList{std::get<parser::OmpObjectList>(c.t)};
1495 CheckSymbolNames(dir.source, objectList);
1496 CheckIsVarPartOfAnotherVar(dir.source, objectList);
1497 CheckThreadprivateOrDeclareTargetVar(objectList);
1564 const auto &objectList{std::get<parser::OmpObjectList>(x.t)};
1570 CheckIsVarPartOfAnotherVar(dir.source, objectList);
1575 const auto &objectList{std::get<parser::OmpObjectList>(x.t)};
1576 CheckPredefinedAllocatorRestriction(dir.source, objectList);
1721 if (const auto *objectList{parser::Unwrap<parser::OmpObjectList>(spec.u)}) {
1723 CheckSymbolNames(dir.source, *objectList);
1724 CheckIsVarPartOfAnotherVar(dir.source, *objectList);
1725 CheckThreadprivateOrDeclareTargetVar(*objectList);
1824 const auto &objectList{std::get<std::optional<parser::OmpObjectList>>(x.t)};
1830 if (objectList) {
1831 CheckIsVarPartOfAnotherVar(dir.source, *objectList);
1837 const auto &objectList{std::get<std::optional<parser::OmpObjectList>>(x.t)};
1838 if (objectList)
1839 CheckPredefinedAllocatorRestriction(dir.source, *objectList);
4234 const auto &objectList{std::get<parser::OmpObjectList>(x.v.t)};
4236 GetContext().clauseSource, objectList, "LASTPRIVATE");
4237 CheckCrayPointee(objectList, "LASTPRIVATE");
4241 GetSymbolsInObjectList(objectList, currSymbols);
4664 const parser::OmpObjectList &objectList, llvm::StringRef clause,
4667 GetSymbolsInObjectList(objectList, symbols);
4684 const parser::OmpObjectList &objectList, SymbolSourceMap &symbols) {
4685 for (const auto &ompObject : objectList.v) {