Searched defs:node (Results 151 - 175 of 1594) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAOrExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
47 public void setLeft(PExpression node) argument
54 if(node != null)
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
64 this._left_ = node;
72 public void setRight(PExpression node) argument
79 if(node !
[all...]
H A DASetCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
52 public void setPosition(PPosition node) argument
59 if(node != null)
61 if(node.parent() != null)
63 node.parent().removeChild(node);
66 node.parent(this);
69 this._position_ = node;
77 public void setVariable(PVariable node) argument
84 if(node !
102 setExpression(PExpression node) argument
[all...]
H A DASubtractExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
47 public void setLeft(PExpression node) argument
54 if(node != null)
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
64 this._left_ = node;
72 public void setRight(PExpression node) argument
79 if(node !
[all...]
H A DAUvarCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
47 public void setPosition(PPosition node) argument
54 if(node != null)
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
64 this._position_ = node;
72 public void setExpression(PExpression node) argument
79 if(node !
[all...]
H A DAVarCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
47 public void setPosition(PPosition node) argument
54 if(node != null)
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
64 this._position_ = node;
72 public void setExpression(PExpression node) argument
79 if(node !
[all...]
H A DStart.java3 package com.google.clearsilver.jsilver.syntax.node;
44 public void setPCommand(PCommand node) argument
51 if(node != null)
53 if(node.parent() != null)
55 node.parent().removeChild(node);
58 node.parent(this);
61 this._pCommand_ = node;
69 public void setEOF(EOF node) argument
76 if(node !
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognitionException.java75 /** If this is a tree parser exception, node is set to the node with
78 public Object node; field in class:RecognitionException
91 /** If you are parsing a tree node stream, you will encounter som
125 this.node = nodes.LT(1);
127 Token payload = adaptor.getToken(node);
131 // imaginary node; no line/pos info; scan backwards
147 else { // node created from real token
152 else if ( this.node instanceof Tree) {
153 this.line = ((Tree)this.node)
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DClonerToResultTree.java31 * Class used to clone a node, possibly including its children to
40 // * TODO: Fix or figure out node clone failure!
43 // * @param node The node to clone
49 // public void cloneToResultTree(int node, boolean shouldCloneAttributes)
56 // DTM dtm = xctxt.getDTM(node);
58 // int type = dtm.getNodeType(node);
62 // dtm.dispatchCharactersEvents(node, m_rth, false);
76 // m_rth.addAttributes(node);
77 // m_rth.processNSDecls(node, typ
132 cloneToResultTree(int node, int nodeType, DTM dtm, SerializationHandler rth, boolean shouldCloneAttributes) argument
[all...]
H A DTreeWalker2Result.java65 * @param pos Start node for traversal
78 * End processing of given node
81 * @param node Node we just finished processing
85 protected void endNode(int node) throws org.xml.sax.SAXException argument
87 super.endNode(node);
88 if(DTM.ELEMENT_NODE == m_dtm.getNodeType(node))
95 * Start traversal of the tree at the given node
98 * @param node Starting node for traversal
102 protected void startNode(int node) throw argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DDOM3Serializer.java117 * Serializes the Level 3 DOM node. Throws an exception only if an I/O
122 * @param node the Level 3 DOM node to serialize
125 public void serializeDOM3(Node node) throws IOException; argument
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNodeSetForDOM.java40 public XNodeSetForDOM(Node node, DTMManager dtmMgr) argument
43 m_origObj = node;
44 int dtmHandle = dtmMgr.getDTMHandleFromNode(node);
/external/chromium_org/chrome/browser/android/enhanced_bookmarks/
H A Denhanced_bookmarks_bridge.cc34 const BookmarkNode* node = bookmarks::GetBookmarkNodeByID( local
37 return node ?
39 env, enhanced_bookmarks::DescriptionFromBookmark(node)) :
51 const BookmarkNode* node = bookmarks::GetBookmarkNodeByID( local
55 bookmark_model_, node,
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bubble_controller.h30 // The bookmark node whose button we asked to pulse.
47 @property(readonly, nonatomic) const BookmarkNode* node; variable
49 // |node| is the bookmark node we edit in this bubble.
50 // |alreadyBookmarked| tells us if the node was bookmarked before the
58 node:(const BookmarkNode*)node
/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/content/test/
H A Dtest_frame_navigation_observer.cc21 FrameTreeNode* node,
24 node->current_frame_host()->delegate()->GetAsWebContents()),
25 frame_tree_node_id_(node->frame_tree_node_id()),
33 FrameTreeNode* node)
35 node->current_frame_host()->delegate()->GetAsWebContents()),
36 frame_tree_node_id_(node->frame_tree_node_id()),
20 TestFrameNavigationObserver( FrameTreeNode* node, int number_of_navigations) argument
32 TestFrameNavigationObserver( FrameTreeNode* node) argument
/external/chromium_org/extensions/browser/
H A Dcontent_hash_tree_unittest.cc31 // One node.
51 std::string node; local
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_MCS_lock.c42 * the last node in the queue, or is NULL if the queue is empty.
62 * may serve several different locks but you need at least one node for
72 * ptw32_mcs_local_node_t node;
74 * ptw32_mcs_acquire (&lock1, &node);
75 * ptw32_mcs_lock_release (&node);
77 * ptw32_mcs_lock_acquire (&lock2, &node);
78 * ptw32_mcs_lock_release (&node);
82 * ptw32_mcs_lock_acquire (&lock1, &node);
86 * ptw32_mcs_lock_release (&node);
158 ptw32_mcs_lock_acquire (ptw32_mcs_lock_t * lock, ptw32_mcs_local_node_t * node) argument
192 ptw32_mcs_lock_release(ptw32_mcs_local_node_t * node) argument
229 ptw32_mcs_lock_try_acquire(ptw32_mcs_lock_t * lock, ptw32_mcs_local_node_t * node) argument
[all...]
/external/chromium_org/net/disk_cache/memory/
H A Dmem_rankings.cc16 void MemRankings::Insert(MemEntryImpl* node) { argument
18 head_->set_prev(node);
21 tail_ = node;
23 node->set_prev(NULL);
24 node->set_next(head_);
25 head_ = node;
28 void MemRankings::Remove(MemEntryImpl* node) { argument
29 MemEntryImpl* prev = node->prev();
30 MemEntryImpl* next = node->next();
32 if (head_ == node)
48 UpdateRank(MemEntryImpl* node) argument
53 GetNext(MemEntryImpl* node) argument
60 GetPrev(MemEntryImpl* node) argument
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_priority_tree_test.cc19 void PropagateNodeState(NodeId node) { argument
20 tree_->PropagateNodeState(node);
40 // Should not be able to add a node with an id that already exists.
57 // Cannot remove a node that has already been removed.
65 // The parent node 19 doesn't exist, so this should fail:
67 // This should succeed, creating node 7:
69 // Now node 7 already exists, so this should fail:
71 // Try adding a second child to node 13:
87 // We can't set the parent of a nonexistent node, or set the parent of an
88 // existing node t
[all...]
/external/chromium_org/remoting/test/
H A Dfake_network_dispatcher.cc38 void FakeNetworkDispatcher::AddNode(Node* node) { argument
39 DCHECK(node->GetThread()->BelongsToCurrentThread());
42 DCHECK(nodes_.find(node->GetAddress()) == nodes_.end());
43 nodes_[node->GetAddress()] = node;
46 void FakeNetworkDispatcher::RemoveNode(Node* node) { argument
47 DCHECK(node->GetThread()->BelongsToCurrentThread());
50 DCHECK(nodes_[node->GetAddress()] == node);
51 nodes_.erase(node
59 Node* node; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDocumentAnimations.cpp68 void DocumentAnimations::updateAnimationTimingForGetComputedStyle(Node& node, CSSPropertyID property) argument
70 if (!node.isElementNode())
72 const Element& element = toElement(node);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.h51 static PassRefPtrWillBeRawPtr<CSSComputedStyleDeclaration> create(PassRefPtrWillBeRawPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoElementName = String()) argument
53 return adoptRefWillBeNoop(new CSSComputedStyleDeclaration(node, allowVisitedStyle, pseudoElementName));
79 // The styled node is either the node passed into getComputedStyle, or the
/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);
H A DDocumentOrderedList.cpp35 void DocumentOrderedList::add(Node* node) argument
38 m_nodes.add(node);
50 unsigned short position = n->compareDocumentPosition(node, Node::TreatShadowTreesAsComposed);
52 m_nodes.insertBefore(followingNode, node);
58 m_nodes.insertBefore(followingNode, node);
61 void DocumentOrderedList::parserAdd(Node* node) argument
63 ASSERT(m_nodes.isEmpty() || m_nodes.last()->compareDocumentPosition(node, Node::TreatShadowTreesAsComposed) & Node::DOCUMENT_POSITION_FOLLOWING);
64 m_nodes.add(node);
67 void DocumentOrderedList::remove(const Node* node) argument
69 m_nodes.remove(const_cast<Node*>(node));
[all...]
H A DNodeChildRemovalTracker.h44 Node& node() const { return *m_node; } function in class:blink::NodeChildRemovalTracker
54 inline NodeChildRemovalTracker::NodeChildRemovalTracker(Node& node) argument
55 : m_node(node)
66 inline bool NodeChildRemovalTracker::isBeingRemoved(Node* node) argument
69 if (removal->node().containsIncludingShadowDOM(node))

Completed in 1773 milliseconds

1234567891011>>