Searched refs:node (Results 126 - 150 of 3060) sorted by relevance

1234567891011>>

/external/bluetooth/bluedroid/osi/src/
H A Dlist.c18 static list_node_t *list_free_node_(list_t *list, list_node_t *node);
76 assert(node != NULL);
79 list_node_t *node = (list_node_t *)malloc(sizeof(list_node_t)); local
80 if (!node)
83 node->next = prev_node->next;
84 node->data = data;
85 prev_node->next = node;
87 list->tail = node;
100 list_node_t *node = (list_node_t *)malloc(sizeof(list_node_t)); local
101 if (!node)
120 list_node_t *node = (list_node_t *)malloc(sizeof(list_node_t)); local
215 list_next(const list_node_t *node) argument
222 list_node(const list_node_t *node) argument
227 list_free_node_(list_t *list, list_node_t *node) argument
[all...]
/external/chromium_org/components/bookmarks/test/
H A Dtest_bookmark_client.cc36 bool TestBookmarkClient::IsExtraNodeRoot(const BookmarkNode* node) { argument
38 if (node == extra_nodes_[i])
44 bool TestBookmarkClient::IsAnExtraNode(const BookmarkNode* node) { argument
45 if (!node)
48 if (node->HasAncestor(extra_nodes_[i]))
55 const BookmarkPermanentNode* node) {
56 DCHECK(node->type() == BookmarkNode::BOOKMARK_BAR ||
57 node->type() == BookmarkNode::OTHER_NODE ||
58 node->type() == BookmarkNode::MOBILE ||
59 IsExtraNodeRoot(node));
54 IsPermanentNodeVisible( const BookmarkPermanentNode* node) argument
76 CanSyncNode(const BookmarkNode* node) argument
80 CanBeEditedByUser(const BookmarkNode* node) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h57 void *node; local
59 node = rzalloc_size(ctx, size);
60 assert(node != NULL);
62 return node;
/external/chromium_org/ui/base/models/
H A Dtree_node_iterator.h16 // Iterator that iterates over the descendants of a node. The iteration does
17 // not include the node itself, only the descendants. The following illustrates
20 // Node* node = iterator.Next();
21 // // do something with node.
30 // evaluated on each tree node and if it evaluates to true the node and all
32 TreeNodeIterator(NodeType* node, const PruneCallback& prune) argument
36 // Move forward through the children list until the first non prunable node.
38 // Position at the top of the _positions list must point to a node the
40 for (; index < node
48 TreeNodeIterator(NodeType* node) argument
92 Position(PositionNodeType* node, int index) argument
95 PositionNodeType* node; member in struct:ui::TreeNodeIterator::Position
[all...]
/external/chromium_org/ui/views/controls/tree/
H A Dtree_view_controller.cc12 bool TreeViewController::CanEdit(TreeView* tree_view, ui::TreeModelNode* node) { argument
/external/chromium_org/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc6 #include "src/compiler/node-matchers.h"
23 InstructionOperand* UseByteRegister(Node* node) { argument
25 return UseFixed(node, rdx);
28 InstructionOperand* UseImmediate64(Node* node) { return UseImmediate(node); } argument
30 bool CanBeImmediate(Node* node) { argument
31 switch (node->opcode()) {
39 bool CanBeImmediate64(Node* node) { argument
40 switch (node->opcode()) {
48 Unique<HeapObject> value = OpParameter<Unique<HeapObject> >(node);
58 VisitLoad(Node* node) argument
107 VisitStore(Node* node) argument
177 VisitBinop(InstructionSelector* selector, Node* node, InstructionCode opcode, FlagsContinuation* cont) argument
219 VisitBinop(InstructionSelector* selector, Node* node, InstructionCode opcode) argument
226 VisitWord32And(Node* node) argument
231 VisitWord64And(Node* node) argument
236 VisitWord32Or(Node* node) argument
241 VisitWord64Or(Node* node) argument
246 VisitWord32Xor(Node* node) argument
257 VisitWord64Xor(Node* node) argument
270 VisitWord32Shift(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
296 VisitWord64Shift(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
320 VisitWord32Shl(Node* node) argument
325 VisitWord64Shl(Node* node) argument
330 VisitWord32Shr(Node* node) argument
335 VisitWord64Shr(Node* node) argument
340 VisitWord32Sar(Node* node) argument
345 VisitWord64Sar(Node* node) argument
350 VisitWord32Ror(Node* node) argument
355 VisitWord64Ror(Node* node) argument
360 VisitInt32Add(Node* node) argument
365 VisitInt64Add(Node* node) argument
370 VisitInt32Sub(Node* node) argument
381 VisitInt64Sub(Node* node) argument
392 VisitMul(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
411 VisitInt32Mul(Node* node) argument
416 VisitInt64Mul(Node* node) argument
421 VisitDiv(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
431 VisitInt32Div(Node* node) argument
436 VisitInt64Div(Node* node) argument
441 VisitInt32UDiv(Node* node) argument
446 VisitInt64UDiv(Node* node) argument
451 VisitMod(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
461 VisitInt32Mod(Node* node) argument
466 VisitInt64Mod(Node* node) argument
471 VisitInt32UMod(Node* node) argument
476 VisitInt64UMod(Node* node) argument
481 VisitChangeInt32ToFloat64(Node* node) argument
487 VisitChangeUint32ToFloat64(Node* node) argument
495 VisitChangeFloat64ToInt32(Node* node) argument
501 VisitChangeFloat64ToUint32(Node* node) argument
507 VisitChangeInt32ToInt64(Node* node) argument
513 VisitChangeUint32ToUint64(Node* node) argument
519 VisitTruncateInt64ToInt32(Node* node) argument
525 VisitFloat64Add(Node* node) argument
532 VisitFloat64Sub(Node* node) argument
539 VisitFloat64Mul(Node* node) argument
546 VisitFloat64Div(Node* node) argument
553 VisitFloat64Mod(Node* node) argument
562 VisitFloat64Sqrt(Node* node) argument
568 VisitInt32AddWithOverflow(Node* node, FlagsContinuation* cont) argument
574 VisitInt32SubWithOverflow(Node* node, FlagsContinuation* cont) argument
597 VisitWordCompare(InstructionSelector* selector, Node* node, InstructionCode opcode, FlagsContinuation* cont, bool commutative) argument
616 VisitWord32Test(Node* node, FlagsContinuation* cont) argument
631 VisitWord64Test(Node* node, FlagsContinuation* cont) argument
646 VisitWord32Compare(Node* node, FlagsContinuation* cont) argument
652 VisitWord64Compare(Node* node, FlagsContinuation* cont) argument
658 VisitFloat64Compare(Node* node, FlagsContinuation* cont) argument
[all...]
/external/chromium_org/v8/src/
H A Drewriter.cc65 virtual void Visit##type(type* node);
82 void Processor::VisitBlock(Block* node) { argument
91 if (!node->is_initializer_block()) Process(node->statements());
95 void Processor::VisitModuleStatement(ModuleStatement* node) { argument
97 Visit(node->body());
102 void Processor::VisitExpressionStatement(ExpressionStatement* node) { argument
104 if (!is_set_ && !node->expression()->IsThrow()) {
105 node->set_expression(SetResult(node
111 VisitIfStatement(IfStatement* node) argument
122 VisitIterationStatement(IterationStatement* node) argument
130 VisitDoWhileStatement(DoWhileStatement* node) argument
135 VisitWhileStatement(WhileStatement* node) argument
140 VisitForStatement(ForStatement* node) argument
145 VisitForInStatement(ForInStatement* node) argument
150 VisitForOfStatement(ForOfStatement* node) argument
155 VisitTryCatchStatement(TryCatchStatement* node) argument
167 VisitTryFinallyStatement(TryFinallyStatement* node) argument
177 VisitSwitchStatement(SwitchStatement* node) argument
189 VisitContinueStatement(ContinueStatement* node) argument
194 VisitBreakStatement(BreakStatement* node) argument
199 VisitWithStatement(WithStatement* node) argument
207 VisitVariableDeclaration(VariableDeclaration* node) argument
208 VisitFunctionDeclaration(FunctionDeclaration* node) argument
209 VisitModuleDeclaration(ModuleDeclaration* node) argument
210 VisitImportDeclaration(ImportDeclaration* node) argument
211 VisitExportDeclaration(ExportDeclaration* node) argument
212 VisitModuleLiteral(ModuleLiteral* node) argument
213 VisitModuleVariable(ModuleVariable* node) argument
214 VisitModulePath(ModulePath* node) argument
215 VisitModuleUrl(ModuleUrl* node) argument
216 VisitEmptyStatement(EmptyStatement* node) argument
217 VisitReturnStatement(ReturnStatement* node) argument
218 VisitDebuggerStatement(DebuggerStatement* node) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DSwitchable.java3 package com.google.clearsilver.jsilver.syntax.node;
/external/ltrace/
H A Dexpr.h54 } node; member in union:expr_node::__anon26622
79 void expr_init_self(struct expr_node *node);
83 void expr_init_named(struct expr_node *node,
87 void expr_init_argno(struct expr_node *node, size_t num);
91 void expr_init_const(struct expr_node *node, struct value *val);
92 void expr_init_const_word(struct expr_node *node, long l,
97 void expr_init_index(struct expr_node *node,
103 void expr_init_up(struct expr_node *node, struct expr_node *lhs, int own_lhs);
107 void expr_init_cb1(struct expr_node *node,
117 void expr_init_cb2(struct expr_node *node,
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h57 void *node; local
59 node = rzalloc_size(ctx, size);
60 assert(node != NULL);
62 return node;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Ddebug.rb22 node = super
23 @debug_listener.create_node( node, payload )
24 return node
28 node = super
29 @debug_listener.create_node( node )
30 return node
34 node = super
35 @debug_listener.create_node( node )
36 return node
40 node
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
H A Dutil.js200 * Creates a new node in the given document
212 * node and invokes the given callback as a method on every element
213 * node encountered.
215 * @param {Element} node Parent element of the subtree to traverse.
216 * @param {Function} callback Called on each node in the traversal.
218 function domTraverseElements(node, callback) {
220 traverser.run(node);
225 * @param {Function} callback Called on each node in the traversal.
235 * @param {Element} root The root node of the traversal.
246 * Processes a single node
[all...]
/external/chromium_org/third_party/jstemplate/
H A Dutil.js200 * Creates a new node in the given document
212 * node and invokes the given callback as a method on every element
213 * node encountered.
215 * @param {Element} node Parent element of the subtree to traverse.
216 * @param {Function} callback Called on each node in the traversal.
218 function domTraverseElements(node, callback) {
220 traverser.run(node);
225 * @param {Function} callback Called on each node in the traversal.
235 * @param {Element} root The root node of the traversal.
246 * Processes a single node
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DTemplateInterpreter.java27 import com.google.clearsilver.jsilver.syntax.node.AAltCommand;
28 import com.google.clearsilver.jsilver.syntax.node.AAutoescapeCommand;
29 import com.google.clearsilver.jsilver.syntax.node.ACallCommand;
30 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
31 import com.google.clearsilver.jsilver.syntax.node.ADefCommand;
32 import com.google.clearsilver.jsilver.syntax.node.AEachCommand;
33 import com.google.clearsilver.jsilver.syntax.node.AEscapeCommand;
34 import com.google.clearsilver.jsilver.syntax.node.AEvarCommand;
35 import com.google.clearsilver.jsilver.syntax.node.AHardIncludeCommand;
36 import com.google.clearsilver.jsilver.syntax.node
98 caseADataCommand(ADataCommand node) argument
106 caseAVarCommand(AVarCommand node) argument
118 caseAUvarCommand(AUvarCommand node) argument
130 caseALvarCommand(ALvarCommand node) argument
139 caseAEvarCommand(AEvarCommand node) argument
166 caseAHardLincludeCommand(AHardLincludeCommand node) argument
176 caseALincludeCommand(ALincludeCommand node) argument
185 caseAHardIncludeCommand(AHardIncludeCommand node) argument
195 caseAIncludeCommand(AIncludeCommand node) argument
204 caseASetCommand(ASetCommand node) argument
229 caseANameCommand(ANameCommand node) argument
242 caseAIfCommand(AIfCommand node) argument
257 caseAEscapeCommand(AEscapeCommand node) argument
274 caseAAutoescapeCommand(AAutoescapeCommand node) argument
291 caseAWithCommand(AWithCommand node) argument
315 caseALoopToCommand(ALoopToCommand node) argument
331 caseALoopCommand(ALoopCommand node) argument
349 caseALoopIncCommand(ALoopIncCommand node) argument
373 caseAEachCommand(AEachCommand node) argument
391 caseAAltCommand(AAltCommand node) argument
434 caseADefCommand(ADefCommand node) argument
471 caseACallCommand(ACallCommand node) argument
597 createUnsupportedOperationMessage(PCommand node, Iterable<String> includeStack) argument
652 caseTCsOpen(TCsOpen node) argument
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_timechange_handler_np.c93 ptw32_mcs_local_node_t node; local
95 ptw32_mcs_lock_acquire(&ptw32_cond_list_lock, &node);
105 ptw32_mcs_lock_release(&node);
H A Dptw32_cond_check_need_init.c46 ptw32_mcs_local_node_t node; local
52 ptw32_mcs_lock_acquire(&ptw32_cond_test_init_lock, &node);
75 ptw32_mcs_lock_release(&node);
H A Dptw32_rwlock_check_need_init.c44 ptw32_mcs_local_node_t node; local
50 ptw32_mcs_lock_acquire(&ptw32_rwlock_test_init_lock, &node);
74 ptw32_mcs_lock_release(&node);
H A Dptw32_spinlock_check_need_init.c45 ptw32_mcs_local_node_t node; local
51 ptw32_mcs_lock_acquire(&ptw32_spinlock_test_init_lock, &node);
75 ptw32_mcs_lock_release(&node);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMediaControlElements.cpp48 ASSERT(mediaControlElementType(node()) == MediaTextTrackDisplayContainer);
50 DeprecatedScheduleStyleRecalcDuringLayout marker(node()->document().lifecycle());
52 static_cast<MediaControlTextTrackContainerElement*>(node())->updateSizes();
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLSerializer.cpp31 String XMLSerializer::serializeToString(Node* node, ExceptionState& exceptionState) argument
33 if (!node) {
34 exceptionState.throwTypeError("Invalid node value.");
39 return accumulator.serializeNodes(*node, IncludeNode);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DForLoopUnroll.cpp9 bool ForLoopUnrollMarker::visitBinary(Visit, TIntermBinary *node) argument
17 switch (node->getOp())
20 if (node->getLeft() != NULL && node->getRight() != NULL && node->getLeft()->getAsSymbolNode())
22 TIntermSymbol *symbol = node->getLeft()->getAsSymbolNode();
26 node->getRight()->traverse(this);
39 bool ForLoopUnrollMarker::visitLoop(Visit, TIntermLoop *node) argument
46 TIntermSequence *declSeq = node->getInit()->getAsAggregate()->getSequence();
49 node
[all...]
H A DRemoveTree.cpp21 TIntermNode *node = nodeQueue.front(); local
24 node->enqueueChildren(&nodeQueue);
26 delete node;
/external/chromium_org/tools/gyp/tools/
H A Dpretty_vcproj.py37 def get_string(node):
38 node_string = "node"
39 node_string += node.nodeName
40 if node.nodeValue:
41 node_string += node.nodeValue
43 if node.attributes:
45 node_string += node.getAttribute("Name")
48 for (name, value) in node.attributes.items():
61 def PrettyPrintNode(node, indent=0):
62 if node
[all...]
/external/chromium_org/v8/src/compiler/
H A Dsimplified-lowering.h10 #include "src/compiler/node.h"
25 void DoLoadField(Node* node);
26 void DoStoreField(Node* node);
27 void DoLoadElement(Node* node);
28 void DoStoreElement(Node* node);
29 void DoStringAdd(Node* node);
30 void DoStringEqual(Node* node);
31 void DoStringLessThan(Node* node);
32 void DoStringLessThanOrEqual(Node* node);
37 Node* SmiTag(Node* node);
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DStructuralWhitespaceStripper.java20 import com.google.clearsilver.jsilver.syntax.node.AAltCommand;
21 import com.google.clearsilver.jsilver.syntax.node.ACallCommand;
22 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
23 import com.google.clearsilver.jsilver.syntax.node.ADefCommand;
24 import com.google.clearsilver.jsilver.syntax.node.AEachCommand;
25 import com.google.clearsilver.jsilver.syntax.node.AEscapeCommand;
26 import com.google.clearsilver.jsilver.syntax.node.AEvarCommand;
27 import com.google.clearsilver.jsilver.syntax.node.AIfCommand;
28 import com.google.clearsilver.jsilver.syntax.node.ALoopCommand;
29 import com.google.clearsilver.jsilver.syntax.node
274 caseStart(Start node) argument
342 inAAltCommand(AAltCommand node) argument
347 inACallCommand(ACallCommand node) argument
352 inAEvarCommand(AEvarCommand node) argument
357 inALvarCommand(ALvarCommand node) argument
362 inANameCommand(ANameCommand node) argument
367 inASetCommand(ASetCommand node) argument
372 inAUvarCommand(AUvarCommand node) argument
377 inAVarCommand(AVarCommand node) argument
394 caseAAltCommand(AAltCommand node) argument
401 caseADefCommand(ADefCommand node) argument
408 caseAEachCommand(AEachCommand node) argument
415 caseAEscapeCommand(AEscapeCommand node) argument
422 caseAIfCommand(AIfCommand node) argument
429 caseALoopCommand(ALoopCommand node) argument
436 caseALoopIncCommand(ALoopIncCommand node) argument
443 caseALoopToCommand(ALoopToCommand node) argument
450 caseAWithCommand(AWithCommand node) argument
[all...]

Completed in 3034 milliseconds

1234567891011>>