Searched refs:node (Results 151 - 175 of 1513) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorNodeFinder.cpp78 for (auto* node = parentNode; node; node = NodeTraversal::next(node, parentNode)) {
79 switch (node->nodeType()) {
83 if (node->nodeValue().findIgnoringCase(m_whitespaceTrimmedQuery) != notFound)
84 m_results.add(node);
88 if (matchesElement(*toElement(node)))
89 m_results.add(node);
92 if (node
145 Node* node = result->snapshotItem(i, ec); local
[all...]
/macosx-10.10/WebCore-7600.1.25/page/scrolling/
H A DAsyncScrollingCoordinator.cpp67 // If there isn't a root node yet, don't do anything. We'll be called again after creating one.
75 // just the root node. But right now, this concept only applies to the root.
82 ScrollingStateFrameScrollingNode* node = toScrollingStateFrameScrollingNode(m_scrollingStateTree->stateNodeForID(frameView->scrollLayerID()));
83 if (!node)
88 node->setScrollbarPaintersFromScrollbars(verticalScrollbar, horizontalScrollbar);
90 node->setFrameScaleFactor(frameView->frame().frameScaleFactor());
91 node->setHeaderHeight(frameView->headerHeight());
92 node->setFooterHeight(frameView->footerHeight());
93 node->setTopContentInset(frameView->topContentInset());
95 node
138 ScrollingStateFrameScrollingNode* node = toScrollingStateFrameScrollingNode(m_scrollingStateTree->stateNodeForID(frameView->scrollLayerID())); local
367 ScrollingStateFrameScrollingNode* node = toScrollingStateFrameScrollingNode(m_scrollingStateTree->stateNodeForID(nodeID)); local
388 ScrollingStateOverflowScrollingNode* node = toScrollingStateOverflowScrollingNode(m_scrollingStateTree->stateNodeForID(nodeID)); local
409 ScrollingStateNode* node = m_scrollingStateTree->stateNodeForID(nodeID); local
459 ScrollingStateFrameScrollingNode* node = toScrollingStateFrameScrollingNode(m_scrollingStateTree->stateNodeForID(frameView->scrollLayerID())); local
[all...]
H A DScrollingTreeNode.cpp57 void ScrollingTreeNode::removeChild(ScrollingTreeNode* node) argument
62 size_t index = m_children->find(node);
64 // The index will be notFound if the node to remove is a deeper-than-1-level descendant or
65 // if node is the root state node.
72 child->removeChild(node);
/macosx-10.10/tidy-15.15/tidy/src/
H A Dpprint.c37 static void PPrintAsp( TidyDocImpl* doc, uint indent, Node* node );
38 static void PPrintJste( TidyDocImpl* doc, uint indent, Node* node );
39 static void PPrintPhp( TidyDocImpl* doc, uint indent, Node* node );
40 static int TextEndsWithNewline( Lexer *lexer, Node *node, uint mode );
41 static int TextStartsWithWhitespace( Lexer *lexer, Node *node, uint start, uint mode );
42 static Bool InsideHead( TidyDocImpl* doc, Node *node );
43 static Bool ShouldIndent( TidyDocImpl* doc, Node *node );
357 Node * node; local
362 for (node = element->content; node; nod
1118 AttrIndent( TidyDocImpl* doc, Node* node, AttVal* ARG_UNUSED(attr) ) argument
1134 AttrNoIndentFirst( Node* node, AttVal* attr ) argument
1144 PPrintAttribute( TidyDocImpl* doc, uint indent, Node *node, AttVal *attr ) argument
1283 AfterSpaceImp(Lexer *lexer, Node *node, Bool isEmpty) argument
1318 AfterSpace(Lexer *lexer, Node *node) argument
1728 TextEndsWithNewline(Lexer *lexer, Node *node, uint mode ) argument
1744 TextStartsWithWhitespace( Lexer *lexer, Node *node, uint start, uint mode ) argument
1931 Node *node = TY_(FindBody)( doc ); local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGInvalidationPointInjectionPhase.cpp85 void handle(unsigned nodeIndex, Node* node) argument
87 if (m_originThatHadFire.isSet() && m_originThatHadFire != node->origin.forExit) {
88 insertInvalidationCheck(nodeIndex, node);
92 if (writesOverlap(m_graph, node, Watchpoint_fire))
93 m_originThatHadFire = node->origin.forExit;
96 void insertInvalidationCheck(unsigned nodeIndex, Node* node) argument
98 m_insertionSet.insertNode(nodeIndex, SpecNone, InvalidationPoint, node->origin);
H A DDFGLivenessAnalysisPhase.cpp95 Node* node = block->at(nodeIndex); local
109 // Given a node:
115 switch (node->op()) {
117 Node* phi = node->phi();
119 m_live.remove(node);
120 m_live.add(node->child1().node());
129 m_live.remove(node);
130 DFG_NODE_DO_TO_CHILDREN(m_graph, node, addChildUse);
151 edge.setKillStatus(m_live.add(edge.node())
[all...]
H A DDFGIntegerCheckCombiningPhase.cpp196 Node* node = block->at(nodeIndex); local
197 RangeKeyAndAddend data = rangeKeyAndAddend(node);
199 dataLog("For ", node, ": ", data, "\n");
209 range.m_maxOrigin = node->origin.semantic;
212 range.m_minOrigin = node->origin.semantic;
217 range.m_minOrigin = node->origin.semantic;
218 range.m_maxOrigin = node->origin.semantic;
226 Node* node = block->at(nodeIndex); local
227 RangeKeyAndAddend data = rangeKeyAndAddend(node);
240 nodeIndex, NodeOrigin(range.m_minOrigin, node
307 rangeKeyAndAddend(Node* node) argument
[all...]
H A DDFGSpeculativeJIT.cpp133 void SpeculativeJIT::speculationCheck(ExitKind kind, JSValueSource jsValueSource, Node* node, MacroAssembler::Jump jumpToFail) argument
139 m_jit.jitCode()->appendOSRExit(OSRExit(kind, jsValueSource, m_jit.graph().methodOfGettingAValueProfileFor(node), this, m_stream->size()));
142 void SpeculativeJIT::speculationCheck(ExitKind kind, JSValueSource jsValueSource, Node* node, const MacroAssembler::JumpList& jumpsToFail) argument
148 m_jit.jitCode()->appendOSRExit(OSRExit(kind, jsValueSource, m_jit.graph().methodOfGettingAValueProfileFor(node), this, m_stream->size()));
151 OSRExitJumpPlaceholder SpeculativeJIT::speculationCheck(ExitKind kind, JSValueSource jsValueSource, Node* node) argument
158 m_jit.jitCode()->appendOSRExit(OSRExit(kind, jsValueSource, m_jit.graph().methodOfGettingAValueProfileFor(node), this, m_stream->size()));
165 return speculationCheck(kind, jsValueSource, nodeUse.node());
171 speculationCheck(kind, jsValueSource, nodeUse.node(), jumpToFail);
177 speculationCheck(kind, jsValueSource, nodeUse.node(), jumpsToFail);
180 void SpeculativeJIT::speculationCheck(ExitKind kind, JSValueSource jsValueSource, Node* node, MacroAssemble argument
196 emitInvalidationPoint(Node* node) argument
211 terminateSpeculativeExecution(ExitKind kind, JSValueRegs jsValueRegs, Node* node) argument
286 Node* node = info.node(); local
429 Node* node = info.node(); local
676 checkArray(Node* node) argument
744 arrayify(Node* node, GPRReg baseReg, GPRReg propertyReg) argument
780 arrayify(Node* node) argument
826 useChildren(Node* node) argument
855 compileIn(Node* node) argument
912 nonSpeculativeCompare(Node* node, MacroAssembler::RelationalCondition cond, S_JITOperation_EJJ helperFunction) argument
933 nonSpeculativeStrictEq(Node* node, bool invert) argument
1119 compilePeepHoleDoubleBranch(Node* node, Node* branchNode, JITCompiler::DoubleCondition condition) argument
1131 compilePeepHoleObjectEquality(Node* node, Node* branchNode) argument
1208 compilePeepHoleBooleanBranch(Node* node, Node* branchNode, JITCompiler::RelationalCondition condition) argument
1239 compilePeepHoleInt32Branch(Node* node, Node* branchNode, JITCompiler::RelationalCondition condition) argument
1271 compilePeepHoleBranch(Node* node, MacroAssembler::RelationalCondition condition, MacroAssembler::DoubleCondition doubleCondition, S_JITOperation_EJJ operation) argument
1321 noticeOSRBirth(Node* node) argument
1332 compileMovHint(Node* node) argument
1379 Node* node = m_block->variablesAtHead[i]; local
1494 Node* node = m_jit.graph().m_arguments[i]; local
1600 compileDoublePutByVal(Node* node, SpeculateCellOperand& base, SpeculateStrictInt32Operand& property) argument
1676 compileGetCharCodeAt(Node* node) argument
1711 compileGetByValOnString(Node* node) argument
1805 compileFromCharCode(Node* node) argument
1824 checkGeneratedTypeForToInt32(Node* node) argument
1855 compileValueToInt32(Node* node) argument
2016 compileUInt32ToNumber(Node* node) argument
2050 compileDoubleAsInt32(Node* node) argument
2070 compileDoubleRep(Node* node) argument
2160 compileValueRep(Node* node) argument
2264 jumpForTypedArrayOutOfBounds(Node* node, GPRReg baseGPR, GPRReg indexGPR) argument
2281 emitTypedArrayBoundsCheck(Node* node, GPRReg baseGPR, GPRReg indexGPR) argument
2289 compileGetByValOnIntTypedArray(Node* node, TypedArrayType type) argument
2354 compilePutByValForIntTypedArray(GPRReg base, GPRReg property, Node* node, TypedArrayType type) argument
2490 compileGetByValOnFloatTypedArray(Node* node, TypedArrayType type) argument
2523 compilePutByValForFloatTypedArray(GPRReg base, GPRReg property, Node* node, TypedArrayType type) argument
2601 compileInstanceOf(Node* node) argument
2649 compileAdd(Node* node) argument
2764 compileMakeRope(Node* node) argument
2845 compileArithSub(Node* node) argument
2946 compileArithNegate(Node* node) argument
3024 compileArithMul(Node* node) argument
3137 compileArithDiv(Node* node) argument
3274 compileArithMod(Node* node) argument
3549 compare(Node* node, MacroAssembler::RelationalCondition condition, MacroAssembler::DoubleCondition doubleCondition, S_JITOperation_EJJ operation) argument
3607 compileStrictEq(Node* node) argument
3726 compileBooleanCompare(Node* node, MacroAssembler::RelationalCondition condition) argument
3737 compileStringEquality( Node* node, GPRReg leftGPR, GPRReg rightGPR, GPRReg lengthGPR, GPRReg leftTempGPR, GPRReg rightTempGPR, GPRReg leftTemp2GPR, GPRReg rightTemp2GPR, JITCompiler::JumpList fastTrue, JITCompiler::JumpList fastFalse) argument
3804 compileStringEquality(Node* node) argument
3835 compileStringToUntypedEquality(Node* node, Edge stringEdge, Edge untypedEdge) argument
3875 compileStringIdentEquality(Node* node) argument
3898 compileStringIdentToNotStringVarEquality( Node* node, Edge stringEdge, Edge notStringVarEdge) argument
3929 compileStringZeroLength(Node* node) argument
3946 compileConstantStoragePointer(Node* node) argument
3954 compileGetIndexedPropertyStorage(Node* node) argument
3985 compileGetTypedArrayByteOffset(Node* node) argument
4016 compileGetByValOnArguments(Node* node) argument
4082 compileGetArgumentsLength(Node* node) argument
4107 compileGetArrayLength(Node* node) argument
4160 compileNewFunctionNoCheck(Node* node) argument
4170 compileNewFunctionExpression(Node* node) argument
4182 compileRegExpExec(Node* node) argument
4221 compileAllocatePropertyStorage(Node* node) argument
4260 compileReallocatePropertyStorage(Node* node) argument
4318 compileToStringOnCell(Node* node) argument
4391 compileNewStringObject(Node* node) argument
4431 compileNewTypedArray(Node* node) argument
4888 emitSwitchImm(Node* node, SwitchData* data) argument
4980 emitSwitchChar(Node* node, SwitchData* data) argument
5249 emitSwitchString(Node* node, SwitchData* data) argument
5317 emitSwitch(Node* node) argument
5351 compileStoreBarrier(Node* node) argument
5455 compileStoreBarrier(Node* node) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/page/scrolling/coordinatedgraphics/
H A DScrollingCoordinatorCoordinatedGraphics.cpp63 ScrollingStateNode* node = m_scrollingStateTree->stateNodeForID(nodeID); local
64 if (node && node->nodeType() == FixedNode)
65 toCoordinatedGraphicsLayer(node->layer())->setFixedToViewport(false);
79 ScrollingStateNode* node = m_scrollingStateTree->stateNodeForID(nodeID); local
80 if (!node)
86 ScrollingStateFixedNode* fixedNode = toScrollingStateFixedNode(node);
/macosx-10.10/swig-12/Source/Swig/
H A Dswigtree.h35 extern void appendChild(Node *node, Node *child);
36 extern void prependChild(Node *node, Node *child);
37 extern void removeNode(Node *node);
38 extern Node *copyNode(Node *node);
42 extern void Swig_require(const char *ns, Node *node, ...);
43 extern void Swig_save(const char *ns, Node *node, ...);
44 extern void Swig_restore(Node *node);
/macosx-10.10/WebCore-7600.1.25/html/
H A DLabelableElement.h55 inline bool isLabelableElement(const Node& node) { return node.isHTMLElement() && toHTMLElement(node).isLabelable(); } argument
/macosx-10.10/libxml2-26/libxml2/python/tests/
H A Dreader5.py23 node = reader.Expand() # expand the subtree variable
24 if node.xpathEval("@id = 'Aho'"): # use XPath on it
25 res = res + node.serialize()
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dreader5.py24 node = reader.Expand() # expand the subtree variable
25 if node.xpathEval("@id = 'Aho'"): # use XPath on it
26 res = res + node.serialize()
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dtree.rb173 def close_tree(node, recurse=None)
174 tk_send('closetree', tagid(node), recurse)
179 tk_send('delete', *(args.collect{|node| tagid(node)}))
183 def edit(node, text, *args)
184 tk_send('edit', tagid(node), text, *args)
188 def exist?(node)
189 bool(tk_send('exists', tagid(node)))
202 def index(node)
203 num_or_str(tk_send('index', tagid(node)))
[all...]
/macosx-10.10/cups-408/cups/cgi-bin/
H A Dhelp-index.c160 help_node_t *node; /* Current node */ local
168 for (node = (help_node_t *)cupsArrayFirst(hi->nodes);
169 node;
170 node = (help_node_t *)cupsArrayNext(hi->nodes))
173 help_delete_node(node);
184 * 'helpFindNode()' - Find a node in an index.
241 help_node_t *node; /* Current node */ local
284 node
446 help_node_t *node; /* Current node */ local
525 help_node_t *node; /* Current node */ local
771 help_node_t *node; /* Current node */ local
873 help_node_t *node; /* Current node */ local
[all...]
/macosx-10.10/apr-32/apr/apr/memory/unix/
H A Dapr_pools.c143 apr_memnode_t *node, **ref; local
147 while ((node = *ref) != NULL) {
148 *ref = node->next;
150 munmap(node, (node->index+1) << BOUNDARY_INDEX);
152 free(node);
215 apr_memnode_t *node, **ref; local
229 /* Find the index for this node size by
239 * our node will fit into.
252 * node i
362 allocator_free(apr_allocator_t *allocator, apr_memnode_t *node) argument
441 apr_allocator_free(apr_allocator_t *allocator, apr_memnode_t *node) argument
670 apr_memnode_t *active, *node; local
874 apr_memnode_t *node; local
963 apr_memnode_t *node; local
1038 apr_memnode_t *node; member in struct:psprintf_data
1049 apr_memnode_t *node, *active; local
1122 apr_memnode_t *active, *node; local
1460 debug_node_t *node; local
1539 debug_node_t *node; local
1893 debug_node_t *node; local
1955 debug_node_t *node; local
1988 debug_node_t *node; local
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DUtilities.js107 for (var node = this; node && node !== this.ownerDocument; node = node.parentNode)
108 if (node.nodeType === Node.ELEMENT_NODE && node.classList.contains(className))
109 return node;
119 for (var node = this; node
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DDOMTreeManager.js50 NodeInserted: "dom-tree-manager-node-inserted",
51 NodeRemoved: "dom-tree-manager-node-removed",
53 ChildNodeCountUpdated: "dom-tree-manager-child-node-count-updated",
54 DOMNodeWasInspected: "dom-tree-manager-dom-node-was-inspected",
64 // Use the flow node id, to avoid collisions when we change main document id.
140 var node = this._idToDOMNode[nodeId];
141 if (!node)
143 node._setAttribute(name, value);
144 this.dispatchEventToListeners(WebInspector.DOMTreeManager.Event.AttributeModified, { node: node, nam
246 var node = parent._insertChild(prev, payload); variable
[all...]
/macosx-10.10/libxml2-26/libxml2/include/libxml/
H A DdebugXML.h41 xmlNodePtr node,
45 xmlNodePtr node,
49 xmlNodePtr node,
81 xmlLsOneNode (FILE *output, xmlNodePtr node);
83 xmlLsCountNode (xmlNodePtr node);
116 xmlNodePtr node; member in struct:_xmlShellCtxt
127 * @node: a first node
128 * @node2: a second node
136 xmlNodePtr node,
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/include/libxml/
H A DdebugXML.h41 xmlNodePtr node,
45 xmlNodePtr node,
49 xmlNodePtr node,
81 xmlLsOneNode (FILE *output, xmlNodePtr node);
83 xmlLsCountNode (xmlNodePtr node);
116 xmlNodePtr node; member in struct:_xmlShellCtxt
127 * @node: a first node
128 * @node2: a second node
136 xmlNodePtr node,
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Ddomimpl.tcl39 namespace export document documentFragment node
100 # node:parentNode node:childNodes node:nodeType
103 # for a node type.
106 # Lists, such as child node lists, are Tcl list variables (ie scalar)
111 # A token is a FQ array element reference for a node.
121 # token token for node
200 node:nodeType documentFragment \
201 node
[all...]
/macosx-10.10/libxml2-26/libxml2/
H A Dcheck-relaxng-test-suite.py70 def handle_valid(node, schema):
76 child = node.children
111 def handle_invalid(node, schema):
117 child = node.children
151 def handle_correct(node):
157 child = node.children
177 def handle_incorrect(node):
183 child = node.children
209 def handle_resource(node, dir):
213 name = node
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dcheck-relaxng-test-suite.py70 def handle_valid(node, schema):
76 child = node.children
111 def handle_invalid(node, schema):
117 child = node.children
151 def handle_correct(node):
157 child = node.children
177 def handle_incorrect(node):
183 child = node.children
209 def handle_resource(node, dir):
213 name = node
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/
H A DPODIntervalTree.h150 // Starting from the given node, adds all overlaps with the given
154 void searchForOverlapsFrom(IntervalNode* node, AdapterType& adapter) const argument
156 if (!node)
163 IntervalNode* left = node->left();
170 // Check for overlap with current node.
171 adapter.collectIfNeeded(node->data());
176 if (!(adapter.highValue() < node->data().low()))
177 searchForOverlapsFrom<AdapterType>(node->right(), adapter);
180 virtual bool updateNode(IntervalNode* node) override
184 const T* curMax = &node
203 checkInvariantsFromNode(IntervalNode* node, T* currentMaxValue) const argument
[all...]
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLViewer.js75 nodeParentPairs.push({parentElement: root, node: child});
78 processNode(nodeParentPairs[i].parentElement, nodeParentPairs[i].node);
89 function processNode(parentElement, node)
99 if (processNode.processorsMap[node.nodeType])
100 processNode.processorsMap[node.nodeType].call(this, parentElement, node);
103 function processElement(parentElement, node)
105 if (!node.firstChild)
106 processEmptyElement(parentElement, node);
108 var child = node
[all...]

Completed in 319 milliseconds

1234567891011>>