Searched refs:node (Results 101 - 125 of 3060) sorted by relevance

1234567891011>>

/external/chromium_org/ui/webui/resources/js/
H A Dparse_html_subset.js19 'href': function(node, value) {
21 return node.tagName == 'A' && (value.indexOf('chrome://') == 0 ||
24 'target': function(node, value) {
26 if (node.tagName != 'A')
28 node.setAttribute('target', '');
61 function assertElement(tags, node) {
62 if (tags.indexOf(node.tagName) == -1)
63 throw Error(node.tagName + ' is not supported');
66 function assertAttribute(attrs, attrNode, node) {
69 if (!attrs.hasOwnProperty(n) || !attrs[n](node,
[all...]
H A Devent_tracker.js18 * @typedef {{node: !Node,
43 * @param {!Node} node The DOM node to add a listener to.
48 add: function(node, eventType, listener, opt_capture) {
51 node: node,
57 node.addEventListener(eventType, listener, capture);
62 * @param {!Node} node The DOM node to remove a listener from.
65 remove: function(node, eventTyp
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DDataCommandConsolidator.java20 import com.google.clearsilver.jsilver.syntax.node.AAltCommand;
21 import com.google.clearsilver.jsilver.syntax.node.ACallCommand;
22 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
23 import com.google.clearsilver.jsilver.syntax.node.ADefCommand;
24 import com.google.clearsilver.jsilver.syntax.node.AEachCommand;
25 import com.google.clearsilver.jsilver.syntax.node.AEvarCommand;
26 import com.google.clearsilver.jsilver.syntax.node.AHardIncludeCommand;
27 import com.google.clearsilver.jsilver.syntax.node.AHardLincludeCommand;
28 import com.google.clearsilver.jsilver.syntax.node.AIfCommand;
29 import com.google.clearsilver.jsilver.syntax.node
106 caseADataCommand(ADataCommand node) argument
118 inAVarCommand(AVarCommand node) argument
123 inALvarCommand(ALvarCommand node) argument
128 inAUvarCommand(AUvarCommand node) argument
133 inAEvarCommand(AEvarCommand node) argument
138 inANameCommand(ANameCommand node) argument
145 inALoopCommand(ALoopCommand node) argument
150 inALoopIncCommand(ALoopIncCommand node) argument
155 inALoopToCommand(ALoopToCommand node) argument
160 inAEachCommand(AEachCommand node) argument
165 inAWithCommand(AWithCommand node) argument
170 outALoopCommand(ALoopCommand node) argument
175 outALoopIncCommand(ALoopIncCommand node) argument
180 outALoopToCommand(ALoopToCommand node) argument
185 outAEachCommand(AEachCommand node) argument
190 outAWithCommand(AWithCommand node) argument
200 caseADefCommand(ADefCommand node) argument
209 inACallCommand(ACallCommand node) argument
216 caseAIfCommand(AIfCommand node) argument
232 inAAltCommand(AAltCommand node) argument
237 outAAltCommand(AAltCommand node) argument
244 caseAIncludeCommand(AIncludeCommand node) argument
249 caseAHardIncludeCommand(AHardIncludeCommand node) argument
254 caseALincludeCommand(ALincludeCommand node) argument
259 caseAHardLincludeCommand(AHardLincludeCommand node) argument
266 caseEOF(EOF node) argument
[all...]
/external/chromium_org/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc6 #include "src/compiler/node-matchers.h"
7 #include "src/compiler/node-properties-inl.h"
19 InstructionOperand* UseByteRegister(Node* node) { argument
21 return UseFixed(node, edx);
24 bool CanBeImmediate(Node* node) { argument
25 switch (node->opcode()) {
33 Unique<HeapObject> value = OpParameter<Unique<HeapObject> >(node);
43 void InstructionSelector::VisitLoad(Node* node) { argument
44 MachineType rep = RepresentationOf(OpParameter<LoadRepresentation>(node));
45 MachineType typ = TypeOf(OpParameter<LoadRepresentation>(node));
94 VisitStore(Node* node) argument
165 VisitBinop(InstructionSelector* selector, Node* node, InstructionCode opcode, FlagsContinuation* cont) argument
208 VisitBinop(InstructionSelector* selector, Node* node, InstructionCode opcode) argument
215 VisitWord32And(Node* node) argument
220 VisitWord32Or(Node* node) argument
225 VisitWord32Xor(Node* node) argument
237 VisitShift(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
261 VisitWord32Shl(Node* node) argument
266 VisitWord32Shr(Node* node) argument
271 VisitWord32Sar(Node* node) argument
276 VisitWord32Ror(Node* node) argument
281 VisitInt32Add(Node* node) argument
286 VisitInt32Sub(Node* node) argument
297 VisitInt32Mul(Node* node) argument
315 VisitDiv(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
326 VisitInt32Div(Node* node) argument
331 VisitInt32UDiv(Node* node) argument
336 VisitMod(InstructionSelector* selector, Node* node, ArchOpcode opcode) argument
347 VisitInt32Mod(Node* node) argument
352 VisitInt32UMod(Node* node) argument
357 VisitChangeInt32ToFloat64(Node* node) argument
363 VisitChangeUint32ToFloat64(Node* node) argument
371 VisitChangeFloat64ToInt32(Node* node) argument
377 VisitChangeFloat64ToUint32(Node* node) argument
383 VisitFloat64Add(Node* node) argument
390 VisitFloat64Sub(Node* node) argument
397 VisitFloat64Mul(Node* node) argument
404 VisitFloat64Div(Node* node) argument
411 VisitFloat64Mod(Node* node) argument
420 VisitFloat64Sqrt(Node* node) argument
426 VisitInt32AddWithOverflow(Node* node, FlagsContinuation* cont) argument
432 VisitInt32SubWithOverflow(Node* node, FlagsContinuation* cont) argument
459 VisitWordCompare(InstructionSelector* selector, Node* node, InstructionCode opcode, FlagsContinuation* cont, bool commutative) argument
478 VisitWord32Test(Node* node, FlagsContinuation* cont) argument
493 VisitWord32Compare(Node* node, FlagsContinuation* cont) argument
499 VisitFloat64Compare(Node* node, FlagsContinuation* cont) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTransformableContainer.cpp33 RenderSVGTransformableContainer::RenderSVGTransformableContainer(SVGGraphicsElement* node) argument
34 : RenderSVGContainer(node)
40 static bool hasValidPredecessor(const Node* node) argument
42 ASSERT(node);
43 for (node = node->previousSibling(); node; node = node->previousSibling()) {
44 if (node
54 Node* node = child->node(); local
[all...]
/external/libsepol/include/sepol/
H A Dnode_record.h17 extern int sepol_node_compare(const sepol_node_t * node,
20 extern int sepol_node_compare2(const sepol_node_t * node,
33 const sepol_node_t * node,
40 const sepol_node_t * node, char **addr);
43 const sepol_node_t * node,
47 sepol_node_t * node,
51 sepol_node_t * node,
56 const sepol_node_t * node, char **mask);
59 const sepol_node_t * node,
63 sepol_node_t * node,
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_c_proto.py43 def Comment(node, prefix=None, tabs=0):
44 # Generate a comment block from the provided Comment node.
45 comment = node.GetName()
49 # for this node.
60 def GetNodeComments(node, tabs=0):
62 # the provided node.
64 for doc in node.GetListOf('Comment'):
222 def GetMacroHelper(self, node):
223 macro = node.GetProperty('macro')
225 name = node
[all...]
/external/chromium_org/v8/src/compiler/arm/
H A Dinstruction-selector-arm.cc7 #include "src/compiler/node-matchers.h"
19 InstructionOperand* UseOperand(Node* node, InstructionCode opcode) { argument
20 if (CanBeImmediate(node, opcode)) {
21 return UseImmediate(node);
23 return UseRegister(node);
26 bool CanBeImmediate(Node* node, InstructionCode opcode) { argument
27 Int32Matcher m(node);
113 Node* node) {
115 selector->Emit(opcode, g.DefineAsRegister(node),
116 g.UseRegister(node
112 VisitRRRFloat64(InstructionSelector* selector, ArchOpcode opcode, Node* node) argument
121 TryMatchROR(InstructionSelector* selector, InstructionCode* opcode_return, Node* node, InstructionOperand** value_return, InstructionOperand** shift_return) argument
140 TryMatchASR(InstructionSelector* selector, InstructionCode* opcode_return, Node* node, InstructionOperand** value_return, InstructionOperand** shift_return) argument
159 TryMatchLSL(InstructionSelector* selector, InstructionCode* opcode_return, Node* node, InstructionOperand** value_return, InstructionOperand** shift_return) argument
178 TryMatchLSR(InstructionSelector* selector, InstructionCode* opcode_return, Node* node, InstructionOperand** value_return, InstructionOperand** shift_return) argument
197 TryMatchShift(InstructionSelector* selector, InstructionCode* opcode_return, Node* node, InstructionOperand** value_return, InstructionOperand** shift_return) argument
209 TryMatchImmediateOrShift(InstructionSelector* selector, InstructionCode* opcode_return, Node* node, size_t* input_count_return, InstructionOperand** inputs) argument
229 VisitBinop(InstructionSelector* selector, Node* node, InstructionCode opcode, InstructionCode reverse_opcode, FlagsContinuation* cont) argument
277 VisitBinop(InstructionSelector* selector, Node* node, InstructionCode opcode, InstructionCode reverse_opcode) argument
284 VisitLoad(Node* node) argument
325 VisitStore(Node* node) argument
380 EmitBic(InstructionSelector* selector, Node* node, Node* left, Node* right) argument
397 VisitWord32And(Node* node) argument
447 VisitWord32Or(Node* node) argument
452 VisitWord32Xor(Node* node) argument
473 VisitShift(InstructionSelector* selector, Node* node, TryMatchShift try_match_shift, FlagsContinuation* cont) argument
508 VisitShift(InstructionSelector* selector, Node* node, TryMatchShift try_match_shift) argument
515 VisitWord32Shl(Node* node) argument
520 VisitWord32Shr(Node* node) argument
544 VisitWord32Sar(Node* node) argument
549 VisitWord32Ror(Node* node) argument
554 VisitInt32Add(Node* node) argument
573 VisitInt32Sub(Node* node) argument
587 VisitInt32Mul(Node* node) argument
633 VisitDiv(InstructionSelector* selector, Node* node, ArchOpcode div_opcode, ArchOpcode f64i32_opcode, ArchOpcode i32f64_opcode) argument
644 VisitInt32Div(Node* node) argument
649 VisitInt32UDiv(Node* node) argument
654 VisitMod(InstructionSelector* selector, Node* node, ArchOpcode div_opcode, ArchOpcode f64i32_opcode, ArchOpcode i32f64_opcode) argument
676 VisitInt32Mod(Node* node) argument
681 VisitInt32UMod(Node* node) argument
686 VisitChangeInt32ToFloat64(Node* node) argument
693 VisitChangeUint32ToFloat64(Node* node) argument
700 VisitChangeFloat64ToInt32(Node* node) argument
707 VisitChangeFloat64ToUint32(Node* node) argument
714 VisitFloat64Add(Node* node) argument
735 VisitFloat64Sub(Node* node) argument
749 VisitFloat64Mul(Node* node) argument
760 VisitFloat64Div(Node* node) argument
765 VisitFloat64Mod(Node* node) argument
772 VisitFloat64Sqrt(Node* node) argument
833 VisitInt32AddWithOverflow(Node* node, FlagsContinuation* cont) argument
839 VisitInt32SubWithOverflow(Node* node, FlagsContinuation* cont) argument
846 VisitWordCompare(InstructionSelector* selector, Node* node, InstructionCode opcode, FlagsContinuation* cont, bool commutative) argument
889 VisitWord32Test(Node* node, FlagsContinuation* cont) argument
927 VisitWord32Compare(Node* node, FlagsContinuation* cont) argument
933 VisitFloat64Compare(Node* node, FlagsContinuation* cont) argument
[all...]
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalysis_results_test.js31 var node;
36 node = table.lastNode;
37 assertEquals('false_value', node.children[0].innerText);
38 assertEquals('false', node.children[1].innerText);
42 node = table.lastNode;
43 assertEquals('true_value', node.children[0].innerText);
44 assertEquals('true', node.children[1].innerText);
48 node = table.lastNode;
49 assertEquals('string_value', node.children[0].innerText);
50 assertEquals('"a string"', node
[all...]
/external/chromium_org/chrome/browser/extensions/api/bookmarks/
H A Dbookmark_apitest.cc34 base::DictionaryValue* node = new base::DictionaryValue(); local
35 node->SetString("name", "Managed Bookmark");
36 node->SetString("url", "http://www.chromium.org");
37 list.Append(node);
38 node = new base::DictionaryValue();
39 node->SetString("name", "Managed Folder");
40 node->Set("children", new base::ListValue());
41 list.Append(node);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dearcon_util.js16 * Returns the id of an earcon to play along with the description for a node.
18 * @param {Node} node The node to get the earcon for.
21 cvox.EarconUtil.getEarcon = function(node) {
22 var earcon = cvox.AriaUtil.getEarcon(node);
27 switch (node.tagName) {
31 if (node.hasAttribute('href')) {
36 if (cvox.DomUtil.hasLongDesc(node)) {
47 switch (node.type) {
54 if (node
[all...]
/external/chromium_org/content/renderer/
H A Ddom_utils.cc12 const blink::WebNode& node) {
13 blink::WebNode selected_node = node;
16 // we need to extract the parent <a/> node.
11 ExtractParentAnchorNode( const blink::WebNode& node) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeFilter.cpp30 short NodeFilter::acceptNode(Node* node, ExceptionState& exceptionState) const argument
33 return m_condition ? m_condition->acceptNode(node, exceptionState) : static_cast<short>(FILTER_ACCEPT);
H A DTreeScopeAdopter.cpp56 for (Node* node = &root; node; node = NodeTraversal::next(*node, &root)) {
57 updateTreeScope(*node);
61 axObjectCache->remove(node);
62 moveNodeToNewDocument(*node, oldDocument, newDocument);
63 } else if (node->hasRareData()) {
64 NodeRareData* rareData = node->rareData();
69 if (!node
130 moveNodeToNewDocument(Node& node, Document& oldDocument, Document& newDocument) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DDoDidNodeVisitor.java7 * Pre-visit node. Visitable children (if any) of {@code node} will be visited afterwards.
8 * @param node
10 void doVisit(Node node); argument
13 * Post-visit node. The method is invoked once all visitable children (if any) of {@code node}
15 * @param node
17 void didVisit(Node node); argument
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dtest_xml_utils.cc23 void InternalGetNodesWithName(const TiXmlNode* node, const std::string& name, argument
25 if (node->ValueStr() == name)
26 wanted_nodes->push_back(node);
27 for (const TiXmlNode* child = node->FirstChild();
33 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node, argument
36 InternalGetNodesWithName(node, name, wanted_nodes);
40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node, argument
42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute();
/external/chromium_org/tools/grit/grit/tool/
H A Dtoolbar_postprocess.py14 import grit.node.empty namespace
15 from grit.node import misc
31 grdnode: the root node of the grd xml data generated by
35 The root node of the processed GRD tree.
41 identifiers = grit.node.empty.IdentifiersNode()
55 for node in messages.children[:]:
56 name_attr = node.attrs['name']
98 previous_node = node
105 new_node = grit.node.empty.MessagesNode()
111 def AddIdentifiers(self, rctext, node)
[all...]
/external/chromium_org/v8/src/compiler/
H A Dphi-reducer.h17 virtual Reduction Reduce(Node* node) OVERRIDE {
18 if (node->opcode() != IrOpcode::kPhi &&
19 node->opcode() != IrOpcode::kEffectPhi)
22 int n = node->op()->InputCount();
23 if (n == 1) return Replace(node->InputAt(0));
26 Node::Inputs inputs = node->inputs();
29 if (input != node && input != replacement) {
34 DCHECK_NE(node, replacement);
/external/sfntly/cpp/src/test/
H A Dtest_xml_utils.cc23 void InternalGetNodesWithName(const TiXmlNode* node, const std::string& name, argument
25 if (node->ValueStr() == name)
26 wanted_nodes->push_back(node);
27 for (const TiXmlNode* child = node->FirstChild();
33 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node, argument
36 InternalGetNodesWithName(node, name, wanted_nodes);
40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node, argument
42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute();
/external/skia/src/core/
H A DSkQuadTree.cpp57 void SkQuadTree::insert(Node* node, Entry* entry) { argument
59 if (NULL != node->fChildren[0]) {
60 switch(child_intersect(entry->fBounds, node->fSplitPoint)) {
62 this->insert(node->fChildren[kTopLeft], entry);
65 this->insert(node->fChildren[kTopRight], entry);
68 this->insert(node->fChildren[kBottomLeft], entry);
71 this->insert(node->fChildren[kBottomRight], entry);
74 node->fEntries.push(entry);
78 // No children yet, add to this node
79 node
86 split(Node* node) argument
113 search(Node* node, const SkIRect& query, SkTDArray<void*>* results) const argument
132 clear(Node* node) argument
[all...]
/external/chromium_org/chrome/browser/resources/sync_internals/
H A Dsync_node_browser.css5 #sync-node-browser-refresher {
9 #sync-node-browser-refresher > * {
13 #sync-node-browser-container {
18 #sync-node-tree-container {
29 #sync-node-tree {
36 #sync-node-tree .leaf .tree-label {
40 #sync-node-splitter {
50 #sync-node-details-container {
57 #node-details {
61 #node
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAAltCommand.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 setExpression(PExpression node) argument
84 if(node !
102 setCommand(PCommand node) argument
[all...]
H A DAAutoescapeCommand.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 setExpression(PExpression node) argument
84 if(node !
102 setCommand(PCommand node) argument
[all...]
H A DAEscapeCommand.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 setExpression(PExpression node) argument
84 if(node !
102 setCommand(PCommand node) argument
[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...]

Completed in 1716 milliseconds

1234567891011>>