Searched refs:node (Results 26 - 50 of 1585) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/xml/
H A DXMLSerializer.cpp29 String XMLSerializer::serializeToString(Node* node, ExceptionCode& ec) argument
31 if (!node)
34 if (!node->document()) {
37 // with it. It should be the only type of node where this is possible.
38 ASSERT(node->nodeType() == Node::DOCUMENT_TYPE_NODE);
44 return createMarkup(node);
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGGraph.cpp46 Node& node = at(nodeIndex); local
47 NodeType op = node.op;
49 unsigned refCount = node.refCount;
52 bool mustGenerate = node.mustGenerate();
63 // not including the 'mustGenerate' ref. If the node is
65 // (3) The virtual register slot assigned to this node.
68 // @# - a NodeIndex referencing a prior node in the graph.
73 printf("% 4d:\t<%c%u:%u>\t%s(", (int)nodeIndex, mustGenerate ? '!' : ' ', refCount, node.virtualRegister, dfgOpNames[op & NodeIdMask]);
74 if (node.child1 != NoNode)
75 printf("@%u", node
140 Node& node = at(op); local
160 Node& node = at(op); local
[all...]
/external/webkit/Source/WebCore/dom/
H A DNodeIterator.cpp40 : node(n)
47 node.clear();
52 if (!node)
58 node = node->traverseNextNode(root);
59 return node;
64 if (!node)
70 node = node->traversePreviousNode(root);
71 return node;
180 Node* node = removedNode->traverseNextNode(root()); local
209 Node* node = removedNode->traversePreviousNode(root()); local
[all...]
H A DTreeWalker.cpp42 void TreeWalker::setCurrentNode(PassRefPtr<Node> node, ExceptionCode& ec) argument
44 if (!node) {
48 m_current = node;
51 inline Node* TreeWalker::setCurrent(PassRefPtr<Node> node) argument
53 m_current = node;
59 RefPtr<Node> node = m_current; local
60 while (node != root()) {
61 node = node->parentNode();
62 if (!node)
141 RefPtr<Node> node = m_current; local
178 RefPtr<Node> node = m_current; local
215 RefPtr<Node> node = m_current; local
254 RefPtr<Node> node = m_current; local
[all...]
H A DNodeFilter.cpp32 short NodeFilter::acceptNode(ScriptState* state, Node* node) const
35 return m_condition ? m_condition->acceptNode(state, node) : static_cast<short>(FILTER_ACCEPT);
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DExpressionEvaluator.java23 import com.google.clearsilver.jsilver.syntax.node.AAddExpression;
24 import com.google.clearsilver.jsilver.syntax.node.AAndExpression;
25 import com.google.clearsilver.jsilver.syntax.node.ADecimalExpression;
26 import com.google.clearsilver.jsilver.syntax.node.ADescendVariable;
27 import com.google.clearsilver.jsilver.syntax.node.ADivideExpression;
28 import com.google.clearsilver.jsilver.syntax.node.AEqExpression;
29 import com.google.clearsilver.jsilver.syntax.node.AExistsExpression;
30 import com.google.clearsilver.jsilver.syntax.node.AFunctionExpression;
31 import com.google.clearsilver.jsilver.syntax.node.AGtExpression;
32 import com.google.clearsilver.jsilver.syntax.node
93 caseAVariableExpression(AVariableExpression node) argument
100 caseAStringExpression(AStringExpression node) argument
110 caseADecimalExpression(ADecimalExpression node) argument
116 caseAHexExpression(AHexExpression node) argument
123 caseANumericExpression(ANumericExpression node) argument
128 caseANotExpression(ANotExpression node) argument
133 caseAExistsExpression(AExistsExpression node) argument
138 caseAEqExpression(AEqExpression node) argument
143 caseANumericEqExpression(ANumericEqExpression node) argument
148 caseANeExpression(ANeExpression node) argument
153 caseANumericNeExpression(ANumericNeExpression node) argument
158 caseALtExpression(ALtExpression node) argument
163 caseAGtExpression(AGtExpression node) argument
168 caseALteExpression(ALteExpression node) argument
173 caseAGteExpression(AGteExpression node) argument
178 caseAAndExpression(AAndExpression node) argument
183 caseAOrExpression(AOrExpression node) argument
188 caseAAddExpression(AAddExpression node) argument
193 caseANumericAddExpression(ANumericAddExpression node) argument
198 caseASubtractExpression(ASubtractExpression node) argument
203 caseAMultiplyExpression(AMultiplyExpression node) argument
208 caseADivideExpression(ADivideExpression node) argument
213 caseAModuloExpression(AModuloExpression node) argument
218 caseANegativeExpression(ANegativeExpression node) argument
223 caseAFunctionExpression(AFunctionExpression node) argument
248 getFullFunctionName(AFunctionExpression node) argument
[all...]
/external/v8/src/
H A Drewriter.cc76 virtual void Visit##type(type* node);
91 void Processor::VisitBlock(Block* node) { argument
100 if (!node->is_initializer_block()) Process(node->statements());
104 void Processor::VisitExpressionStatement(ExpressionStatement* node) { argument
107 node->set_expression(SetResult(node->expression()));
113 void Processor::VisitIfStatement(IfStatement* node) { argument
116 Visit(node->else_statement());
119 Visit(node
124 VisitIterationStatement(IterationStatement* node) argument
132 VisitDoWhileStatement(DoWhileStatement* node) argument
137 VisitWhileStatement(WhileStatement* node) argument
142 VisitForStatement(ForStatement* node) argument
147 VisitForInStatement(ForInStatement* node) argument
152 VisitTryCatchStatement(TryCatchStatement* node) argument
164 VisitTryFinallyStatement(TryFinallyStatement* node) argument
174 VisitSwitchStatement(SwitchStatement* node) argument
186 VisitContinueStatement(ContinueStatement* node) argument
191 VisitBreakStatement(BreakStatement* node) argument
197 VisitDeclaration(Declaration* node) argument
198 VisitEmptyStatement(EmptyStatement* node) argument
199 VisitReturnStatement(ReturnStatement* node) argument
200 VisitWithEnterStatement(WithEnterStatement* node) argument
201 VisitWithExitStatement(WithExitStatement* node) argument
202 VisitDebuggerStatement(DebuggerStatement* node) argument
206 VisitFunctionLiteral(FunctionLiteral* node) argument
212 VisitSharedFunctionInfoLiteral( SharedFunctionInfoLiteral* node) argument
219 VisitConditional(Conditional* node) argument
225 VisitVariableProxy(VariableProxy* node) argument
231 VisitLiteral(Literal* node) argument
237 VisitRegExpLiteral(RegExpLiteral* node) argument
243 VisitArrayLiteral(ArrayLiteral* node) argument
249 VisitObjectLiteral(ObjectLiteral* node) argument
255 VisitCatchExtensionObject(CatchExtensionObject* node) argument
261 VisitAssignment(Assignment* node) argument
267 VisitThrow(Throw* node) argument
273 VisitProperty(Property* node) argument
279 VisitCall(Call* node) argument
285 VisitCallNew(CallNew* node) argument
291 VisitCallRuntime(CallRuntime* node) argument
297 VisitUnaryOperation(UnaryOperation* node) argument
303 VisitCountOperation(CountOperation* node) argument
309 VisitBinaryOperation(BinaryOperation* node) argument
315 VisitCompareOperation(CompareOperation* node) argument
321 VisitCompareToNull(CompareToNull* node) argument
327 VisitThisFunction(ThisFunction* node) argument
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DRemoveTree.cpp30 void RemoveTree::visitSymbol(TIntermSymbol* node) argument
32 delete node;
35 bool RemoveTree::visitBinary(Visit visit, TIntermBinary* node) argument
37 delete node;
42 bool RemoveTree::visitUnary(Visit visit, TIntermUnary* node) argument
44 delete node;
49 bool RemoveTree::visitAggregate(Visit visit, TIntermAggregate* node) argument
51 delete node;
56 bool RemoveTree::visitSelection(Visit visit, TIntermSelection* node) argument
58 delete node;
63 visitConstantUnion(TIntermConstantUnion* node) argument
[all...]
H A DUnfoldSelect.cpp21 void UnfoldSelect::traverse(TIntermNode *node) argument
24 node->traverse(this);
27 bool UnfoldSelect::visitSelection(Visit visit, TIntermSelection *node) argument
31 if (node->usesTernaryOperator())
35 out << mOutputHLSL->typeString(node->getType()) << " t" << i << ";\n";
37 node->getCondition()->traverse(this);
39 node->getCondition()->traverse(mOutputHLSL);
42 node->getTrueBlock()->traverse(this);
44 node->getTrueBlock()->traverse(mOutputHLSL);
49 node
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityList.cpp77 Node* node = m_renderer->node();
85 return node && node->hasTagName(ulTag);
97 Node* node = m_renderer->node();
98 return node && node->hasTagName(olTag);
106 Node* node = m_renderer->node();
[all...]
/external/webkit/Source/JavaScriptCore/API/tests/
H A DNode.h33 Node* node; member in struct:__NodeLink
44 extern void Node_ref(Node* node);
45 extern void Node_deref(Node* node);
46 extern void Node_appendChild(Node* node, Node* child);
47 extern void Node_removeChild(Node* node, Node* child);
48 extern void Node_replaceChild(Node* node, Node* newChild, Node* oldChild);
/external/webkit/Source/WebCore/bindings/objc/
H A DObjCNodeFilterCondition.mm40 short ObjCNodeFilterCondition::acceptNode(ExecState*, Node* node) const
42 if (!node)
44 return [m_filter.get() acceptNode:kit(node)];
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTypeResolver.java20 import com.google.clearsilver.jsilver.syntax.node.AAddExpression;
21 import com.google.clearsilver.jsilver.syntax.node.ADecimalExpression;
22 import com.google.clearsilver.jsilver.syntax.node.ADivideExpression;
23 import com.google.clearsilver.jsilver.syntax.node.AEqExpression;
24 import com.google.clearsilver.jsilver.syntax.node.AFunctionExpression;
25 import com.google.clearsilver.jsilver.syntax.node.AHexExpression;
26 import com.google.clearsilver.jsilver.syntax.node.AModuloExpression;
27 import com.google.clearsilver.jsilver.syntax.node.AMultiplyExpression;
28 import com.google.clearsilver.jsilver.syntax.node.ANameVariable;
29 import com.google.clearsilver.jsilver.syntax.node
78 caseAAddExpression(AAddExpression node) argument
88 caseAEqExpression(AEqExpression node) argument
98 caseANeExpression(ANeExpression node) argument
111 isNumeric(PExpression node) argument
127 isNumericFunction(PExpression node) argument
[all...]
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...]
/external/webkit/Source/JavaScriptCore/heap/
H A DHandleHeap.cpp57 Node* node = &block[i]; local
58 new (node) Node(this);
59 m_freeList.push(node);
66 for (Node* node = m_strongList.begin(); node != end; node = node->next())
67 heapRootMarker.mark(node->slot());
75 for (Node* node = m_weakList.begin(); node !
152 isValidWeakNode(Node* node) argument
[all...]
/external/blktrace/
H A Drbtree.c25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) argument
27 struct rb_node *right = node->rb_right;
28 struct rb_node *parent = rb_parent(node);
30 if ((node->rb_right = right->rb_left))
31 rb_set_parent(right->rb_left, node);
32 right->rb_left = node;
38 if (node == parent->rb_left)
45 rb_set_parent(node, right);
48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) argument
50 struct rb_node *left = node
71 rb_insert_color(struct rb_node *node, struct rb_root *root) argument
136 __rb_erase_color(struct rb_node *node, struct rb_node *parent, struct rb_root *root) argument
222 rb_erase(struct rb_node *node, struct rb_root *root) argument
316 rb_next(struct rb_node *node) argument
344 rb_prev(struct rb_node *node) argument
[all...]
/external/chromium/chrome/browser/resources/shared/js/
H A Dparse_html_subset.js14 'href': function(node, value) {
16 return node.tagName == 'A' && (value.indexOf('http://') == 0 ||
19 'target': function(node, value) {
21 if (node.tagName != 'A')
23 node.setAttribute('target', '');
43 function assertElement(node) {
44 if (allowedTags.indexOf(node.tagName) == -1)
45 throw Error(node.tagName + ' is not supported');
48 function assertAttribute(attrNode, node) {
51 if (!allowedAttributes.hasOwnProperty(n) || !allowedAttributes[n](node,
[all...]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dcanonicalform09.js100 var node;
124 node = doc.firstChild;
126 nodeType = node.nodeType;
129 nodeValue = node.data;
133 node = node.nextSibling;
135 nodeType = node.nodeType;
138 nodeValue = node.nodeValue;
142 node = node
[all...]
H A Dnodegetfeature01.js87 var node;
100 node = doc;
101 featureImpl = node.getFeature("Core",nullVersion);
102 assertSame("coreUnspecifiedVersion",node,featureImpl);
103 featureImpl = node.getFeature("cOrE",nullVersion);
104 assertSame("cOrEUnspecifiedVersion",node,featureImpl);
105 featureImpl = node.getFeature("+cOrE",nullVersion);
106 assertSame("PlusCoreUnspecifiedVersion",node,featureImpl);
107 featureImpl = node.getFeature("org.w3c.domts.bogus.feature",nullVersion);
109 featureImpl = node
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DALoopIncCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
67 public void setPosition(PPosition node) argument
74 if(node != null)
76 if(node.parent() != null)
78 node.parent().removeChild(node);
81 node.parent(this);
84 this._position_ = node;
92 public void setVariable(PVariable node) argument
99 if(node !
117 setStart(PExpression node) argument
142 setEnd(PExpression node) argument
167 setIncrement(PExpression node) argument
192 setCommand(PCommand node) argument
[all...]
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...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSNodeCustom.h50 inline JSDOMWrapper* getInlineCachedWrapper(DOMWrapperWorld* world, Node* node) argument
54 return node->wrapper();
57 inline bool setInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper) argument
61 ASSERT(!node->wrapper());
62 node->setWrapper(*world->globalData(), wrapper, wrapperOwner(world, node), wrapperContext(world, node));
66 inline bool clearInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper) argument
70 ASSERT_UNUSED(wrapper, node->wrapper() == wrapper);
71 node
77 toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Node* node) argument
89 root(Node* node) argument
[all...]

Completed in 560 milliseconds

1234567891011>>