Searched refs:node (Results 51 - 75 of 3060) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAEachCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
57 public void setPosition(PPosition node) argument
64 if(node != null)
66 if(node.parent() != null)
68 node.parent().removeChild(node);
71 node.parent(this);
74 this._position_ = node;
82 public void setVariable(PVariable node) argument
89 if(node !
107 setExpression(PExpression node) argument
132 setCommand(PCommand node) argument
[all...]
H A DAIfCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
57 public void setPosition(PPosition node) argument
64 if(node != null)
66 if(node.parent() != null)
68 node.parent().removeChild(node);
71 node.parent(this);
74 this._position_ = node;
82 public void setExpression(PExpression node) argument
89 if(node !
107 setBlock(PCommand node) argument
132 setOtherwise(PCommand node) argument
[all...]
H A DALoopToCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
57 public void setPosition(PPosition node) argument
64 if(node != null)
66 if(node.parent() != null)
68 node.parent().removeChild(node);
71 node.parent(this);
74 this._position_ = node;
82 public void setVariable(PVariable node) argument
89 if(node !
107 setExpression(PExpression node) argument
132 setCommand(PCommand node) argument
[all...]
H A DAWithCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
57 public void setPosition(PPosition node) argument
64 if(node != null)
66 if(node.parent() != null)
68 node.parent().removeChild(node);
71 node.parent(this);
74 this._position_ = node;
82 public void setVariable(PVariable node) argument
89 if(node !
107 setExpression(PExpression node) argument
132 setCommand(PCommand node) argument
[all...]
H A DPCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DPExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DPPosition.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DPVariable.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DSwitch.java3 package com.google.clearsilver.jsilver.syntax.node;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DAutoEscaper.java23 import com.google.clearsilver.jsilver.syntax.node.AAltCommand;
24 import com.google.clearsilver.jsilver.syntax.node.AAutoescapeCommand;
25 import com.google.clearsilver.jsilver.syntax.node.ACallCommand;
26 import com.google.clearsilver.jsilver.syntax.node.AContentTypeCommand;
27 import com.google.clearsilver.jsilver.syntax.node.ACsOpenPosition;
28 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
29 import com.google.clearsilver.jsilver.syntax.node.ADefCommand;
30 import com.google.clearsilver.jsilver.syntax.node.AEscapeCommand;
31 import com.google.clearsilver.jsilver.syntax.node.AEvarCommand;
32 import com.google.clearsilver.jsilver.syntax.node
143 caseADataCommand(ADataCommand node) argument
150 caseADefCommand(ADefCommand node) argument
155 caseAIfCommand(AIfCommand node) argument
199 caseAEscapeCommand(AEscapeCommand node) argument
207 caseACallCommand(ACallCommand node) argument
212 caseALvarCommand(ALvarCommand node) argument
217 caseAEvarCommand(AEvarCommand node) argument
222 caseALincludeCommand(ALincludeCommand node) argument
227 caseAIncludeCommand(AIncludeCommand node) argument
232 caseAHardLincludeCommand(AHardLincludeCommand node) argument
237 caseAHardIncludeCommand(AHardIncludeCommand node) argument
242 caseAVarCommand(AVarCommand node) argument
247 caseAAltCommand(AAltCommand node) argument
252 caseANameCommand(ANameCommand node) argument
257 caseAUvarCommand(AUvarCommand node) argument
275 caseAContentTypeCommand(AContentTypeCommand node) argument
284 applyAutoEscaping(PCommand node, PPosition position) argument
307 caseACsOpenPosition(ACsOpenPosition node) argument
312 saveAutoEscapingContext(Node node, PPosition position) argument
[all...]
H A DInlineRewriter.java22 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
23 import com.google.clearsilver.jsilver.syntax.node.AInlineCommand;
24 import com.google.clearsilver.jsilver.syntax.node.ANoopCommand;
25 import com.google.clearsilver.jsilver.syntax.node.PCommand;
26 import com.google.clearsilver.jsilver.syntax.node.TData;
64 public void caseADataCommand(ADataCommand node) {
65 TData data = node.getData();
67 node.replaceBy(new ANoopCommand());
77 public void caseAInlineCommand(AInlineCommand node) {
79 PCommand command = node
101 caseAInlineCommand(AInlineCommand node) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParseTreeTransforms.py33 def visit_NameNode(self, node):
34 self.name_nodes.append(node)
36 def visit_Node(self, node):
37 self._visitchildren(node, None)
48 def visit_CTypeDefNode(self, node):
49 return node
51 def visit_CVarDefNode(self, node):
52 return node
54 def visit_CDeclaratorNode(self, node):
55 return node
[all...]
H A DAnalysedTreeTransforms.py15 def visit_ModuleNode(self, node):
16 if node.is_pxd:
17 return node
19 self.scope_node = node
22 return node
26 assert isinstance(node.body, StatListNode)
29 if u'__test__' in node.scope.entries:
31 return node
33 pos = node.pos
36 self.testspos = node
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
H A Dabstract_node_walker.js7 * node. Base classes must override the stopNodeDescent method to define
8 * what a lowest-level node is. Then this walker will use those nodes as the
41 var node = sel.end.node || document.body;
44 node = cvox.DomUtil.directedNextLeafLikeNode(node, r,
46 if (!node) {
49 // and repeat all of the above until we have a node that is not empty
50 } while (node && !cvox.DomUtil.hasContent(node));
[all...]
/external/chromium_org/content/test/
H A Dcontent_browser_test_utils_internal.cc14 void NavigateFrameToURL(FrameTreeNode* node, const GURL& url) { argument
15 TestFrameNavigationObserver observer(node);
18 params.frame_tree_node_id = node->frame_tree_node_id();
19 node->navigator()->GetController()->LoadURLWithParams(params);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DRewriteElseBlocks.h18 void RewriteElseBlocks(TIntermNode *node);
/external/clang/www/analyzer/scripts/
H A Dmenu.js5 node = navRoot.childNodes[i];
6 if (node.nodeName=="LI") {
7 node.onmouseover=function() {
10 node.onmouseout=function() {
/external/chromium_org/net/tools/tld_cleanup/
H A Dmake_dafsa.py21 source node and ending at a common sink node. All internal nodes contain
23 the source node to the sink node.
27 Source node: [ children ]
28 Internal node: (label, [ children ])
29 Sink node: None
36 starting from the source with no backtracking. Thus a node must have at
42 bits in a link (a reference to a child node) indicate if it has a size of one,
43 two or three bytes and if it is the last outgoing link from the actual node
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dgroup_util.js17 * If a node contains more characters than this, it should not be treated
18 * as a leaf node by the smart navigation algorithm.
34 * If a node contains any of these elements, it should not be treated
35 * as a leaf node by the smart navigation algorithm.
104 * Returns true if this is a leaf node for groups.
105 * true for a node => true for all child nodes
106 * true if node has no children
107 * @param {!Node} node The node to check.
108 * @return {boolean} true if this is at the "leaf node" leve
[all...]
/external/chromium_org/v8/src/compiler/
H A Dmachine-operator-reducer.cc8 #include "src/compiler/generic-node-inl.h"
11 #include "src/compiler/node-matchers.h"
45 Reduction MachineOperatorReducer::Reduce(Node* node) { argument
46 switch (node->opcode()) {
48 return ReduceProjection(OpParameter<size_t>(node), node->InputAt(0));
50 Int32BinopMatcher m(node);
51 if (m.right().Is(0)) return Replace(m.right().node()); // x & 0 => 0
52 if (m.right().Is(-1)) return Replace(m.left().node()); // x & -1 => x
56 if (m.LeftEqualsRight()) return Replace(m.left().node()); //
453 ReduceProjection(size_t index, Node* node) argument
[all...]
/external/chromium_org/net/disk_cache/memory/
H A Dmem_rankings.h23 void Insert(MemEntryImpl* node);
26 void Remove(MemEntryImpl* node);
29 void UpdateRank(MemEntryImpl* node);
32 MemEntryImpl* GetNext(MemEntryImpl* node);
33 MemEntryImpl* GetPrev(MemEntryImpl* node);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeWithIndex.h34 // For use when you want to get the index for a node repeatedly and
39 explicit NodeWithIndex(Node& node) argument
40 : m_node(node)
45 Node& node() const { return *m_node; } function in class:blink::NodeWithIndex
50 m_index = node().nodeIndex();
52 ASSERT(m_index == static_cast<int>(node().nodeIndex()));
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDoublyLinkedList.h105 for (T* node = m_head; node; node = node->next())
126 template<typename T> inline void DoublyLinkedList<T>::push(T* node) argument
130 m_head = node;
131 m_tail = node;
132 node->setPrev(0);
133 node->setNext(0);
138 m_head->setPrev(node);
144 append(T* node) argument
162 remove(T* node) argument
183 T* node = head(); local
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/
H A Doptions.js7 this.node = document.getElementById('rule-template').cloneNode(true);
8 this.node.id = 'rule' + (Rule.next_id++);
9 this.node.rule = this;
10 rules.appendChild(this.node);
11 this.node.hidden = false;
22 this.node.id + '-enabled';
34 var sib = rule.node.previousSibling;
35 rule.node.parentNode.removeChild(rule.node);
36 sib.parentNode.insertBefore(rule.node, si
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathUtil.cpp37 bool isRootDomNode(Node* node) argument
39 return node && !node->parentNode();
42 String stringValue(Node* node) argument
44 switch (node->nodeType()) {
50 return node->nodeValue();
52 if (isRootDomNode(node) || node->isElementNode()) {
56 for (Node* n = node->firstChild(); n; n = NodeTraversal::next(*n, node)) {
70 isValidContextNode(Node* node) argument
[all...]

Completed in 463 milliseconds

1234567891011>>