Searched refs:node (Results 401 - 425 of 3060) sorted by relevance

<<11121314151617181920>>

/external/skia/src/core/
H A DSkTLList.h55 Node* node = iter.init(fList, Iter::kHead_IterStart); local
56 while (NULL != node) {
57 SkTCast<T*>(node->fObj)->~T();
58 Block* block = node->fBlock;
59 node = iter.next();
71 Node* node = this->createNode(); local
72 fList.addToHead(node);
73 SkNEW_PLACEMENT_ARGS(node->fObj, T, (t));
75 return reinterpret_cast<T*>(node->fObj);
80 Node* node local
89 Node* node = this->createNode(); local
98 Node* node = this->createNode(); local
128 Node* node = fList.head(); local
137 Node* node = fList.head(); local
146 Node* node = reinterpret_cast<Node*>(t); local
221 nodeToObj(Node* node) argument
245 Node* node = fFreeList.head(); local
265 removeNode(Node* node) argument
346 Node* node = this->createNode(); local
354 Node* node = this->createNode(); local
[all...]
/external/libxml2/
H A Dxmlreader.c2 * xmlreader.c: implements the xmlTextReader streaming node API
135 xmlNodePtr node; /* current node */ member in struct:_xmlTextReader
136 xmlNodePtr curnode;/* current attribute node */
137 int depth; /* depth of the current node */
159 xmlNodePtr rngFullNode; /* the node if RNG not progressive */
277 * @cur: the node
279 * Free a node.
333 * @cur: the first node in the list
335 * Free a node an
931 xmlNodePtr node = reader->node; local
1022 xmlNodePtr node = reader->node; local
1074 xmlNodePtr node = reader->node; local
1226 xmlTextReaderCollectSiblings(xmlNodePtr node) argument
1564 xmlNodePtr node = reader->node; local
1689 xmlNodePtr node, cur_node; local
1735 xmlNodePtr node; local
1778 xmlNodePtr node; local
2720 xmlNodePtr node; local
2948 xmlNodePtr node; local
2991 xmlNodePtr node; local
3093 xmlNodePtr node; local
3124 xmlNodePtr node; local
3155 xmlNodePtr node; local
3231 xmlNodePtr node; local
3299 xmlNodePtr node; local
3331 xmlNodePtr node; local
3363 xmlNodePtr node; local
3391 xmlNodePtr node; local
3482 xmlNodePtr node; local
3509 xmlNodePtr node; local
3544 xmlNodePtr node; local
3590 xmlNodePtr node; local
4612 xmlNodePtr node; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A DAPIspec.py43 node = self.spec_node.children
44 while node:
45 if node.type == "element":
46 if node.name == "template":
47 self.tmpl_nodes[node.prop("name")] = node
48 elif node.name == "api":
49 self.api_nodes[node.prop("name")] = node
51 raise SpecError("unexpected node
[all...]
/external/mesa3d/src/mesa/main/
H A DAPIspec.py43 node = self.spec_node.children
44 while node:
45 if node.type == "element":
46 if node.name == "template":
47 self.tmpl_nodes[node.prop("name")] = node
48 elif node.name == "api":
49 self.api_nodes[node.prop("name")] = node
51 raise SpecError("unexpected node
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dxmlreader.c2 * xmlreader.c: implements the xmlTextReader streaming node API
133 xmlNodePtr node; /* current node */ member in struct:_xmlTextReader
134 xmlNodePtr curnode;/* current attribute node */
135 int depth; /* depth of the current node */
156 xmlNodePtr rngFullNode; /* the node if RNG not progressive */
274 * @cur: the node
276 * Free a node.
330 * @cur: the first node in the list
332 * Free a node an
915 xmlNodePtr node = reader->node; local
1006 xmlNodePtr node = reader->node; local
1058 xmlNodePtr node = reader->node; local
1210 xmlTextReaderCollectSiblings(xmlNodePtr node) argument
1547 xmlNodePtr node = reader->node; local
1672 xmlNodePtr node, cur_node; local
1718 xmlNodePtr node; local
1757 xmlNodePtr node; local
2697 xmlNodePtr node; local
2925 xmlNodePtr node; local
2968 xmlNodePtr node; local
3070 xmlNodePtr node; local
3101 xmlNodePtr node; local
3132 xmlNodePtr node; local
3208 xmlNodePtr node; local
3276 xmlNodePtr node; local
3308 xmlNodePtr node; local
3340 xmlNodePtr node; local
3368 xmlNodePtr node; local
3459 xmlNodePtr node; local
3486 xmlNodePtr node; local
3521 xmlNodePtr node; local
3567 xmlNodePtr node; local
4459 xmlNodePtr node; local
[all...]
H A Dcheck-xsddata-test-suite.py56 def handle_valid(node, schema):
61 instance = node.prop("dtd")
64 child = node.children
84 print "instance line %d" % (node.lineNo())
96 nb_instances_tests, node.lineNo())
109 def handle_invalid(node, schema):
114 instance = node.prop("dtd")
117 child = node.children
137 print "instance line %d" % (node.lineNo())
150 # nb_instances_tests, node
[all...]
H A Dcheck-relaxng-test-suite2.py57 def handle_valid(node, schema):
62 instance = node.prop("dtd")
65 child = node.children
85 print "instance line %d" % (node.lineNo())
97 # nb_instances_tests, node.lineNo())
110 def handle_invalid(node, schema):
115 instance = node.prop("dtd")
118 child = node.children
138 print "instance line %d" % (node.lineNo())
152 # nb_instances_tests, node
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_namespace.py67 def AddNode(self, node):
68 name = node.GetName()
71 print "Adding to namespace: %s" % node
72 return verlist.AddNode(node)
119 def DumpFailure(namespace, node, msg):
122 print 'Failure: %s %s' % (node, msg)
123 for warn in node.warns:
125 for err in node.errors:
133 def AddOkay(namespace, node):
134 okay = namespace.AddNode(node)
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dvalue-helper.h11 #include "src/compiler/node.h"
12 #include "src/compiler/node-matchers.h"
30 void CheckFloat64Constant(double expected, Node* node) { argument
31 CHECK_EQ(IrOpcode::kFloat64Constant, node->opcode());
32 CHECK_EQ(expected, OpParameter<double>(node));
35 void CheckNumberConstant(double expected, Node* node) { argument
36 CHECK_EQ(IrOpcode::kNumberConstant, node->opcode());
37 CHECK_EQ(expected, OpParameter<double>(node));
40 void CheckInt32Constant(int32_t expected, Node* node) { argument
41 CHECK_EQ(IrOpcode::kInt32Constant, node
45 CheckUint32Constant(int32_t expected, Node* node) argument
50 CheckHeapConstant(Object* expected, Node* node) argument
55 CheckTrue(Node* node) argument
59 CheckFalse(Node* node) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeNodeStream.cs39 * Debug any tree node stream. The constructor accepts the stream
40 * and a debug listener. As node stream calls come in, debug events
91 * It is normally this object that instructs the node stream to
109 object node = input.LT(1);
111 dbg.ConsumeNode(node);
121 object node = input.LT(i);
122 int ID = adaptor.GetUniqueID(node);
123 string text = adaptor.GetText(node);
124 int type = adaptor.GetType(node);
125 dbg.LT(i, node);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeNodeStream.cs40 * Debug any tree node stream. The constructor accepts the stream
41 * and a debug listener. As node stream calls come in, debug events
105 * It is normally this object that instructs the node stream to
127 object node = input.LT( 1 );
129 dbg.ConsumeNode( node );
142 object node = input.LT( i );
143 int ID = adaptor.GetUniqueID( node );
144 string text = adaptor.GetText( node );
145 int type = adaptor.GetType( node );
146 dbg.LT( i, node );
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeNodeStream.java34 /** Debug any tree node stream. The constructor accepts the stream
35 * and a debug listener. As node stream calls come in, debug events
65 Object node = input.LT(1);
67 dbg.consumeNode(node);
75 Object node = input.LT(i);
76 int ID = adaptor.getUniqueID(node);
77 String text = adaptor.getText(node);
78 int type = adaptor.getType(node);
79 dbg.LT(i, node);
80 return node;
[all...]
/external/chromium_org/sync/test/engine/
H A Dtest_syncable_utils.cc72 syncable::MutableEntry node(trans,
77 DCHECK(node.good());
78 node.PutUniqueServerTag(tag_name);
79 node.PutIsDir(true);
80 node.PutServerIsDir(false);
81 node.PutIsUnsynced(false);
82 node.PutIsUnappliedUpdate(false);
83 node.PutServerVersion(20);
84 node.PutBaseVersion(20);
85 node
[all...]
/external/chromium_org/v8/src/compiler/
H A Dtyper.cc7 #include "src/compiler/node.h"
8 #include "src/compiler/node-properties-inl.h"
9 #include "src/compiler/node-properties.h"
70 Bounds TypeNode(Node* node) { argument
71 switch (node->opcode()) {
72 #define DECLARE_CASE(x) case IrOpcode::k##x: return Type##x(node);
90 #define DECLARE_METHOD(x) inline Bounds Type##x(Node* node);
95 Bounds OperandType(Node* node, int i) { argument
96 return NodeProperties::GetBounds(NodeProperties::GetValueInput(node, i));
99 Type* ContextType(Node* node) { argument
124 Post(Node* node) argument
151 Pre(Node* node) argument
165 Post(Node* node) argument
176 Pre(Node* node) argument
191 Post(Node* node) argument
219 Init(Node* node) argument
233 TypeStart(Node* node) argument
240 TypeParameter(Node* node) argument
245 TypeInt32Constant(Node* node) argument
251 TypeInt64Constant(Node* node) argument
258 TypeFloat32Constant(Node* node) argument
264 TypeFloat64Constant(Node* node) argument
270 TypeNumberConstant(Node* node) argument
276 TypeHeapConstant(Node* node) argument
281 TypeExternalConstant(Node* node) argument
286 TypePhi(Node* node) argument
296 TypeEffectPhi(Node* node) argument
302 TypeControlEffect(Node* node) argument
308 TypeValueEffect(Node* node) argument
314 TypeFinish(Node* node) argument
319 TypeFrameState(Node* node) argument
325 TypeStateValues(Node* node) argument
330 TypeCall(Node* node) argument
335 TypeProjection(Node* node) argument
353 TypeJSBitwiseOr(Node* node) argument
363 TypeJSBitwiseAnd(Node* node) argument
373 TypeJSBitwiseXor(Node* node) argument
378 TypeJSShiftLeft(Node* node) argument
383 TypeJSShiftRight(Node* node) argument
388 TypeJSShiftRightLogical(Node* node) argument
395 TypeJSAdd(Node* node) argument
416 TypeJSSubtract(Node* node) argument
421 TypeJSMultiply(Node* node) argument
426 TypeJSDivide(Node* node) argument
431 TypeJSModulus(Node* node) argument
438 TypeJSUnaryNot(Node* node) argument
443 TypeJSTypeOf(Node* node) argument
450 TypeJSToBoolean(Node* node) argument
455 TypeJSToNumber(Node* node) argument
460 TypeJSToString(Node* node) argument
465 TypeJSToName(Node* node) argument
470 TypeJSToObject(Node* node) argument
477 TypeJSCreate(Node* node) argument
482 TypeJSLoadProperty(Node* node) argument
499 TypeJSLoadNamed(Node* node) argument
504 TypeJSStoreProperty(Node* node) argument
510 TypeJSStoreNamed(Node* node) argument
516 TypeJSDeleteProperty(Node* node) argument
521 TypeJSHasProperty(Node* node) argument
526 TypeJSInstanceOf(Node* node) argument
533 TypeJSLoadContext(Node* node) argument
571 TypeJSStoreContext(Node* node) argument
577 TypeJSCreateFunctionContext(Node* node) argument
583 TypeJSCreateCatchContext(Node* node) argument
589 TypeJSCreateWithContext(Node* node) argument
595 TypeJSCreateBlockContext(Node* node) argument
601 TypeJSCreateModuleContext(Node* node) argument
608 TypeJSCreateGlobalContext(Node* node) argument
616 TypeJSYield(Node* node) argument
621 TypeJSCallConstruct(Node* node) argument
626 TypeJSCallFunction(Node* node) argument
636 TypeJSCallRuntime(Node* node) argument
641 TypeJSDebugger(Node* node) argument
648 TypeBooleanNot(Node* node) argument
653 TypeBooleanToNumber(Node* node) argument
658 TypeNumberEqual(Node* node) argument
663 TypeNumberLessThan(Node* node) argument
668 TypeNumberLessThanOrEqual(Node* node) argument
673 TypeNumberAdd(Node* node) argument
678 TypeNumberSubtract(Node* node) argument
683 TypeNumberMultiply(Node* node) argument
688 TypeNumberDivide(Node* node) argument
693 TypeNumberModulus(Node* node) argument
698 TypeNumberToInt32(Node* node) argument
707 TypeNumberToUint32(Node* node) argument
716 TypeReferenceEqual(Node* node) argument
721 TypeStringEqual(Node* node) argument
726 TypeStringLessThan(Node* node) argument
731 TypeStringLessThanOrEqual(Node* node) argument
736 TypeStringAdd(Node* node) argument
741 TypeChangeTaggedToInt32(Node* node) argument
747 TypeChangeTaggedToUint32(Node* node) argument
752 TypeChangeTaggedToFloat64(Node* node) argument
758 TypeChangeInt32ToTagged(Node* node) argument
764 TypeChangeUint32ToTagged(Node* node) argument
770 TypeChangeFloat64ToTagged(Node* node) argument
776 TypeChangeBoolToBit(Node* node) argument
782 TypeChangeBitToBool(Node* node) argument
788 TypeLoadField(Node* node) argument
793 TypeLoadElement(Node* node) argument
798 TypeStoreField(Node* node) argument
804 TypeStoreElement(Node* node) argument
889 Decorate(Node* node) argument
[all...]
/external/fio/lib/
H A Dprio_tree.c43 static void get_index(const struct prio_tree_node *node, argument
46 *radix = node->start;
47 *heap = node->last;
70 * Extend a priority search tree so that it can store a node with heap_index
76 struct prio_tree_node *node, unsigned long max_heap_index)
104 INIT_PRIO_TREE_NODE(node);
107 node->left = first;
108 first->parent = node;
110 last = node;
117 root->prio_tree_node = node;
75 prio_tree_expand(struct prio_tree_root *root, struct prio_tree_node *node, unsigned long max_heap_index) argument
124 prio_tree_replace(struct prio_tree_root *root, struct prio_tree_node *old, struct prio_tree_node *node) argument
168 prio_tree_insert(struct prio_tree_root *root, struct prio_tree_node *node) argument
245 prio_tree_remove(struct prio_tree_root *root, struct prio_tree_node *node) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGGlyphMap.h67 RefPtr<GlyphMapNode> node; local
70 node = findOrCreateNode(textIterator);
73 node = findOrCreateNode(textIterator);
75 if (!node)
79 node->glyphs.append(glyph);
80 SVGGlyph& lastGlyph = node->glyphs.last();
132 RefPtr<GlyphMapNode> node;
135 node = findNode(textIterator);
138 node = findNode(textIterator);
141 if (node)
192 RefPtr<GlyphMapNode> node; local
213 RefPtr<GlyphMapNode> node; local
235 RefPtr<GlyphMapNode> node = currentLayer->get(character); local
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_model.cc34 std::string DataForMetaInfoField(const BookmarkNode* node, argument
37 if (!node->GetMetaInfo(field, &value))
65 // Generate a random remote id, with a prefix that depends on whether the node
115 // Moves |node| to |new_parent| and inserts it at the given |index|.
116 void EnhancedBookmarkModel::Move(const BookmarkNode* node, argument
119 bookmark_model_->Move(node, new_parent, index);
122 // Adds a new folder node at the specified position.
143 std::string EnhancedBookmarkModel::GetRemoteId(const BookmarkNode* node) { argument
144 if (node == bookmark_model_->bookmark_bar_node())
148 if (!node
161 SetDescription(const BookmarkNode* node, const std::string& description) argument
166 GetDescription(const BookmarkNode* node) argument
176 SetOriginalImage(const BookmarkNode* node, const GURL& url, int width, int height) argument
212 GetOriginalImage(const BookmarkNode* node, GURL* url, int* width, int* height) argument
231 GetThumbnailImage(const BookmarkNode* node, GURL* url, int* width, int* height) argument
250 GetSnippet(const BookmarkNode* node) argument
281 const BookmarkNode* node = parent->GetChild(index); local
288 BookmarkNodeRemoved( BookmarkModel* model, const BookmarkNode* parent, int old_index, const BookmarkNode* node, const std::set<GURL>& removed_urls) argument
300 OnWillChangeBookmarkMetaInfo( BookmarkModel* model, const BookmarkNode* node) argument
306 BookmarkMetaInfoChanged(BookmarkModel* model, const BookmarkNode* node) argument
342 AddToIdMap(const BookmarkNode* node) argument
379 SetMetaInfo(const BookmarkNode* node, const std::string& field, const std::string& value) argument
405 SetMultipleMetaInfo( const BookmarkNode* node, BookmarkNode::MetaInfoMap meta_info) argument
436 SetAllImages(const BookmarkNode* node, const GURL& image_url, int image_width, int image_height, const GURL& thumbnail_url, int thumbnail_width, int thumbnail_height) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8GCController.cpp60 static void addReferencesForNodeWithEventListeners(v8::Isolate* isolate, Node* node, const v8::Persistent<v8::Object>& wrapper) argument
62 ASSERT(node->hasEventListeners());
64 EventListenerIterator iterator(node);
76 Node* V8GCController::opaqueRootForGC(Node* node, v8::Isolate*) argument
78 ASSERT(node);
83 if (node->inDocument() || (isHTMLImageElement(*node) && toHTMLImageElement(*node).hasPendingActivity())) {
84 Document& document = node->document();
90 if (node
134 Node* node = V8Node::toImpl(*wrapper); variable
163 Node* node = m_nodesInNewSpace[i]; local
224 Node* node = startNode; local
277 Node* node = V8Node::toImpl(*wrapper); variable
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree_util.tcl53 # Return the contents of rtree node $iNode.
60 set node [db one $sql]
62 set nCell [llength $node]
66 set newval [format "%.${iPrec}f" [lindex $node $ii $jj]]
67 lset node $ii $jj $newval
70 set node
85 # Check each r-tree node.
112 set node [rtree_node $db $zTab $iNode]
113 if {$iNode!=1 && [llength $node]==0} { error "No such node
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DVariableTranslator.java23 import com.google.clearsilver.jsilver.syntax.node.ADecNumberVariable;
24 import com.google.clearsilver.jsilver.syntax.node.ADescendVariable;
25 import com.google.clearsilver.jsilver.syntax.node.AExpandVariable;
26 import com.google.clearsilver.jsilver.syntax.node.AHexNumberVariable;
27 import com.google.clearsilver.jsilver.syntax.node.ANameVariable;
28 import com.google.clearsilver.jsilver.syntax.node.PVariable;
55 * @param csVariable Variable node in template's AST.
72 public void caseANameVariable(ANameVariable node) { argument
73 components.add(new StringExpression(node.getWord().getText()));
77 public void caseADecNumberVariable(ADecNumberVariable node) { argument
82 caseAHexNumberVariable(AHexNumberVariable node) argument
87 caseADescendVariable(ADescendVariable node) argument
93 caseAExpandVariable(AExpandVariable node) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.cpp159 Node* node = result.innerPossiblyPseudoNode(); local
160 while (node && node->nodeType() == Node::TEXT_NODE)
161 node = node->parentNode();
162 return node;
343 int InspectorDOMAgent::bind(Node* node, NodeToIdMap* nodesMap) argument
345 int id = nodesMap->get(node);
349 nodesMap->set(node, id);
350 m_idToNode.set(id, node);
355 unbind(Node* node, NodeToIdMap* nodesMap) argument
409 Node* node = nodeForId(nodeId); local
419 Node* node = assertNode(errorString, nodeId); local
432 Node* node = assertNode(errorString, nodeId); local
443 userAgentShadowRoot(Node* node) argument
459 Node* node = assertNode(errorString, nodeId); local
484 Node* node = assertEditableNode(errorString, nodeId); local
570 Node* node = nodeForId(nodeId); local
642 Node* node = assertNode(errorString, nodeId); local
659 Node* node = assertNode(errorString, nodeId); local
722 boundNodeId(Node* node) argument
793 Node* node = assertEditableNode(errorString, nodeId); local
842 Node* node = assertNode(errorString, nodeId); local
858 Node* node = assertEditableNode(errorString, nodeId); local
886 Node* node = assertEditableNode(errorString, nodeId); local
901 Node* node = assertNode(errorString, nodeId); local
943 Node* node = target->toNode(); local
985 const Node* node = &current; local
1038 Node* node = documentElement; local
1097 Node* node = result->snapshotItem(i, exceptionState); local
1319 Node* node = 0; local
1364 Node* node = assertEditableNode(errorString, nodeId); local
1393 Node* node = assertEditableNode(errorString, nodeId); local
1458 Node* node = assertNode(errorString, nodeId); local
1480 Node* node = assertNode(errorString, nodeId); local
1497 Node* node = result.innerPossiblyPseudoNode(); local
1510 Node* node = nodeForId(nodeId); local
1535 Node* node = injectedScript.nodeForObjectId(objectId); local
1567 buildObjectForNode(Node* node, int depth, NodeToIdMap* nodesMap) argument
1722 buildObjectForEventListener(const RegisteredEventListener& registeredEventListener, const AtomicString& eventType, Node* node, const String* objectGroupId) argument
1778 innerFirstChild(Node* node) argument
1786 innerNextSibling(Node* node) argument
1794 innerPreviousSibling(Node* node) argument
1802 innerChildNodeCount(Node* node) argument
1813 innerParentNode(Node* node) argument
1824 isWhitespace(Node* node) argument
1878 didInsertDOMNode(Node* node) argument
1908 willRemoveDOMNode(Node* node) argument
1996 didInvalidateStyleAttr(Node* node) argument
2077 shadowRootForNode(Node* node, const String& type) argument
2144 Node* node = InspectorNodeIds::nodeForId(backendNodeId); local
2154 Node* node = assertNode(errorString, nodeId); local
2168 resolveNode(Node* node, const String& objectGroup) argument
[all...]
/external/chromium_org/build/android/pylib/utils/
H A Dapk_helper.py49 node = node_stack[-1]
53 if not m.group(1) in node:
54 node[m.group(1)] = {}
55 node_stack += [node[m.group(1)]]
60 if not m.group(1) in node:
61 node[m.group(1)] = []
62 node[m.group(1)].append(m.group(2))
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dnavigation_history.js7 * state of this class (the node history), is used to ensure the user is
9 * NOTE: The term "valid node" is simply a heuristic, defined in isValidNode_.
52 * A flag to keep track of whether the last node added to the history was
66 * @param {Node} newNode The new node to update the history with.
82 // Check if the node is valid upon arrival. If not, set a flag because
89 * Routinely clean out history and determine if the given node has become
90 * invalid since we arrived there (during the update call). If the node
92 * @param {Node} node The node to check for validity change.
93 * @return {boolean} True if node change
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_model.h85 // Returns the root node. The 'bookmark bar' node and 'other' node are
86 // children of the root node.
89 // Returns the 'bookmark bar' node. This is NULL until loaded.
92 // Returns the 'other' node. This is NULL until loaded.
95 // Returns the 'mobile' node. This is NULL until loaded.
98 bool is_root_node(const BookmarkNode* node) const { return node == &root_; }
100 // Returns whether the given |node| i
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_cond_destroy.c129 ptw32_mcs_local_node_t node; local
130 ptw32_mcs_lock_acquire(&ptw32_cond_list_lock, &node);
158 ptw32_mcs_lock_release(&node);
217 ptw32_mcs_lock_release(&node);
221 ptw32_mcs_local_node_t node; local
225 ptw32_mcs_lock_acquire(&ptw32_cond_test_init_lock, &node);
249 ptw32_mcs_lock_release(&node);

Completed in 1906 milliseconds

<<11121314151617181920>>