Searched refs:node (Results 201 - 225 of 1513) sorted by relevance

1234567891011>>

/macosx-10.10/libxml2-26/libxml2/
H A Dxlink.c110 * @doc: the document containing the node
111 * @node: the node pointer itself
113 * Check whether the given node carries the attributes needed
119 * Returns the xlinkType of the node (XLINK_TYPE_NONE if there is no
123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) { argument
127 if (node == NULL) return(XLINK_TYPE_NONE);
128 if (doc == NULL) doc = node->doc;
133 } else if ((node->ns != NULL) &&
134 (xmlStrEqual(node
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxlink.c110 * @doc: the document containing the node
111 * @node: the node pointer itself
113 * Check whether the given node carries the attributes needed
119 * Returns the xlinkType of the node (XLINK_TYPE_NONE if there is no
123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) { argument
127 if (node == NULL) return(XLINK_TYPE_NONE);
128 if (doc == NULL) doc = node->doc;
133 } else if ((node->ns != NULL) &&
134 (xmlStrEqual(node
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/treeql/
H A Dtreeql84.tcl26 # apply the [$tree cmd {*}$args] form to each node
30 foreach node $nodes {
32 eval [list $tree] $cmd [list $node] $args
35 puts stderr "apply: $tree $cmd $node $args -> $application - $eo"
37 #puts stderr "Apply: $tree $cmd $node $args -> $application"
49 foreach node $nodes {
51 eval [list $tree] $cmd [list $node] $args
54 puts stderr "filter: $tree $cmd $node $args -> $application - $eo"
56 #puts stderr "Filter: $tree $cmd $node $args -> $application"
76 foreach node
[all...]
H A Dtreeql85.tcl26 # apply the [$tree cmd {*}$args] form to each node
30 foreach node $nodes {
32 $tree {*}$cmd $node {*}$args
34 puts stderr "apply ERROR: $tree $cmd $node $args -> $application - $eo"
36 #puts stderr "Apply: $tree $cmd $node $args -> $application"
48 foreach node $nodes {
50 $tree {*}$cmd $node {*}$args
52 puts stderr "filter ERROR: $tree $cmd $node $args -> $application - $eo"
54 #puts stderr "Filter: $tree $cmd $node $args -> $application"
74 foreach node
[all...]
/macosx-10.10/WebCore-7600.1.25/accessibility/ios/
H A DAccessibilityObjectIOS.mm67 if (!renderObject || !renderObject->node() || !renderObject->node()->isHTMLElement())
70 HTMLInputElement* inputElement = toHTMLInputElement(renderObject->node());
/macosx-10.10/WebCore-7600.1.25/editing/
H A DAppendNodeCommand.cpp37 AppendNodeCommand::AppendNodeCommand(PassRefPtr<ContainerNode> parent, PassRefPtr<Node> node) argument
40 , m_node(node)
49 static void sendAXTextChangedIgnoringLineBreaks(Node* node, AXObjectCache::AXTextChange textChange) argument
51 String nodeValue = node->nodeValue();
56 if (AXObjectCache* cache = node->document().existingAXObjectCache())
57 cache->nodeTextChangeNotification(node, textChange, 0, nodeValue);
H A DModifySelectionListLevel.cpp82 if (r && isListElement(r->node()))
83 endListChild = r->node();
93 Node* node = startNode; local
95 Node* next = node->nextSibling();
96 removeNode(node);
97 insertNodeBefore(node, refNode);
99 if (node == endNode)
102 node = next;
108 Node* node = startNode; local
110 Node* next = node
124 Node* node = startNode; local
[all...]
H A DSplitElementCommand.cpp51 for (Node* node = m_element2->firstChild(); node != m_atChild; node = node->nextSibling())
52 children.append(node);
84 for (Node* node = m_element1->firstChild(); node; node = node->nextSibling())
85 children.append(node);
[all...]
H A DApplyStyleCommand.cpp68 bool isLegacyAppleStyleSpan(const Node* node) argument
70 if (!node || !node->isHTMLElement())
73 const HTMLElement& element = toHTMLElement(*node);
363 // If the end node is before the start node (can only happen if the end node is
364 // an ancestor of the start node), we gather nodes up to the next sibling of the end node
373 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node i
429 dummySpanAncestorForNode(const Node* node) argument
456 splitAncestorsWithUnicodeBidi(Node* node, bool before, WritingDirection allowedDirection) argument
507 removeEmbeddingUpToEnclosingBlock(Node* node, Node* unsplitAncestor) argument
718 containsNonEditableRegion(Node* node) argument
762 RefPtr<Node> node = startNode; local
981 highestAncestorWithConflictingInlineStyle(EditingStyle* style, Node* node) argument
1001 applyInlineStyleToPushDown(Node* node, EditingStyle* style) argument
1121 RefPtr<Node> node = start.deprecatedNode(); local
1171 nodeFullySelected(Node *node, const Position &start, const Position &end) const argument
1183 nodeFullyUnselected(Node *node, const Position &start, const Position &end) const argument
1267 Node* node = position.containerNode(); local
1355 RefPtr<Node> node = startNode; local
1513 computedFontSize(Node* node) argument
1523 joinChildTextNodes(Node* node, const Position& start, const Position& end) argument
[all...]
/macosx-10.10/ruby-106/ruby/lib/rexml/
H A Dnode.rb6 # Represents a node in the tree. Nodes are never encountered except as
53 def each_recursive(&block) # :yields: node
54 self.elements.each {|node|
55 block.call(node)
56 node.each_recursive(&block)
62 def find_first_recursive(&block) # :yields: node
63 each_recursive {|node|
64 return node if block.call(node)
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/menubar/
H A Dmenubar.tcl26 # <node>
39 # <node-tag>
119 # node
227 set node [my ParseItem ${parent} ${name} ${istype} end ${more}]
429 # tag name for radiobutton node
673 foreach node [${mtree} children menubar] {
674 my MenuInstall ${wtop} ${mtop} ${node}
726 # node - mtree node containing the item to be created
735 method MenuInstall { wtop parent_path node } {
[all...]
H A Ddebug.tcl102 error "node (${name}) - not found"
113 set node [dict get ${nodes} ${name}]
114 set pnode [${node} parent]
116 puts [format "(%-12s) %-12s %s -> %s" ${pnode} ${node} ${name} [join ${children} {, }]]
128 error "node (${notfound}) - not found"
132 set node [my Name2Node ${name}]
133 puts "node(${name})"
135 foreach key [${node} attr.keys] {
139 foreach {key val} [${node} attrs.filter] {
170 foreach node [lsor
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGSpeculativeJIT64.cpp82 if (isInt32Constant(edge.node())) {
84 JSValue jsValue = jsNumber(valueOfInt32Constant(edge.node()));
86 } else if (isNumberConstant(edge.node())) {
88 JSValue jsValue(JSValue::EncodeAsDouble, valueOfNumberConstant(edge.node()));
91 ASSERT(isJSConstant(edge.node()));
92 JSValue jsValue = valueOfJSConstant(edge.node());
212 if (!isKnownCell(operand.node()))
222 if (!isKnownCell(operand.node()))
242 if (!isKnownCell(operand.node())) {
281 if (!isKnownCell(operand.node()))
319 nonSpeculativeCompareNull(Node* node, Edge operand, bool invert) argument
342 nonSpeculativePeepholeBranch(Node* node, Node* branchNode, MacroAssembler::RelationalCondition cond, S_JITOperation_EJJ helperFunction) argument
439 nonSpeculativeNonPeepholeCompare(Node* node, MacroAssembler::RelationalCondition cond, S_JITOperation_EJJ helperFunction) argument
486 nonSpeculativePeepholeStrictEq(Node* node, Node* branchNode, bool invert) argument
552 nonSpeculativeNonPeepholeStrictEq(Node* node, bool invert) argument
621 compileMiscStrictEq(Node* node) argument
637 emitCall(Node* node) argument
1178 compileObjectEquality(Node* node) argument
1404 compileInt32Compare(Node* node, MacroAssembler::RelationalCondition condition) argument
1417 compileInt52Compare(Node* node, MacroAssembler::RelationalCondition condition) argument
1430 compilePeepHoleInt52Branch(Node* node, Node* branchNode, JITCompiler::RelationalCondition condition) argument
1451 compileDoubleCompare(Node* node, MacroAssembler::DoubleCondition condition) argument
1540 compileLogicalNot(Node* node) argument
1684 emitBranch(Node* node) argument
1779 compile(Node* node) argument
[all...]
H A DDFGSpeculativeJIT32_64.cpp60 m_jit.move(Imm32(valueOfJSConstant(edge.node()).tag()), tagGPR);
61 m_jit.move(Imm32(valueOfJSConstant(edge.node()).payload()), payloadGPR);
64 info.fillJSValue(*m_stream, tagGPR, payloadGPR, isInt32Constant(edge.node()) ? DataFormatJSInt32 : DataFormatJS);
241 if (!isKnownCell(operand.node()))
250 if (!isKnownCell(operand.node()))
270 if (!isKnownCell(operand.node())) {
310 if (!isKnownCell(operand.node()))
318 if (!isKnownCell(operand.node()))
334 if (!isKnownCell(operand.node())) {
348 bool SpeculativeJIT::nonSpeculativeCompareNull(Node* node, Edg argument
371 nonSpeculativePeepholeBranch(Node* node, Node* branchNode, MacroAssembler::RelationalCondition cond, S_JITOperation_EJJ helperFunction) argument
477 nonSpeculativeNonPeepholeCompare(Node* node, MacroAssembler::RelationalCondition cond, S_JITOperation_EJJ helperFunction) argument
524 nonSpeculativePeepholeStrictEq(Node* node, Node* branchNode, bool invert) argument
574 nonSpeculativeNonPeepholeStrictEq(Node* node, bool invert) argument
620 compileMiscStrictEq(Node* node) argument
638 emitCall(Node* node) argument
1047 compileObjectEquality(Node* node) argument
1281 compileInt32Compare(Node* node, MacroAssembler::RelationalCondition condition) argument
1293 compileDoubleCompare(Node* node, MacroAssembler::DoubleCondition condition) argument
1383 compileLogicalNot(Node* node) argument
1507 emitBranch(Node* node) argument
1599 compileContiguousPutByVal(Node* node, BaseOperandType& base, PropertyOperandType& property, ValueOperandType& value, GPRReg valuePayloadReg, TagType valueTag) argument
1667 compile(Node* node) argument
[all...]
H A DDFGAvailability.h46 explicit Availability(Node* node) argument
47 : m_node(node)
58 Availability(Node* node, FlushedAt flushedAt) argument
59 : m_node(node)
74 Availability withNode(Node* node) const
76 return Availability(node, m_flushedAt);
89 Node* node() const function in class:JSC::DFG::Availability
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/lib/
H A Dtdom.tcl160 set node [$importedNode cloneNode -deep]
162 set node [$importedNode cloneNode]
164 return $node
213 # tests, whether a node object is nested below another tag
216 # @in tagName the nodeName of an elment node
218 # @return 1 iff node is nested below a element with nodeName tagName
222 proc ::dom::domNode::isWithin { node tagName } {
224 while {[$node parentNode] != ""} {
225 set node [$node parentNod
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationbuilder.h69 * Picks one of the current CEs and finds or inserts a node in the graph
75 /** Finds or inserts the node for a root CE's primary weight. */
77 /** Finds or inserts the node for a secondary or tertiary weight. */
82 * Makes and inserts a new tailored node into the list, after the one at index.
85 * @return the new node's index
90 * Inserts a new node into the list, between list-adjacent items.
91 * The node's previous and next indexes must not be set yet.
92 * @return the new node's index
94 int32_t insertNodeBetween(int32_t index, int32_t nextIndex, int64_t node,
98 * Finds the node whic
257 weight32FromNode(int64_t node) argument
260 weight16FromNode(int64_t node) argument
263 previousIndexFromNode(int64_t node) argument
266 nextIndexFromNode(int64_t node) argument
269 strengthFromNode(int64_t node) argument
273 nodeHasBefore2(int64_t node) argument
276 nodeHasBefore3(int64_t node) argument
279 nodeHasAnyBefore(int64_t node) argument
282 isTailoredNode(int64_t node) argument
286 changeNodePreviousIndex(int64_t node, int32_t previous) argument
289 changeNodeNextIndex(int64_t node, int32_t next) argument
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebRenderNode.mm75 WebRenderNode *node = [[WebRenderNode alloc] _initWithCoreFrame:coreFrame];
76 [collectChildren addObject:node];
77 [node release];
86 static WebRenderNode *copyRenderNode(RenderObject* node)
89 for (RenderObject* child = node->firstChildSlow(); child; child = child->nextSibling()) {
95 NSString *name = [[NSString alloc] initWithUTF8String:node->renderName()];
97 RenderWidget* renderWidget = node->isWidget() ? toRenderWidget(node) : 0;
103 FloatPoint absPos = node->localToAbsolute();
108 if (node
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dsplay-tree.c52 splay_tree_delete_helper (splay_tree sp, splay_tree_node node) argument
57 if (!node)
63 KDEL (node->key);
64 VDEL (node->value);
67 node->key = (splay_tree_key)pending;
68 pending = (splay_tree_node)node;
82 /* active points to a node which has its key and value
200 /* Call FN, passing it the DATA, for every node below NODE, all of
206 splay_tree_foreach_helper (splay_tree sp, splay_tree_node node, argument
211 if (!node)
315 splay_tree_node node; local
436 splay_tree_node node; local
467 splay_tree_node node; local
[all...]
/macosx-10.10/tidy-15.15/tidy/src/
H A Dattrs.c23 and each procedure has access to the node in which
313 static uint AttributeVersions(Node* node, AttVal* attval) argument
320 if (!node || !node->tag || !node->tag->attrvers)
323 for (i = 0; node->tag->attrvers[i].attribute; ++i)
324 if (node->tag->attrvers[i].attribute == attval->dict->id)
325 return node->tag->attrvers[i].versions;
334 /* return the version of the attribute "id" of element "node" */
335 uint TY_(NodeAttributeVersions)( Node* node, TidyAttrI argument
351 AttributeIsProprietary(Node* node, AttVal* attval) argument
686 AttrGetById( Node* node, TidyAttrId id ) argument
705 GetAttrByName( Node *node, ctmbstr name ) argument
716 AddAttribute( TidyDocImpl* doc, Node *node, ctmbstr name, ctmbstr value ) argument
734 RepairAttrValue(TidyDocImpl* doc, Node* node, ctmbstr name, ctmbstr value) argument
1043 RepairDuplicateAttributes( TidyDocImpl* doc, Node *node) argument
1117 CheckAttribute( TidyDocImpl* doc, Node *node, AttVal *attval ) argument
1199 CheckLowerCaseAttrValue( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1232 CheckUrl( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1385 CheckAction( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1395 CheckScript( TidyDocImpl* doc, Node *node, AttVal *attval ) argument
1489 CheckAttrValidity( TidyDocImpl* doc, Node *node, AttVal *attval, ctmbstr const list[]) argument
1504 CheckName( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1533 CheckClass( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1549 CheckStyleAttr( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1556 CheckId( TidyDocImpl* doc, Node *node, AttVal *attval ) argument
1602 CheckBool( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1610 CheckAlign( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1643 CheckValign( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1676 CheckLength( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1710 CheckTarget( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1729 CheckFsubmit( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1735 CheckClear( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1753 CheckShape( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1759 CheckScope( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1765 CheckNumber( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1814 CheckColor( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1871 CheckVType( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1878 CheckScroll( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1885 CheckTextDir( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1892 CheckLang( TidyDocImpl* doc, Node *node, AttVal *attval) argument
1906 CheckType( TidyDocImpl* doc, Node *node, AttVal *attval) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DPosition.h71 // For creating legacy editing positions: (Anchor type will be determined from editingIgnoresContent(node))
99 Node* containerNode() const; // NULL for a before/after position anchored to a node with no parent
126 // FIXME: Callers should be moved off of node(), node() is not always the container for this position.
127 // For nodes which editingIgnoresContent(node()) returns true, positions like [ignoredNode, 0]
128 // will be treated as before ignoredNode (thus node() is really after the position, not containing it).
158 // These can be either inside or just before/after the node, depending on
159 // if the node is ignored by editing or not.
222 // and m_offset > 0 as "after the anchor node". See parentAnchoredEquivalent for more info.
228 inline Position createLegacyEditingPosition(PassRefPtr<Node> node, in argument
273 positionInParentBeforeNode(const Node* node) argument
279 positionInParentAfterNode(const Node* node) argument
298 lastOffsetInNode(Node* node) argument
[all...]
/macosx-10.10/ruby-106/ruby/lib/irb/
H A Dslex.rb21 def_exception :ErrNodeNothing, "node nothing"
22 def_exception :ErrNodeAlreadyExists, "node already exists"
52 node = search(token)
53 node.preproc=proc
58 node = search(token, proc)
59 node.postproc=proc
93 # if postproc is nil, this node is an abstract node.
94 # if postproc is non-nil, this node is a real node
[all...]
/macosx-10.10/smb-759.0/kernel/netsmb/
H A Dsmb_fid.c63 static void smb_fid_insert_new_node(struct smb_share *share, SMB_FID_NODE *node);
71 SMB_FID_NODE *node, *temp_node; local
88 LIST_FOREACH_SAFE(node, &slotPtr->fid_list, link, temp_node) {
102 SMB_FID_NODE *node, *temp_node; local
118 LIST_FOREACH_SAFE(node, &slotPtr->fid_list, link, temp_node) {
119 LIST_REMOVE(node, link);
120 SMB_FREE(node, M_TEMP);
132 SMB_FID_NODE *node; local
168 LIST_FOREACH(node, &slotPtr->fid_list, link) {
169 if (node
209 SMB_FID_NODE *node; local
250 smb_fid_insert_new_node(struct smb_share *share, SMB_FID_NODE *node) argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DHandleSet.h115 inline HandleSlot HandleSet::toHandle(HandleSet::Node* node) argument
117 return reinterpret_cast<HandleSlot>(node);
130 HandleSet::Node* node = m_freeList.pop(); local
131 new (NotNull, node) HandleSet::Node();
132 m_immediateList.push(node);
133 return toHandle(node);
138 HandleSet::Node* node = toNode(handle); local
139 SentinelLinkedList<HandleSet::Node>::remove(node);
140 m_freeList.push(node);
188 for (HandleSet::Node* node
[all...]
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorDOMAgent.cpp316 int InspectorDOMAgent::bind(Node* node, NodeToIdMap* nodesMap) argument
318 int id = nodesMap->get(node);
322 nodesMap->set(node, id);
323 m_idToNode.set(id, node);
328 void InspectorDOMAgent::unbind(Node* node, NodeToIdMap* nodesMap) argument
330 int id = nodesMap->get(node);
336 if (node->isFrameOwnerElement()) {
337 const HTMLFrameOwnerElement* frameOwner = static_cast<const HTMLFrameOwnerElement*>(node);
345 if (node->isElementNode()) {
346 if (ShadowRoot* root = toElement(node)
368 Node* node = nodeForId(nodeId); local
378 Node* node = assertNode(errorString, nodeId); local
390 Node* node = assertNode(errorString, nodeId); local
402 Node* node = assertNode(errorString, nodeId); local
443 Node* node = nodeForId(nodeId); local
523 Node* node = assertNode(errorString, nodeId); local
544 Node* node = assertNode(errorString, nodeId); local
612 boundNodeId(Node* node) argument
617 backendNodeIdForNode(Node* node, const String& nodeGroup) argument
706 Node* node = assertEditableNode(errorString, nodeId); local
756 Node* node = assertNode(errorString, nodeId); local
771 Node* node = assertEditableNode(errorString, nodeId); local
799 Node* node = assertEditableNode(errorString, nodeId); local
814 Node* node = assertNode(errorString, nodeId); local
844 getEventListeners(Node* node, Vector<EventListenerInfo>& eventInformation, bool includeAncestors) argument
880 Node* node = assertNode(errorString, nodeId); local
905 Node* node = assertNode(errorString, nodeId); local
964 handleTouchEvent(Node* node) argument
979 RefPtr<Node> node = inspectedNode; local
996 RefPtr<Node> node = m_nodeToFocus.get(); local
1089 Node* node = 0; local
1132 Node* node = assertEditableNode(errorString, nodeId); local
1191 Node* node = nodeForId(nodeId); local
1215 Node* node = nodeForObjectId(objectId); local
1235 buildObjectForNode(Node* node, int depth, NodeToIdMap* nodesMap) argument
1369 buildObjectForEventListener(const RegisteredEventListener& registeredEventListener, const AtomicString& eventType, Node* node, const String* objectGroupId) argument
1436 buildObjectForAccessibilityProperties(Node* node) argument
1691 innerFirstChild(Node* node) argument
1699 innerNextSibling(Node* node) argument
1707 innerPreviousSibling(Node* node) argument
1715 innerChildNodeCount(Node* node) argument
1726 innerParentNode(Node* node) argument
1735 isWhitespace(Node* node) argument
1770 didInsertDOMNode(Node* node) argument
1799 didRemoveDOMNode(Node* node) argument
1885 didInvalidateStyleAttr(Node* node) argument
1981 Node* node = m_backendIdToNode.get(backendNodeId).first; local
1991 resolveNode(Node* node, const String& objectGroup) argument
2013 nodeAsScriptValue(JSC::ExecState* state, Node* node) argument
[all...]

Completed in 504 milliseconds

1234567891011>>