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

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h273 /// NumNodes - The number of nodes in the graph.
274 unsigned NumNodes; member in class:clang::ento::ExplodedGraph
323 bool empty() const { return NumNodes == 0; }
324 unsigned size() const { return NumNodes; }
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h121 /// NumNodes - Number of nodes in the folding set. Growth occurs when NumNodes
123 unsigned NumNodes; member in class:llvm::FoldingSetImpl
178 unsigned size() const { return NumNodes; }
181 bool empty() const { return NumNodes == 0; }
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp776 unsigned NumNodes = Sequence.size(); local
777 for (unsigned i = 0; i != NumNodes; ++i) {
778 SDNode *N = Sequence[NumNodes-i-1];

Completed in 1070 milliseconds