Searched refs:node (Results 201 - 225 of 1585) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/webaudio/
H A DAudioNodeInput.cpp40 AudioNodeInput::AudioNodeInput(AudioNode* node) argument
41 : m_node(node)
52 ASSERT(output && node());
53 if (!output || !node())
65 node()->ref(AudioNode::RefTypeConnection);
72 ASSERT(output && node());
73 if (!output || !node())
81 node()->deref(AudioNode::RefTypeConnection); // Note: it's important to return immediately after all deref() calls since the node may be deleted.
89 node()
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java69 * Iterator that returns all immediate children of a given node
80 * or set current node to END, to indicate request-not-honored?
82 * @param node Sets the root of the iteration.
86 public DTMAxisIterator setStartNode(int node) argument
89 if (node == DTMDefaultBase.ROOTNODE)
90 node = getDocument();
93 _startNode = node;
94 _currentNode = (node == DTM.NULL) ? DTM.NULL
95 : _firstch2(makeNodeIdentity(node));
104 * Get the next node i
140 setStartNode(int node) argument
243 setStartNode(int node) argument
416 setStartNode(int node) argument
512 setStartNode(int node) argument
577 setStartNode(int node) argument
638 setStartNode(int node) argument
859 setStartNode(int node) argument
1063 setStartNode(int node) argument
1287 setStartNode(int node) argument
1414 setStartNode(int node) argument
1522 setStartNode(int node) argument
[all...]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Duserdatahandler01.js80 Call setUserData on a node providing a UserDataHandler and rename the node.
89 var node;
115 node = pList.item(0);
117 node.setUserData("greeting", hello, null);
119 node.setUserData("greeting", hello, userDataMonitor.handle);
122 node.setUserData("salutation", mister, null);
124 node.setUserData("salutation", mister, userDataMonitor.handle);
126 elementNS = node.namespaceURI;
128 newNode = doc.renameNode(node,elementN
[all...]
H A Duserdatahandler02.js80 Call setUserData on a node providing a UserDataHandler and clone the node.
89 var node;
115 node = pList.item(0);
117 node.setUserData("greeting", hello, null);
119 node.setUserData("greeting", hello, userDataMonitor.handle);
122 node.setUserData("salutation", mister, null);
124 node.setUserData("salutation", mister, userDataMonitor.handle);
126 elementNS = node.namespaceURI;
128 newNode = node
[all...]
H A Duserdatahandler03.js80 Call setUserData on a node providing a UserDataHandler and import the node.
89 var node;
130 node = pList.item(0);
132 node.setUserData("greeting", hello, null);
134 node.setUserData("greeting", hello, userDataMonitor.handle);
137 node.setUserData("salutation", mister, null);
139 node.setUserData("salutation", mister, userDataMonitor.handle);
141 elementNS = node.namespaceURI;
143 newNode = doc.importNode(node,tru
[all...]
H A Duserdatahandler04.js80 Call setUserData on a node providing a UserDataHandler and adopt the node.
89 var node;
130 node = pList.item(0);
132 node.setUserData("greeting", hello, null);
134 node.setUserData("greeting", hello, userDataMonitor.handle);
137 node.setUserData("salutation", mister, null);
139 node.setUserData("salutation", mister, userDataMonitor.handle);
141 elementNS = node.namespaceURI;
143 newNode = doc.adoptNode(node);
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DScriptProfile.cpp70 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const JSC::ProfileNode* node) argument
74 result->setString("functionName", ustringToString(node->functionName()));
75 result->setString("url", ustringToString(node->url()));
76 result->setNumber("lineNumber", node->lineNumber());
77 result->setNumber("totalTime", node->totalTime());
78 result->setNumber("selfTime", node->selfTime());
79 result->setNumber("numberOfCalls", node->numberOfCalls());
80 result->setBoolean("visible", node->visible());
81 result->setNumber("callUID", node->callIdentifier().hash());
85 const ProfileNodesList& children = node
[all...]
/external/webkit/Source/WebCore/editing/
H A DSplitElementCommand.cpp51 for (Node* node = m_element2->firstChild(); node != m_atChild; node = node->nextSibling())
52 children.append(node);
85 for (Node* node = m_element1->firstChild(); node; node = node->nextSibling())
86 children.append(node);
[all...]
H A DMarkupAccumulator.cpp87 String MarkupAccumulator::serializeNodes(Node* node, Node* nodeToSkip, EChildrenOnly childrenOnly) argument
90 serializeNodesWithNamespaces(node, nodeToSkip, childrenOnly, 0);
96 void MarkupAccumulator::serializeNodesWithNamespaces(Node* node, Node* nodeToSkip, EChildrenOnly childrenOnly, const Namespaces* namespaces) argument
98 if (node == nodeToSkip)
106 appendStartTag(node, &namespaceHash);
108 if (!(node->document()->isHTMLDocument() && elementCannotHaveEndTag(node))) {
109 for (Node* current = node->firstChild(); current; current = current->nextSibling())
114 appendEndTag(node);
122 void MarkupAccumulator::appendStartTag(Node* node, Namespace argument
131 appendEndTag(Node* node) argument
185 appendNodeValue(Vector<UChar>& out, const Node* node, const Range* range, EntityMask entityMask) argument
389 appendStartMarkup(Vector<UChar>& result, const Node* node, Namespaces* namespaces) argument
431 shouldSelfClose(const Node* node) argument
442 elementCannotHaveEndTag(const Node* node) argument
454 appendEndMarkup(Vector<UChar>& result, const Node* node) argument
[all...]
/external/libxml2/
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
1549 xmlNodePtr node = reader->node; local
1674 xmlNodePtr node, cur_node; local
1720 xmlNodePtr node; local
1759 xmlNodePtr node; local
2699 xmlNodePtr node; local
2927 xmlNodePtr node; local
2970 xmlNodePtr node; local
3071 xmlNodePtr node; local
3102 xmlNodePtr node; local
3132 xmlNodePtr node; local
3208 xmlNodePtr node; local
3275 xmlNodePtr node; local
3307 xmlNodePtr node; local
3338 xmlNodePtr node; local
3366 xmlNodePtr node; local
3456 xmlNodePtr node; local
3483 xmlNodePtr node; local
3518 xmlNodePtr node; local
3564 xmlNodePtr node; local
4447 xmlNodePtr node; local
[all...]
/external/bluetooth/glib/glib/
H A Dghash.c47 /* If key_hash == 0, node is not in use
48 * If key_hash == 1, node is a tombstone
49 * If key_hash >= 2, node contains data */
67 * incremented when a node is added or removed (is not incremented
68 * when the key or data of a node is modified).
181 * index of an empty node (never a tombstone).
187 GHashNode *node; local
200 node = &hash_table->nodes [node_index];
202 while (node->key_hash)
209 if (node
258 GHashNode *node; local
327 g_hash_table_remove_node(GHashTable *hash_table, GHashNode *node, gboolean notify) argument
366 GHashNode *node = &hash_table->nodes [i]; local
413 GHashNode *node = &hash_table->nodes [i]; local
585 GHashNode *node; local
778 GHashNode *node; local
812 GHashNode *node; local
854 GHashNode *node; local
968 GHashNode *node; local
1106 GHashNode *node = &hash_table->nodes [i]; local
1207 GHashNode *node = &hash_table->nodes [i]; local
1252 GHashNode *node = &hash_table->nodes [i]; local
1302 GHashNode *node = &hash_table->nodes [i]; local
1336 GHashNode *node = &hash_table->nodes [i]; local
[all...]
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-parse.y574 string_node_t *node;
576 node = talloc (list, string_node_t);
577 node->str = talloc_strdup (node, str);
579 node->next = NULL;
582 list->head = node;
584 list->tail->next = node;
587 list->tail = node;
593 string_node_t *node;
599 for (i = 0, node
[all...]
/external/antlr/src/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/webkit/Source/WebCore/inspector/front-end/
H A DDOMBreakpointsSidebarPane.js61 populateNodeContextMenu: function(node, contextMenu)
66 if (element._node === node)
73 this._setBreakpoint(node, type, true);
75 this._removeBreakpoint(node, type);
116 message = "Paused on a \"%s\" breakpoint set on %s, because a new child was added to that node.";
142 nodeRemoved: function(node)
144 this._removeBreakpointsForNode(node);
145 if (!node.children)
147 for (var i = 0; i < node.children.length; ++i)
148 this._removeBreakpointsForNode(node
[all...]
H A DDOMSyntaxHighlighter.js45 syntaxHighlightNode: function(node)
48 var lines = node.textContent.split("\n");
49 node.removeChildren();
62 node.appendChild(document.createTextNode(plainText));
65 node.appendChild(this.createSpan(token, tokenType));
73 node.appendChild(document.createTextNode(plainText));
76 node.appendChild(document.createElement("br"));
/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/quake/quake/src/QW/client/
H A Dr_efrag.c91 void R_SplitEntityOnNode (mnode_t *node) argument
98 if (node->contents == CONTENTS_SOLID)
103 // add an efrag if the node is a leaf
105 if ( node->contents < 0)
108 r_pefragtopnode = node;
110 leaf = (mleaf_t *)node;
138 splitplane = node->plane;
146 r_pefragtopnode = node;
151 R_SplitEntityOnNode (node->children[0]);
154 R_SplitEntityOnNode (node
163 R_SplitEntityOnNode2(mnode_t *node) argument
[all...]
/external/quake/quake/src/WinQuake/
H A Dr_efrag.cpp91 void R_SplitEntityOnNode (mnode_t *node) argument
98 if (node->contents == CONTENTS_SOLID)
103 // add an efrag if the node is a leaf
105 if ( node->contents < 0)
108 r_pefragtopnode = node;
110 leaf = (mleaf_t *)node;
138 splitplane = node->plane;
146 r_pefragtopnode = node;
151 R_SplitEntityOnNode (node->children[0]);
154 R_SplitEntityOnNode (node
163 R_SplitEntityOnNode2(mnode_t *node) argument
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGSwitchElement.cpp48 for (Node* node = firstChild(); node; node = node->nextSibling()) {
49 if (!node->isSVGElement())
52 SVGElement* element = static_cast<SVGElement*>(node);
56 return node == child; // Only allow this child if it's the first valid child
/external/chromium/chrome/browser/sync/glue/
H A Dtheme_model_associator.cc24 "Server did not create the top-level themes node. We "
46 sync_api::WriteNode node(&trans);
50 if (node.InitByClientTagLookup(syncable::THEMES, kCurrentThemeClientTag)) {
55 sync_pb::ThemeSpecifics theme_specifics = node.GetThemeSpecifics();
58 node.SetThemeSpecifics(theme_specifics);
61 sync_api::WriteNode node(&trans);
62 if (!node.InitUniqueByCreation(syncable::THEMES, root,
64 LOG(ERROR) << "Could not create current theme node.";
67 node.SetIsFolder(false);
68 node
[all...]
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_menu_bridge.h55 const BookmarkNode* node);
57 const BookmarkNode* node);
59 const BookmarkNode* node);
61 const BookmarkNode* node);
77 // Helper for adding the node as a submenu to the menu with the
80 const BookmarkNode* node,
84 // All children of |node| will be added to |menu|.
86 void AddNodeToMenu(const BookmarkNode* node, NSMenu* menu);
90 // The item is also bound to |node| by tag. |command_id| selects the action.
93 const BookmarkNode* node,
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLLabelElement.cpp39 static HTMLFormControlElement* nodeAsLabelableFormControl(Node* node) argument
41 if (!node || !node->isElementNode() || !static_cast<Element*>(node)->isFormControlElement())
44 HTMLFormControlElement* formControlElement = static_cast<HTMLFormControlElement*>(node);
74 Node* node = this; local
75 while ((node = node->traverseNextNode(this))) {
76 if (HTMLFormControlElement* formControlElement = nodeAsLabelableFormControl(node))
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityRenderObject.cpp224 return toRenderInline(r->node()->renderer());
228 return toRenderInline(toRenderBlock(r)->inlineElementContinuation()->node()->renderer());
297 // Case 1: The node is a block and is an inline's continuation. In that case, the inline's
308 // Case 3: The node has an actual previous sibling
312 // Case 4: This node has no previous siblings, but its parent is an inline,
313 // and is another node's inline continutation. Follow the continuation chain.
335 // Case 1: node is a block and has an inline continuation. Next sibling is the inline continuation's
346 // Case 3: node has an actual next sibling
350 // Case 4: node is an inline with a continuation. Next sibling is the next sibling of the end
355 // Case 5: node ha
860 Node* node = m_renderer->node(); local
896 siblingWithAriaRole(String role, Node* node) argument
1059 Node* AccessibilityRenderObject::node() const function in class:WebCore::AccessibilityRenderObject
1176 accessibleNameForNode(Node* node) argument
1212 Node* node = m_renderer->node(); local
1972 Node* node = m_renderer->node(); local
2008 Node* node = m_renderer->node(); local
3024 Node* node = m_renderer->node(); local
3224 Node* node = m_renderer->node(); local
[all...]
/external/chromium/base/json/
H A Djson_writer.h20 // Given a root node, generates a JSON string and puts it into |json|.
25 // |node| is not a DictionaryValue/ListValue or if there are inf/-inf float
27 static void Write(const Value* const node, bool pretty_print,
33 static void WriteWithOptionalEscape(const Value* const node,
47 void BuildJSONString(const Value* const node, int depth, bool escape);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTemplateSyntaxTree.java19 import com.google.clearsilver.jsilver.syntax.node.Start;
20 import com.google.clearsilver.jsilver.syntax.node.Switch;
21 import com.google.clearsilver.jsilver.syntax.node.Switchable;
24 * Simple wrapper class to encapsulate the root node of the AST and allow additional information to

Completed in 494 milliseconds

1234567891011>>