Searched defs:RQ (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DRegionPass.h85 std::deque<Region*> RQ; member in class:llvm::RGPassManager
/external/llvm/lib/Analysis/
H A DRegionPass.cpp39 // Recurse through all subregions and all regions into RQ.
40 static void addRegionIntoQueue(Region &R, std::deque<Region *> &RQ) { argument
41 RQ.push_back(&R);
43 addRegionIntoQueue(*E, RQ);
61 addRegionIntoQueue(*RI->getTopLevelRegion(), RQ);
63 if (RQ.empty()) // No regions, skip calling finalizers
67 for (std::deque<Region *>::const_iterator I = RQ.begin(), E = RQ.end();
77 while (!RQ.empty()) {
79 CurrentRegion = RQ
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c1230 enum CXRefQualifierKind RQ = clang_Type_getCXXRefQualifier(T); local
1239 if (RQ == CXRefQualifier_LValue)
1241 if (RQ == CXRefQualifier_RValue)

Completed in 176 milliseconds