HomeSort by: relevance | last modified time | path
    Searched defs:VInfo (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
GenericDomTreeConstruction.h 242 InfoRec *VInfo = &NodeToInfo[V];
243 if (VInfo->Parent < LastLinked)
244 return VInfo->Label;
249 Stack.push_back(VInfo);
250 VInfo = &NodeToInfo[NumToNode[VInfo->Parent]];
251 } while (VInfo->Parent >= LastLinked);
255 const InfoRec *PInfo = VInfo;
258 VInfo = Stack.pop_back_val();
259 VInfo->Parent = PInfo->Parent
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 2542 Optional<std::pair<SVal, QualType>> VInfo;
2559 VInfo = std::make_pair(state->getLValue(FD, CXXThisVal), FD->getType());
2563 if (!VInfo)
2564 VInfo = std::make_pair(state->getLValue(VD, LocCtxt), VD->getType());
2566 SVal V = VInfo->first;
2567 bool IsReference = VInfo->second->isReferenceType();

Completed in 34 milliseconds