/external/llvm/test/Instrumentation/AddressSanitizer/X86/ |
D | lit.local.cfg | 3 def getRoot(config): 6 return getRoot(config.parent) 8 root = getRoot(config)
|
/external/llvm/test/MC/X86/ |
D | lit.local.cfg | 3 def getRoot(config): 6 return getRoot(config.parent) 8 root = getRoot(config)
|
/external/clang/utils/C++Tests/stdc++-Syntax/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/clang/lib/Rewrite/ |
D | RewriteRope.cpp | 715 static RopePieceBTreeNode *getRoot(void *P) { in getRoot() function 727 getRoot(Root)->Destroy(); in ~RopePieceBTree() 731 return getRoot(Root)->size(); in size() 735 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root))) in clear() 738 getRoot(Root)->Destroy(); in clear() 745 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() 746 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert() 749 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert() 750 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert() 755 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in erase() [all …]
|
D | DeltaTree.cpp | 386 static DeltaTreeNode *getRoot(void *Root) { in getRoot() function 395 assert(getRoot(RHS.Root)->getNumValuesUsed() == 0 && in DeltaTree() 401 getRoot(Root)->Destroy(); in ~DeltaTree() 408 const DeltaTreeNode *Node = getRoot(Root); in getDeltaAt() 456 DeltaTreeNode *MyRoot = getRoot(Root); in AddDelta()
|
/external/clang/utils/C++Tests/LLVM-Syntax/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/clang/utils/C++Tests/Clang-Syntax/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/clang/utils/C++Tests/Clang-Code-Syntax/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/clang/utils/C++Tests/Clang-Code-Compile/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/v8/test/mjsunit/tools/ |
D | profile.js | 156 assertNoPathExists(this.profile.getTopDownProfile().getRoot(), this.namesTopDown, 158 assertNoPathExists(this.profile.getBottomUpProfile().getRoot(), this.namesBottomUp, 161 assertPathExists(this.profile.getTopDownProfile().getRoot(), this.namesTopDown, 163 assertPathExists(this.profile.getBottomUpProfile().getRoot(), this.namesBottomUp, 217 var root = testDriver.profile.getTopDownProfile().getRoot(); 287 var flatProfileRoot = testDriver.profile.getFlatProfile().getRoot(); 315 var root = profile.getRoot();
|
/external/junit/src/org/junit/rules/ |
D | TemporaryFolder.java | 52 File file= new File(getRoot(), fileName); in newFile() 68 File file = getRoot(); in newFolder() 90 public File getRoot() { in getRoot() method in TemporaryFolder
|
/external/llvm/lib/Analysis/ |
D | PathNumbering.cpp | 243 dfsStack.push(getRoot()); in init() 250 addEdge(getExit(),getRoot(),0); in init() 281 if( node->getNumberPaths() > 100000000 && node != getRoot() ) { in calculatePathNumbers() 301 addEdge(getRoot(), (*succ)->getTarget(), duplicateNumber++); in calculatePathNumbers() 335 DEBUG(dbgs() << "\tNumber of paths: " << getRoot()->getNumberPaths() << "\n"); in calculatePathNumbers() 340 return(getRoot()->getNumberPaths()); in getNumberOfPaths() 344 BallLarusNode* BallLarusDag::getRoot() { in getRoot() function in BallLarusDag 513 childEdge->setPhonyRoot(addEdge(getRoot(), target,0)); in addBackedge()
|
D | PathProfileInfo.cpp | 139 BallLarusNode* currentNode = _ppi->_currentDag->getRoot (); in getPathEdges() 164 next->getSource() == _ppi->_currentDag->getRoot() ) in getPathEdges() 178 BallLarusNode* currentNode = _ppi->_currentDag->getRoot (); in getPathBlocks() 203 BallLarusNode* root = _ppi->_currentDag->getRoot(); in getFirstBlockInPath() 249 return _currentDag->getRoot()->getBlock(); in getCurrentFunctionEntry()
|
/external/clang/lib/CodeGen/ |
D | CodeGenTBAA.cpp | 37 llvm::MDNode *CodeGenTBAA::getRoot() { in getRoot() function in CodeGenTBAA 54 Char = MDHelper.createTBAANode("omnipotent char", getRoot()); in getChar() 162 return MDHelper.createTBAANode("vtable pointer", getRoot()); in getTBAAInfoForVTablePtr()
|
/external/clang/utils/C++Tests/LLVM-Code-Syntax/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/clang/utils/C++Tests/LLVM-Code-Compile/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/clang/utils/C++Tests/LLVM-Code-Symbols/ |
D | lit.local.cfg | 5 def getRoot(config): 8 return getRoot(config.parent) 10 root = getRoot(config)
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGPrinter.cpp | 130 if (G->getRoot().getNode()) in addCustomGraphFeatures() 131 GW.emitEdge(0, -1, G->getRoot().getNode(), G->getRoot().getResNo(), in addCustomGraphFeatures() 295 const SDNode *N = DAG->getRoot().getNode(); in getCustomGraphFeatures()
|
/external/llvm/include/llvm/ADT/ |
D | Trie.h | 196 inline Node* getRoot() const { return Nodes[0]; } in getRoot() function 206 Node* cNode = getRoot(); in addString() 244 Node* cNode = getRoot(); in lookup() 282 return T.getRoot(); 311 if (T.getRoot() == Node)
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNodeIterator.java | 137 public Node getRoot() in getRoot() method in DTMNodeIterator 139 int handle=dtm_iter.getRoot(); in getRoot()
|
/external/llvm/lib/Analysis/IPA/ |
D | CallGraph.cpp | 74 if (Function *F = getRoot()->getFunction()) in print() 77 OS << "<<null function: 0x" << getRoot() << ">>\n"; in print() 103 CallGraphNode *getRoot() { return Root; } in getRoot() function in __anon8574c1200111::BasicCallGraph 104 const CallGraphNode *getRoot() const { return Root; } in getRoot() function in __anon8574c1200111::BasicCallGraph
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BlockCounter.cpp | 80 BC.getNumVisited(CallSite, BlockID)+1).getRoot()); in IncrementCount() 85 return BlockCounter(GetFactory(F).getEmptyMap().getRoot()); in GetEmptyCounter()
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | ReverseAxesWalker.java | 140 clone.setRoot(this.getRoot()); in getProximityPosition() 203 clone.setRoot(this.getRoot()); in getLastPos()
|
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
D | JHdf.java | 185 Data root = data.getRoot(); in getRootObj() 196 return this.data.getRoot() == jHdf.data.getRoot(); in belongsToSameRoot()
|
/external/clang/include/clang/Analysis/ |
D | CallGraph.h | 87 CallGraphNode *getRoot() const { return Root; } in getRoot() function 207 return CGN->getRoot(); // Start at the external node! 232 return CGN->getRoot();
|