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

<<11121314151617181920>>

/macosx-10.10/WebCore-7600.1.25/page/scrolling/
H A DScrollingTree.cpp104 ScrollingTreeNode* node = nodeForID(nodeID); local
105 if (!node)
108 if (!node->isScrollingNode())
111 toScrollingTreeScrollingNode(node)->updateLayersAfterViewportChange(fixedPositionRect, scale);
116 ScrollingTreeNode* node = nodeForID(nodeID); local
117 if (!node)
120 if (node->nodeType() != OverflowScrollingNode)
124 toScrollingTreeScrollingNode(node)->updateLayersAfterDelegatedScroll(scrollPosition);
172 RefPtr<ScrollingTreeNode> node; local
174 node
368 setLatchedNode(ScrollingNodeID node) argument
[all...]
/macosx-10.10/curl-83.1.2/curl/tests/unit/
H A Dunit1309.c39 struct Curl_tree *node; local
55 for(count=0, node = t->same; node; node = node->same, count++)
/macosx-10.10/libxml2-26/libxml2/include/libxml/
H A Dxlink.h59 * @node: the node to check
64 typedef void (*xlinkNodeDetectFunc) (void *ctx, xmlNodePtr node);
74 * @node: the node carrying the link
83 xmlNodePtr node,
91 * @node: the node carrying the link
108 xmlNodePtr node,
124 * @node
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/include/libxml/
H A Dxlink.h59 * @node: the node to check
64 typedef void (*xlinkNodeDetectFunc) (void *ctx, xmlNodePtr node);
74 * @node: the node carrying the link
83 xmlNodePtr node,
91 * @node: the node carrying the link
108 xmlNodePtr node,
124 * @node
[all...]
/macosx-10.10/system_cmds-643.1.1/chkpasswd.tproj/
H A Dod_passwd.c64 ODNodeRef node = NULL; local
83 node = ODNodeCreateWithName(NULL, session, location, NULL);
85 node = ODNodeCreateWithNodeType(NULL, session, kODNodeTypeAuthentication, NULL);
87 if (node) {
88 rec = ODNodeCopyRecord(node, kODRecordTypeUsers, user, NULL, NULL);
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixSock.c65 char *node = ckalloc((unsigned) (dot - u.nodename + 1));
67 memcpy(node, u.nodename, (size_t) (dot - u.nodename));
68 node[dot - u.nodename] = '\0';
69 hp = TclpGetHostByName(node);
70 ckfree(node);
64 char *node = ckalloc((unsigned) (dot - u.nodename + 1)); local
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclUnixSock.c96 char *node = ckalloc((unsigned) (dot - u.nodename + 1));
97 memcpy(node, u.nodename, (size_t) (dot - u.nodename));
98 node[dot - u.nodename] = '\0';
99 hp = TclpGetHostByName(node);
100 ckfree(node);
95 char *node = ckalloc((unsigned) (dot - u.nodename + 1)); local
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/grammar_me/
H A Dgasm.tcl24 set gas(node) $n
48 $t set $gas(node) gas::entry $gas(_entry)
51 $t set $gas(node) gas::exit::ok $gas(_exit/ok)
52 $t set $gas(node) gas::exit::fail $gas(_exit/fail)
54 $t set $gas(node) gas::exit $gas(_exit/return)
57 # Remember the node in the grammar tree which is responsible for
60 $gas(grap) node set $gas(_entry) expr $gas(node)
84 proc ::grammar::me::cpu::gasm::Inline {t node label} {
87 set gas(_${label}/entry) [$t get $node ga
[all...]
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dtermcap.c161 pm->node.nam = nameu;
162 pm->node.flags = PM_READONLY;
170 pm->node.flags |= PM_INTEGER;
171 return &pm->node;
180 pm->node.flags |= PM_SCALAR;
181 return &pm->node;
184 pm->node.flags |= PM_SCALAR;
185 return &pm->node;
189 pm->node.flags |= PM_SCALAR;
193 pm->node
[all...]
H A Dmapfile.c71 char *name = ztrdup(pm->node.nam);
87 if (!(pm->node.flags & PM_READONLY) &&
129 char *fname = ztrdup(pm->node.nam);
133 if (!(pm->node.flags & PM_READONLY))
149 if (!(pm->node.flags & PM_READONLY))
224 pm->node.nam = dupstring(name);
225 pm->node.flags = PM_SCALAR;
227 pm->node.flags |= (partab[0].pm->node.flags & PM_READONLY);
230 if ((contents = get_contents(pm->node
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLTextFormControlElement.cpp416 static inline void setContainerAndOffsetForRange(Node* node, int offset, Node*& containerNode, int& offsetInContainer) argument
418 if (node->isTextNode()) {
419 containerNode = node;
422 containerNode = node->parentNode();
423 offsetInContainer = node->nodeIndex() + offset;
446 for (Node* node = innerText->firstChild(); node; node = NodeTraversal::next(node, innerText)) {
447 ASSERT(!node
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Ddict.c246 DICT_NODE *node; \
247 if ((node = dict_node(dict_name)) != 0) \
248 dict = node->dict; \
256 DICT_NODE *node; \
257 if ((node = dict_node(dict_name)) == 0) { \
261 dict = node->dict; \
271 DICT_NODE *node; local
275 if ((node = dict_node(dict_name)) == 0) {
276 node = (DICT_NODE *) mymalloc(sizeof(*node));
291 DICT_NODE *node; local
300 DICT_NODE *node = (DICT_NODE *) ptr; local
313 DICT_NODE *node; local
[all...]
/macosx-10.10/WebCore-7600.1.25/editing/
H A DReplaceSelectionCommand.cpp93 void insertNodeBefore(PassRefPtr<Node> node, Node* refNode);
103 static bool isInterchangeNewlineNode(const Node *node) argument
106 return node && node->hasTagName(brTag) &&
107 static_cast<const Element *>(node)->getAttribute(classAttr) == interchangeNewlineClassString;
110 static bool isInterchangeConvertedSpaceSpan(const Node *node) argument
113 return node->isHTMLElement() &&
114 static_cast<const HTMLElement *>(node)->getAttribute(classAttr) == convertedSpaceSpanClassString;
218 void ReplacementFragment::removeNodePreservingChildren(PassRefPtr<Node> node) argument
220 if (!node)
230 removeNode(PassRefPtr<Node> node) argument
242 insertNodeBefore(PassRefPtr<Node> node, Node* refNode) argument
298 Node* node = container->firstChild(); local
332 respondToNodeInsertion(Node* node) argument
343 willRemoveNodePreservingChildren(Node* node) argument
351 willRemoveNode(Node* node) argument
362 didReplaceNode(Node* node, Node* newNode) argument
431 isMailPasteAsQuotationNode(const Node* node) argument
649 RefPtr<Node> node = prpNode; local
854 enclosingInline(Node* node) argument
869 isInlineNodeWithStyle(const Node* node) argument
1090 RefPtr<Node> node = refNode->nextSibling(); local
1303 RefPtr<Node> node = document().createEditingTextNode(collapseWhiteSpace ? nonBreakingSpaceString() : " "); local
1327 RefPtr<Node> node = document().createEditingTextNode(collapseWhiteSpace ? nonBreakingSpaceString() : " "); local
1469 updateNodesInserted(Node *node) argument
[all...]
H A DDeleteSelectionCommand.cpp49 static bool isTableRow(const Node* node) argument
51 return node && node->hasTagName(trTag);
272 // node. This was done to match existing behavior, but it seems wrong.
279 // A common case is deleting characters that are all from the same text node. In
286 // However, if typing style was previously set from another text node at the previous
339 static Position firstEditablePositionInNode(Node* node) argument
341 ASSERT(node);
342 Node* next = node;
344 next = NodeTraversal::next(next, node);
348 removeNode(PassRefPtr<Node> node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) argument
409 updatePositionForTextRemoval(Node* node, int offset, int count, Position& position) argument
420 deleteTextFromNode(PassRefPtr<Text> node, unsigned offset, unsigned count) argument
434 RefPtr<Node> node = range->firstNode(); local
779 Node* node = m_endingPosition.containerNode(); local
868 Node* node = m_endingPosition.deprecatedNode(); local
[all...]
H A DInsertIntoTextNodeCommand.h37 static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text) argument
39 return adoptRef(new InsertIntoTextNodeCommand(node, offset, text));
43 InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text);
/macosx-10.10/Chess-310.6/sjeng/
H A Dproof.c62 typedef struct node struct
70 struct node **children;
71 struct node *parent;
76 void pn2_eval (node_t *node);
98 void freenodes (node_t * node) argument
102 if (!node)
105 if (node->children)
107 if (node->num_children > 0)
109 for (i = 0; i < (node->num_children); i++)
111 if (node
459 select_most_proving(node_t * node) argument
502 set_proof_and_disproof_numbers(node_t * node) argument
767 develop_node(node_t * node) argument
948 update_ancestors(node_t * node) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationbuilder.cpp331 int64_t node = nodes.elementAti(index); local
332 // If the index is for a "weaker" tailored node,
334 while(strengthFromNode(node) > strength) {
335 index = previousIndexFromNode(node);
336 node = nodes.elementAti(index);
339 // Find or insert a node whose index we will put into a temporary CE.
340 if(strengthFromNode(node) == strength && isTailoredNode(node)) {
341 // Reset to just before this same-strength tailored node.
342 index = previousIndexFromNode(node);
507 int64_t node = nodes.elementAti(index); local
526 int64_t node = nodes.elementAti(index); local
595 int64_t node = nodes.elementAti(index); local
844 int64_t node = nodes[rootPrimaryIndexes[i]]; local
895 int64_t node = nodes.elementAti(index); local
933 int64_t node = nodes.elementAti(index); local
946 insertNodeBetween(int32_t index, int32_t nextIndex, int64_t node, UErrorCode &errorCode) argument
971 int64_t node = nodes.elementAti(index); local
1376 int64_t node = nodesArray[i]; local
1540 int64_t node = nodesArray[i]; local
[all...]
/macosx-10.10/groff-38/groff/src/roff/troff/
H A Dnode.cpp36 #include "node.h"
692 virtual void really_print_line(hunits x, vunits y, node *n,
705 void print_line(hunits x, vunits y, node *n, vunits before, vunits after, hunits width);
719 void really_print_line(hunits x, vunits y, node *n, vunits, vunits, hunits width);
727 void really_print_line(hunits x, vunits y, node *n, vunits, vunits, hunits width);
793 void really_print_line(hunits x, vunits y, node *n, vunits before, vunits after, hunits width);
879 void troff_output_file::really_print_line(hunits x, vunits y, node *n,
1683 void real_output_file::print_line(hunits x, vunits y, node *n,
1738 void ascii_output_file::really_print_line(hunits, vunits, node *n,
1763 void suppress_output_file::really_print_line(hunits, vunits, node *, vunit
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DTreeScope.cpp94 // A document node cannot be re-parented.
171 Node* TreeScope::ancestorInThisScope(Node* node) const
173 for (; node; node = node->shadowHost()) {
174 if (&node->treeScope() == this)
175 return node;
176 if (!node->isInShadowTree())
255 Node* node = nodeFromPoint(&m_rootNode.document(), x, y); local
256 while (node
329 adoptIfNeeded(Node* node) argument
368 listTreeScopes(Node* node, Vector<TreeScope*, 5>& treeScopes) argument
[all...]
H A DContainerNode.h173 inline bool isContainerNode(const Node& node) { return node.isContainerNode(); } argument
215 Node* node = const_cast<Node*>(this); local
216 Node* highest = node;
217 for (; node; node = node->parentNode())
218 highest = node;
241 inline void getChildNodes(Node& node, NodeVector& nodes) argument
244 for (Node* child = node
270 RefPtr<Node> node = m_currentNode.release(); local
285 Node* node = m_currentNode.get(); local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/menubar/
H A Dtree.tcl14 package require menubar::node
26 # nid - integer value used to create unique node names
27 # root - name of tree's root node
28 # nodes - index of node names and node instances
41 set nodes [dict create "root" [::menubar::node new ""]]
46 dict for {name node} ${nodes} {
47 ${node} destroy
65 # check args for a node that exists and return its name
78 # return a node instanc
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGLICMPhase.cpp96 Node* node = block->at(nodeIndex); local
101 if (node->op() == ForceOSRExit)
104 addWrites(m_graph, node, data.writes);
139 // - The node doesn't write anything.
140 // - The node doesn't read anything that the loop writes.
141 // - The preHeader's state at tail makes the node safe to execute.
147 // - Update the state-at-tail with the node we hoisted, so future hoist candidates
205 Node* node = nodeRef; local
210 dataLog(" Not hoisting ", node, " because CFA is invalid.\n");
214 if (!edgesDominate(m_graph, node, dat
[all...]
/macosx-10.10/cups-408/cups/cgi-bin/
H A Dmakedocset.c217 help_node_t *node; /* Current help node */ local
236 for (node = (help_node_t *)cupsArrayFirst(hi->nodes);
237 node;
238 node = (help_node_t *)cupsArrayNext(hi->nodes))
240 if (node->anchor)
243 key.name = node->section ? node->section : "Miscellaneous";
254 html->path = node->filename;
255 html->title = node
413 help_node_t *node; /* Current help node */ local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclxml/tcldom/src/
H A Ddom.c94 Tdp_Node Tdp_GetParentNode(Tdp_Node node) argument
96 TclDomNode *nodePtr = (TclDomNode *) node;
103 Tdp_Node Tdp_GetLastChild(Tdp_Node node) argument
105 TclDomNode *nodePtr = (TclDomNode *) node;
112 TdpNodeType Tdp_GetNodeType(Tdp_Node node) argument
114 return (((TclDomNode *) node)->nodeType);
117 char * Tdp_GetNodeValue(Tdp_Node node) argument
119 if (((TclDomNode *) node)->nodeValue) {
120 return ((TclDomNode *) node)->nodeValue;
126 TdpDomError Tdp_SetNodeValue(Tdp_Node node, cha argument
184 Tdp_SetStartLocation(Tdp_Node node, unsigned int line, unsigned int column, unsigned int width, unsigned int endLine, unsigned int endColumn) argument
199 Tdp_SetEndLocation(Tdp_Node node, unsigned int line, unsigned int column, unsigned int width, unsigned int endLine, unsigned int endColumn) argument
214 Tdp_GetStartLocation(Tdp_Node node, unsigned int* linePtr, unsigned int* columnPtr, unsigned int* widthPtr) argument
223 Tdp_GetEndLocation(Tdp_Node node, unsigned int* linePtr, unsigned int* columnPtr, unsigned int* widthPtr) argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLAvailableRecovery.h49 AvailableRecovery(DFG::Node* node, RecoveryOpcode opcode, LValue left, LValue right, ValueFormat format) argument
50 : m_node(node)
58 DFG::Node* node() const { return m_node; } function in class:JSC::FTL::AvailableRecovery

Completed in 319 milliseconds

<<11121314151617181920>>