HomeSort by relevance Sort by last modified time
    Searched full:oldnode (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 186 /// Insert \c NewNode in the value map, and then remap \c OldNode's operands.
187 /// Assumes that \c NewNode is already a clone of \c OldNode.
189 /// \pre \c NewNode is a clone of \c OldNode.
190 static bool remap(const MDNode *OldNode, MDNode *NewNode,
194 assert(OldNode->getNumOperands() == NewNode->getNumOperands() &&
196 assert(OldNode->isResolved() && "Expected resolved node");
200 mapToMetadata(VM, OldNode, NewNode);
202 for (unsigned I = 0, E = OldNode->getNumOperands(); I != E; ++I) {
203 Metadata *Old = OldNode->getOperand(I);
207 Metadata *New = mapMetadataOp(OldNode->getOperand(I), Cycles, VM, Flags
    [all...]
BasicBlockUtils.cpp 295 if (DomTreeNode *OldNode = DT->getNode(Old)) {
297 for (DomTreeNode::iterator I = OldNode->begin(), E = OldNode->end();
721 if (DomTreeNode *OldNode = DT->getNode(Head)) {
722 std::vector<DomTreeNode *> Children(OldNode->begin(), OldNode->end());
    [all...]
CodeExtractor.cpp 273 DomTreeNode *OldNode = DT->getNode(*I);
275 for (DomTreeNode::iterator DI = OldNode->begin(), DE = OldNode->end();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
StringTrieBuilder.java 144 Node oldNode=nodes.get(newNode);
145 if(oldNode!=null) {
146 return oldNode;
150 oldNode=nodes.put(newNode, newNode);
151 assert(oldNode==null);
166 Node oldNode=nodes.get(lookupFinalValueNode);
167 if(oldNode!=null) {
168 return (ValueNode)oldNode;
173 oldNode=nodes.put(newNode, newNode);
174 assert(oldNode==null)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 182 * newNode will have its old links as well as all links from the oldNode.
183 * The oldNode has all its links removed.
186 * @param oldNode {@code non-null;} the EscapeSet to remove all links from
188 private void replaceNode(EscapeSet newNode, EscapeSet oldNode) {
189 for (EscapeSet e : oldNode.parentSets) {
190 e.childSets.remove(oldNode);
194 for (EscapeSet e : oldNode.childSets) {
195 e.parentSets.remove(oldNode);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
EscapeAnalysis.java 183 * newNode will have its old links as well as all links from the oldNode.
184 * The oldNode has all its links removed.
187 * @param oldNode {@code non-null;} the EscapeSet to remove all links from
189 private void replaceNode(EscapeSet newNode, EscapeSet oldNode) {
190 for (EscapeSet e : oldNode.parentSets) {
191 e.childSets.remove(oldNode);
195 for (EscapeSet e : oldNode.childSets) {
196 e.parentSets.remove(oldNode);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 543 int oldNode = vec.elementAt(index);
544 if (oldNode != node && m_cache.useCount() > 1) {
  /external/libxml2/
xmlreader.c 1086 xmlNodePtr oldnode = reader->node; local
1112 if (node == oldnode)
1289 xmlNodePtr oldnode = NULL; local
    [all...]
xpath.c 12972 xmlNodePtr oldnode; local
13620 xmlNodePtr oldnode; local
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 580 TreeTy* OldNode;
581 TreeTy* newRight = removeMinBinding(R,OldNode);
582 return balanceTree(L, getValue(OldNode), newRight);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 1428 milliseconds