Searched refs:node (Results 251 - 275 of 3060) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateLimitations.cpp16 // Traverses a node to check if it represents a constant index expression.
31 // Returns true if the parsed node represents a constant index expression.
146 bool ValidateLimitations::visitBinary(Visit, TIntermBinary *node) argument
149 validateOperation(node, node->getLeft());
152 switch (node->getOp())
156 validateIndexing(node);
164 bool ValidateLimitations::visitUnary(Visit, TIntermUnary *node) argument
167 validateOperation(node, node
172 visitAggregate(Visit, TIntermAggregate *node) argument
184 visitLoop(Visit, TIntermLoop *node) argument
223 validateLoopType(TIntermLoop *node) argument
236 validateForLoopHeader(TIntermLoop *node) argument
255 validateForLoopInit(TIntermLoop *node) argument
312 validateForLoopCond(TIntermLoop *node, int indexSymbolId) argument
372 validateForLoopExpr(TIntermLoop *node, int indexSymbolId) argument
453 validateFunctionCall(TIntermAggregate *node) argument
498 validateOperation(TIntermOperator *node, TIntermNode* operand) argument
515 isConstExpr(TIntermNode *node) argument
521 isConstIndexExpr(TIntermNode *node) argument
530 validateIndexing(TIntermBinary *node) argument
[all...]
H A DInitializeVariables.h35 virtual bool visitBinary(Visit, TIntermBinary *node) { return false; } argument
36 virtual bool visitUnary(Visit, TIntermUnary *node) { return false; } argument
37 virtual bool visitSelection(Visit, TIntermSelection *node) { return false; } argument
38 virtual bool visitLoop(Visit, TIntermLoop *node) { return false; } argument
39 virtual bool visitBranch(Visit, TIntermBranch *node) { return false; } argument
41 virtual bool visitAggregate(Visit visit, TIntermAggregate* node);
H A DScalarizeVecAndMatConstructorArgs.cpp22 TIntermTyped *node = sequence[ii]->getAsTyped(); local
23 if (node && node->isMatrix())
33 TIntermTyped *node = sequence[ii]->getAsTyped(); local
34 if (node && node->isVector())
46 TIntermConstantUnion *node = new TIntermConstantUnion(u, type); local
47 return node;
74 bool ScalarizeVecAndMatConstructorArgs::visitAggregate(Visit visit, TIntermAggregate *node) argument
78 switch (node
162 TIntermTyped *node = original[ii]->getAsTyped(); local
[all...]
H A DForLoopUnroll.h34 virtual bool visitBinary(Visit, TIntermBinary *node);
35 virtual bool visitLoop(Visit, TIntermLoop *node);
36 virtual void visitSymbol(TIntermSymbol *node);
/external/chromium_org/v8/src/compiler/
H A Djs-typed-lowering.h11 #include "src/compiler/node.h"
25 virtual Reduction Reduce(Node* node) OVERRIDE;
34 Reduction ReplaceEagerly(Node* old, Node* node);
35 Reduction ReplaceWith(Node* node) { return Reducer::Replace(node); } argument
36 Reduction ReduceJSAdd(Node* node);
37 Reduction ReduceJSComparison(Node* node);
38 Reduction ReduceJSLoadProperty(Node* node);
39 Reduction ReduceJSStoreProperty(Node* node);
40 Reduction ReduceJSEqual(Node* node, boo
[all...]
H A Djs-context-specialization.cc6 #include "src/compiler/generic-node-inl.h"
10 #include "src/compiler/node-aux-data-inl.h"
11 #include "src/compiler/node-matchers.h"
12 #include "src/compiler/node-properties-inl.h"
23 GenericGraphVisit::Control Post(Node* node) { argument
24 switch (node->opcode()) {
26 Reduction r = spec_->ReduceJSLoadContext(node);
27 if (r.Changed() && r.replacement() != node) {
28 NodeProperties::ReplaceWithValue(node, r.replacement());
29 node
61 ReduceJSLoadContext(Node* node) argument
109 ReduceJSStoreContext(Node* node) argument
[all...]
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_manager.cc124 ui::AXNode* node) {
125 return GetFromID(node->id());
190 // Find the node corresponding to the id that's the target of the
192 ui::AXNode* node = tree_->GetFromId(param.id); local
193 if (!node)
199 SetFocus(node, false);
212 NotifyAccessibilityEvent(event_type, GetFromAXNode(node));
222 ui::AXNode* node = obj->node(); local
223 node
123 GetFromAXNode( ui::AXNode* node) argument
230 BrowserAccessibility* node = BrowserAccessibilityManager::GetFocus(root); local
253 SetFocus(ui::AXNode* node, bool notify) argument
267 DoDefaultAction( const BrowserAccessibility& node) argument
273 ScrollToMakeVisible( const BrowserAccessibility& node, gfx::Rect subfocus) argument
280 ScrollToPoint( const BrowserAccessibility& node, gfx::Point point) argument
287 SetTextSelection( const BrowserAccessibility& node, int start_offset, int end_offset) argument
301 NextInTreeOrder( BrowserAccessibility* node) argument
320 PreviousInTreeOrder( BrowserAccessibility* node) argument
335 OnNodeWillBeDeleted(ui::AXNode* node) argument
348 OnNodeCreated(ui::AXNode* node) argument
355 OnNodeChanged(ui::AXNode* node) argument
359 OnNodeCreationFinished(ui::AXNode* node) argument
363 OnNodeChangeFinished(ui::AXNode* node) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dhamt.c146 HAMT_delete_trie(HAMTNode *node) argument
148 if (IsSubTrie(node)) {
152 BitCount(Size, node->BitMapKey);
158 HAMT_delete_trie(&(GetSubTrie(node))[i]);
159 yasm_xfree(GetSubTrie(node));
187 int (*func) (/*@dependent@*/ /*@null@*/ void *node,
222 HAMTNode *node, *newnodes; local
230 node = &hamt->root[keypart];
232 if (!node->BaseValue) {
233 node
186 HAMT_traverse(HAMT *hamt, void *d, int (*func) ( void *node, void *d)) argument
379 HAMTNode *node; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dnode_breadcrumb.js22 * untagged node.
47 * Tags the current node.
72 * @param {Node} node Root of the subtree which to mark.
75 cvox.NodeBreadcrumb.prototype.smartStart_ = function(node) {
76 for (var i = 0; i < node.children.length; ++i) {
77 var child = node.children[i];
89 * Note: modifies the node passed in.
90 * @param {Node} node The node to mark.
93 cvox.NodeBreadcrumb.prototype.setNeeded_ = function(node) {
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Daria_util.js151 * Checks if a node should be treated as a hidden node because of its ARIA
154 * @param {Node} targetNode The node to check.
174 * Checks if a node should be treated as a hidden node because of its ARIA
176 * descendant of a hidden node, call isHiddenRecursive.
178 * @param {Node} targetNode The node to check.
196 * Checks if a node should be treated as a visible node because of its ARIA
198 * It is possible to force a node t
[all...]
H A Dbraille_util.js31 * DOM tree of a selected node.
130 * Gets the braille name for a node.
133 * @param {Node} node The node.
136 cvox.BrailleUtil.getName = function(node) {
137 if (!node) {
140 return cvox.DomUtil.getName(node).trim();
145 * Gets the braille role message id for a node.
147 * @param {Node} node The node
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCPUProfileDataModel.js41 function totalHitCount(node) {
42 var result = node.hitCount;
43 for (var i = 0; i < node.children.length; i++)
44 result += totalHitCount(node.children[i]);
53 function calculateTimesForNode(node) {
54 node.selfTime = node.hitCount * samplingInterval;
55 var totalHitCount = node.hitCount;
56 for (var i = 0; i < node.children.length; i++)
57 totalHitCount += calculateTimesForNode(node
[all...]
/external/jemalloc/src/
H A Dchunk.c14 * Trees of chunks that were previously allocated (trees differ only in node
48 extent_node_t *node; local
70 node = extent_tree_szad_nsearch(chunks_szad, &key);
71 if (node == NULL) {
75 leadsize = ALIGNMENT_CEILING((uintptr_t)node->addr, alignment) -
76 (uintptr_t)node->addr;
77 assert(node->size >= leadsize + size);
78 trailsize = node->size - leadsize - size;
79 ret = (void *)((uintptr_t)node->addr + leadsize);
80 zeroed = node
262 extent_node_t *xnode, *node, *prev, *xprev, key; local
[all...]
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_editor.cc17 const BookmarkNode* node; local
28 node = model->AddURL(parent, insert_index, new_title, new_url);
30 node = model->AddFolder(parent, insert_index, new_title);
32 model->AddURL(node, node->child_count(), details.urls[i].second,
41 return node;
90 const BookmarkNode* node) {
92 details.existing_node = node;
93 if (node)
94 details.parent_node = node
89 EditNode( const BookmarkNode* node) argument
134 const BookmarkNode* node = details.existing_node; local
156 const BookmarkNode* node = details.existing_node; local
[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/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_reuse.c79 ptw32_mcs_local_node_t node; local
81 ptw32_mcs_lock_acquire(&ptw32_thread_reuse_lock, &node);
101 ptw32_mcs_lock_release(&node);
118 ptw32_mcs_local_node_t node; local
120 ptw32_mcs_lock_acquire(&ptw32_thread_reuse_lock, &node);
150 ptw32_mcs_lock_release(&node);
H A Dpthread_kill.c80 ptw32_mcs_local_node_t node; local
82 ptw32_mcs_lock_acquire(&ptw32_thread_reuse_lock, &node);
93 ptw32_mcs_lock_release(&node);
H A Dptw32_processTerminate.c68 ptw32_mcs_local_node_t node; local
90 ptw32_mcs_lock_acquire(&ptw32_thread_reuse_lock, &node);
100 ptw32_mcs_lock_release(&node);
/external/chromium_org/third_party/WebKit/Source/core/dom/
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))
H A DRenderTreeBuilder.h43 RenderTreeBuilder(Node* node, RenderStyle* style) argument
44 : m_node(node)
48 ASSERT(!node->renderer());
49 ASSERT(node->needsAttach());
50 ASSERT(node->document().inStyleRecalc());
52 // FIXME: We should be able to ASSERT(node->inActiveDocument()) but childrenChanged is called
58 m_renderingParent = NodeRenderingTraversal::parent(node, &m_parentDetails);
/external/chromium_org/third_party/polymer/components-chromium/paper-menu-button/
H A Dpaper-menu-button-transition-extracted.js11 setup: function(node) {
14 var bg = node.querySelector('.paper-menu-button-overlay-bg');
19 transitionOpened: function(node, opened) {
29 var ink = node.querySelector('.paper-menu-button-overlay-ink');
30 var offset = 40 / Math.max(node.cachedSize.width, node.cachedSize.height);
41 var bg = node.querySelector('.paper-menu-button-overlay-bg');
44 'transform': 'scale(' + 40 / node.cachedSize.width + ',' + 40 / node.cachedSize.height + ')',
57 var nodes = window.ShadowDOMPolyfill ? Platform.queryAllShadows(node
[all...]
/external/chromium_org/tools/idl_parser/
H A Didl_parser_test.py25 def _TestNode(self, node):
26 comments = node.GetListOf('Comment')
30 msg = 'Expecting %s, but found %s.\n' % (value, str(node))
31 self.assertEqual(value, str(node), msg)
34 msg = node.GetLogLine('Expecting\n\t%s\nbut found \n\t%s\n' % (
35 value, str(node)))
36 self.assertEqual(value, node.GetName(), msg)
40 actual = str(node.GetProperty(key))
45 quick = '\n'.join(node.Tree())
46 lineno = node
[all...]
/external/e2fsprogs/lib/uuid/
H A Dunparse.c59 uuid.node[0], uuid.node[1], uuid.node[2],
60 uuid.node[3], uuid.node[4], uuid.node[5]);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDOMPresentationUtils.js34 WebInspector.DOMPresentationUtils.decorateNodeLabel = function(node, parentElement)
36 var title = node.nodeNameInCorrectCase();
42 var idAttribute = node.getAttribute("id");
55 var classAttribute = node.getAttribute("class");
94 * @param {?WebInspector.DOMNode} node
97 WebInspector.DOMPresentationUtils.linkifyNodeReference = function(node)
99 if (!node)
100 return document.createTextNode(WebInspector.UIString("<node>"));
103 link.className = "node-link";
104 WebInspector.DOMPresentationUtils.decorateNodeLabel(node, lin
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_model_observer.h22 // Called when a node is added to the model.
23 virtual void EnhancedBookmarkAdded(const BookmarkNode* node) = 0;
25 // Called when a node is removed from the model.
26 virtual void EnhancedBookmarkRemoved(const BookmarkNode* node) = 0;
31 // Called when the remote id of a node changes. If |remote_id| is empty, the
34 virtual void EnhancedBookmarkRemoteIdChanged(const BookmarkNode* node, argument

Completed in 711 milliseconds

<<11121314151617181920>>