Searched refs:node (Results 501 - 525 of 3060) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/chromeos/audio/
H A Daudio_device.cc97 AudioDevice::AudioDevice(const AudioNode& node) { argument
98 is_input = node.is_input;
99 id = node.id;
100 type = GetAudioType(node.type);
101 if (!node.name.empty() && node.name != "(default)")
102 display_name = node.name;
104 display_name = node.device_name;
105 device_name = node.device_name;
107 active = node
[all...]
/external/chromium_org/testing/gtest/samples/
H A Dsample3-inl.h46 // QueueNode is a node in a Queue, which consists of an element of
47 // type E and a pointer to the next node.
53 // Gets the element in this node.
56 // Gets the next node in the queue.
61 // Creates a node with a given element value. The next pointer is
85 // 1. Deletes every node.
86 QueueNode<E>* node = head_; local
87 QueueNode<E>* next = node->next();
89 delete node;
90 node
[all...]
/external/chromium_org/tools/grit/grit/node/
H A Dmisc.py6 """Miscellaneous node types.
17 from grit.node import base
18 from grit.node import io
19 from grit.node import message
76 """A node whose children should be considered to be at the same level as
81 assert self.parent, '<%s> node should never be root.' % self.name
88 """A node for conditional inclusion of resources.
101 if any(isinstance(node, (ThenNode, ElseNode)) for node in children):
118 """A <then> node
[all...]
/external/protobuf/gtest/samples/
H A Dsample3-inl.h46 // QueueNode is a node in a Queue, which consists of an element of
47 // type E and a pointer to the next node.
53 // Gets the element in this node.
56 // Gets the next node in the queue.
61 // Creates a node with a given element value. The next pointer is
86 // 1. Deletes every node.
87 QueueNode<E> * node = head_; local
88 QueueNode<E> * next = node->next();
90 delete node;
91 node
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTree.js1 /** A tree node that is wrapper for a Token object. After 3.0 release
4 * spend the space in every tree node. If you don't want these extra
7 org.antlr.runtime.tree.CommonTree = function(node) {
8 /** What token indexes bracket all tokens associated with this node
14 /** What index is this node in the child list? Range: 0..n-1 */
17 /** Who is the parent node of this node; if null, implies node is root */
23 if (node instanceof org.antlr.runtime.tree.CommonTree) {
24 org.antlr.runtime.tree.CommonTree.superclass.constructor.call(this, node);
[all...]
/external/chromium-trace/trace-viewer/src/tracing/importer/v8/
H A Dsplaytree.js24 * Pointer to the root node of the tree.
42 * Inserts a node into the tree with the specified key and value if
43 * the tree does not already contain a node with the specified key. If
54 // Splay on the key to move the last node on the search path for
60 var node = new SplayTree.Node(key, value);
62 node.left = this.root_;
63 node.right = this.root_.right;
66 node.right = this.root_;
67 node.left = this.root_.left;
70 this.root_ = node;
[all...]
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Drecently_used_folders_combo_model.h26 RecentlyUsedFoldersComboModel(BookmarkModel* model, const BookmarkNode* node);
52 const BookmarkNode* node) OVERRIDE;
56 const BookmarkNode* node,
59 const BookmarkNode* node) OVERRIDE;
61 const BookmarkNode* node) OVERRIDE;
64 const BookmarkNode* node) OVERRIDE;
69 // If necessary this function moves |node| into the corresponding folder for
71 void MaybeChangeParent(const BookmarkNode* node, int selected_index);
74 // Returns the node at the specified |index|.
77 // Removes |node| fro
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_propertynode.py15 # A property node is a hierarchically aware system for mapping
55 # Build a property node, setting the properties including a name, and
56 # associate the children with this new node.
59 node = IDLPropertyNode()
60 node.SetProperty('NAME', name)
63 node.SetProperty(toks[0], toks[1])
66 child.AddParent(node)
69 node.AddParent(parent)
70 return node
72 def ExpectProp(node, nam
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildFrameDisconnector.cpp76 static unsigned checkConnectedSubframeCountIsConsistent(Node& node) argument
80 if (node.isElementNode()) {
81 if (node.isFrameOwnerElement() && toHTMLFrameOwnerElement(node).contentFrame())
84 if (ElementShadow* shadow = toElement(node).shadow()) {
90 for (Node* child = node.firstChild(); child; child = child->nextSibling())
95 ASSERT(node.connectedSubframeCount() >= count);
100 ASSERT(node.connectedSubframeCount() == count);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRemoveNodePreservingChildrenCommand.h35 static PassRefPtrWillBeRawPtr<RemoveNodePreservingChildrenCommand> create(PassRefPtrWillBeRawPtr<Node> node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) argument
37 return adoptRefWillBeNoop(new RemoveNodePreservingChildrenCommand(node, shouldAssumeContentIsAlwaysEditable));
H A DSplitTextNodeContainingElementCommand.h35 static PassRefPtrWillBeRawPtr<SplitTextNodeContainingElementCommand> create(PassRefPtrWillBeRawPtr<Text> node, int offset) argument
37 return adoptRefWillBeNoop(new SplitTextNodeContainingElementCommand(node, offset));
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DNativeXPathNSResolver.h38 static PassRefPtrWillBeRawPtr<NativeXPathNSResolver> create(PassRefPtrWillBeRawPtr<Node> node) argument
40 return adoptRefWillBeNoop(new NativeXPathNSResolver(node));
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DFlagStd140Structs.h28 bool isInStd140InterfaceBlock(TIntermTyped *node) const;
33 std::vector<TIntermTyped *> FlagStd140ValueStructs(TIntermNode *node);
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dwarnings.c40 struct WarningListNode **node = &warning_list->warning_node; local
44 fatal("Unable to allocate warning node.");
50 while (*node != NULL)
51 node = &(*node)->next_warning;
53 *node = new_node;
58 struct WarningListNode *const node = warning_list->warning_node; local
59 warning_list->warning_node = node->next_warning;
60 free(node);
/external/chromium_org/third_party/libxml/src/
H A Dxlink.c110 * @doc: the document containing the node
111 * @node: the node pointer itself
113 * Check whether the given node carries the attributes needed
119 * Returns the xlinkType of the node (XLINK_TYPE_NONE if there is no
123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) { argument
127 if (node == NULL) return(XLINK_TYPE_NONE);
128 if (doc == NULL) doc = node->doc;
133 } else if ((node->ns != NULL) &&
134 (xmlStrEqual(node
[all...]
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-altkey.js6 * Filter out mouse/touch movements internal to this node. When moving
7 * inside a node, the event should be filter out.
8 * @param {Node} node The accent key node which receives event.
10 * @return {boolean} True if event is external to node.
12 function isRelevantEvent(node, event) {
13 return !(node.compareDocumentPosition(event.relatedTarget)
/external/chromium_org/v8/src/compiler/
H A Djs-context-specialization.h25 Reduction ReduceJSLoadContext(Node* node);
26 Reduction ReduceJSStoreContext(Node* node);
H A Djs-generic-lowering.h32 virtual Reduction Reduce(Node* node);
35 #define DECLARE_LOWER(x) void Lower##x(Node* node);
48 void PatchOperator(Node* node, const Operator* new_op);
49 void PatchInsertInput(Node* node, int index, Node* input);
52 void ReplaceWithCompareIC(Node* node, Token::Value token, bool pure);
53 void ReplaceWithStubCall(Node* node, Callable c, CallDescriptor::Flags flags);
54 void ReplaceWithBuiltinCall(Node* node, Builtins::JavaScript id, int args);
55 void ReplaceWithRuntimeCall(Node* node, Runtime::FunctionId f, int args = -1);
H A Dnode-aux-data.h23 inline void Set(Node* node, const T& data);
24 inline T Get(Node* node);
/external/clang/test/CodeGenCXX/
H A Dconstructor-template.cpp44 BinomialNode<int> *node = new BinomialNode<int>(1); local
45 delete node;
/external/clang/test/SemaTemplate/
H A Doverload-uneval.cpp22 static inline B *concrete(Foo *node) { argument
24 return reinterpret_cast<B *>(node);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeOptimizer.java20 import com.google.clearsilver.jsilver.syntax.node.AMultipleCommand;
21 import com.google.clearsilver.jsilver.syntax.node.AOptimizedMultipleCommand;
35 // Recurse through child nodes first. Because the optimised node doesn't
38 // Replace this node with the optimized version.
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAFunctionExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
48 public void setName(PVariable node) argument
55 if(node != null)
57 if(node.parent() != null)
59 node.parent().removeChild(node);
62 node.parent(this);
65 this._name_ = node;
/external/libvpx/libvpx/
H A Dwarnings.c40 struct WarningListNode **node = &warning_list->warning_node; local
44 fatal("Unable to allocate warning node.");
50 while (*node != NULL)
51 node = &(*node)->next_warning;
53 *node = new_node;
58 struct WarningListNode *const node = warning_list->warning_node; local
59 warning_list->warning_node = node->next_warning;
60 free(node);
/external/libxml2/
H A Dxlink.c110 * @doc: the document containing the node
111 * @node: the node pointer itself
113 * Check whether the given node carries the attributes needed
119 * Returns the xlinkType of the node (XLINK_TYPE_NONE if there is no
123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) { argument
127 if (node == NULL) return(XLINK_TYPE_NONE);
128 if (doc == NULL) doc = node->doc;
133 } else if ((node->ns != NULL) &&
134 (xmlStrEqual(node
[all...]

Completed in 582 milliseconds

<<21222324252627282930>>