Home
last modified time | relevance | path

Searched refs:lastNode (Results 1 – 14 of 14) sorted by relevance

/external/jsoncpp/src/test_lib_json/
Djsontest.cpp91 PredicateContext* lastNode = rootPredicateNode_.next_; in addFailure() local
92 for (; lastNode != 0; lastNode = lastNode->next_) { in addFailure()
93 if (lastNode->id_ > lastUsedPredicateId_) // new PredicateContext in addFailure()
95 lastUsedPredicateId_ = lastNode->id_; in addFailure()
97 lastNode->file_, lastNode->line_, lastNode->expr_, nestingLevel); in addFailure()
100 lastNode->failure_ = &(failures_.back()); in addFailure()
126 PredicateContext* lastNode = &rootPredicateNode_; in popPredicateContext() local
127 while (lastNode->next_ != 0 && lastNode->next_->next_ != 0) { in popPredicateContext()
128 lastNode = lastNode->next_; in popPredicateContext()
131 PredicateContext* tail = lastNode->next_; in popPredicateContext()
[all …]
/external/libdrm/amdgpu/
Dutil_hash.c154 struct util_node *lastNode = firstNode; in util_data_rehash() local
158 while (lastNode->next != e && lastNode->next->key == h) in util_data_rehash()
159 lastNode = lastNode->next; in util_data_rehash()
161 afterLastNode = lastNode->next; in util_data_rehash()
165 lastNode->next = *beforeFirstNode; in util_data_rehash()
/external/mesa3d/src/gallium/auxiliary/cso_cache/
Dcso_hash.c144 struct cso_node *lastNode = firstNode; in cso_data_rehash() local
148 while (lastNode->next != e && lastNode->next->key == h) in cso_data_rehash()
149 lastNode = lastNode->next; in cso_data_rehash()
151 afterLastNode = lastNode->next; in cso_data_rehash()
155 lastNode->next = *beforeFirstNode; in cso_data_rehash()
/external/virglrenderer/src/gallium/auxiliary/cso_cache/
Dcso_hash.c155 struct cso_node *lastNode = firstNode; in cso_data_rehash() local
159 while (lastNode->next != e && lastNode->next->key == h) in cso_data_rehash()
160 lastNode = lastNode->next; in cso_data_rehash()
162 afterLastNode = lastNode->next; in cso_data_rehash()
166 lastNode->next = *beforeFirstNode; in cso_data_rehash()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessagePatternUtil.java101 MessageContentsNode lastNode = list.get(list.size() - 1); in addContentsNode() local
102 if (lastNode instanceof TextNode) { in addContentsNode()
103 TextNode textNode = (TextNode)lastNode; in addContentsNode()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessagePatternUtil.java104 MessageContentsNode lastNode = list.get(list.size() - 1); in addContentsNode() local
105 if (lastNode instanceof TextNode) { in addContentsNode()
106 TextNode textNode = (TextNode)lastNode; in addContentsNode()
/external/cldr/tools/java/org/unicode/cldr/tool/
DSubdivisionNode.java329 SubdivisionNode lastNode = null; in SubdivisionSet() local
399 lastNode = addNode(null, value); in SubdivisionSet()
401 lastNode = addNode(lastNode, value); in SubdivisionSet()
/external/epid-sdk/doc/html/
Dnavtree.js179 function newNode(o, po, text, link, childrenData, lastNode) argument
186 node.isLast = lastNode;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2DTM.java2039 int lastNode = m_previous; in endElement() local
2044 if (DTM.NULL == lastNode) in endElement()
2047 m_nextsib.setElementAt(DTM.NULL,lastNode); in endElement()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DTreeMultiset.java374 @Nullable private AvlNode<E> lastNode() {
441 AvlNode<E> current = lastNode();
/external/libxml2/include/libxml/
DparserInternals.h598 xmlNodePtr lastNode);
/external/guava/guava/src/com/google/common/collect/
DTreeMultiset.java378 @Nullable private AvlNode<E> lastNode() {
445 AvlNode<E> current = lastNode();
/external/libxml2/os400/libxmlrpg/
DparserInternals.rpgle540 * @lastNode: the last nod in the chunk
/external/libxml2/
Dparser.c289 xmlNodePtr lastNode);
14663 xmlNodePtr lastNode) in xmlAddEntityReference() argument
14666 (*xmlEntityRefFunc) (ent, firstNode, lastNode); in xmlAddEntityReference()