Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOpenMP.cpp87 LoopControlVariablesMapTy LCVMap; member
534 Stack.back().LCVMap.insert( in addLoopControlVariable()
535 std::make_pair(D, LCDeclInfo(Stack.back().LCVMap.size() + 1, Capture))); in addLoopControlVariable()
541 return Stack.back().LCVMap.count(D) > 0 ? Stack.back().LCVMap[D] in isLoopControlVariable()
548 return Stack[Stack.size() - 2].LCVMap.count(D) > 0 in isParentLoopControlVariable()
549 ? Stack[Stack.size() - 2].LCVMap[D] in isParentLoopControlVariable()
555 if (Stack[Stack.size() - 2].LCVMap.size() < I) in getParentLoopControlVariable()
557 for (auto &Pair : Stack[Stack.size() - 2].LCVMap) { in getParentLoopControlVariable()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp155 LoopControlVariablesMapTy LCVMap; member
1305 StackElem.LCVMap.try_emplace( in addLoopControlVariable()
1306 D, LCDeclInfo(StackElem.LCVMap.size() + 1, Capture)); in addLoopControlVariable()
1314 auto It = StackElem.LCVMap.find(D); in isLoopControlVariable()
1315 if (It != StackElem.LCVMap.end()) in isLoopControlVariable()
1326 auto It = StackElem.LCVMap.find(D); in isLoopControlVariable()
1327 if (It != StackElem.LCVMap.end()) in isLoopControlVariable()
1338 auto It = Parent->LCVMap.find(D); in isParentLoopControlVariable()
1339 if (It != Parent->LCVMap.end()) in isParentLoopControlVariable()
1347 if (Parent->LCVMap.size() < I) in getParentLoopControlVariable()
[all …]