Searched refs:children (Results 26 - 50 of 783) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityARIAGrid.cpp67 unsigned rowCellCount = row->children().size();
75 // otherwise add its children (the cells) as the grid's children.
79 m_children.appendVector(row->children());
93 AccessibilityChildrenVector children = rowChild->children(); local
94 size_t length = children.size();
96 addRowDescendant(children[i].get(), appendedRows, columnCount);
/macosx-10.9.5/tcl-102/tk/tk/tests/ttk/
H A Dlayout.test15 border -children { block } -side left
16 border -children { block } -side top
17 border -children { block } -side bottom
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dxml.el49 ;; be any number of attributes (or none), as well as any number of children
52 ;; There can be only top level node, but with any number of children below.
130 (defsubst xml-node-children (node)
131 "Return the list of children of NODE.
135 (defun xml-get-children (node child-name)
136 "Return the children of NODE whose tag is CHILD-NAME.
139 (dolist (child (xml-node-children node))
169 Returns the top node with all its children.
369 children)
373 (if children
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DSplitElementCommand.cpp50 Vector<RefPtr<Node> > children;
52 children.append(node);
66 size_t size = children.size();
68 m_element1->appendChild(children[i], ec);
83 Vector<RefPtr<Node> > children;
85 children.append(node);
89 size_t size = children.size();
91 m_element2->insertBefore(children[i].get(), refChild.get(), IGNORE_EXCEPTION);
H A DReplaceNodeWithSpanCommand.cpp58 NodeVector children; local
59 getChildNodes(nodeToReplace, children);
60 for (size_t i = 0; i < children.size(); ++i)
61 newNode->appendChild(children[i], ASSERT_NO_EXCEPTION);
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTableRowElement.cpp123 RefPtr<HTMLCollection> children = cells(); local
124 int numCells = children ? children->length() : 0;
138 n = children->item(index);
146 RefPtr<HTMLCollection> children = cells(); local
147 int numCells = children ? children->length() : 0;
151 RefPtr<Node> cell = children->item(index);
H A DHTMLTableSectionElement.cpp62 RefPtr<HTMLCollection> children = rows(); local
63 int numRows = children ? (int)children->length() : 0;
75 n = children->item(index);
84 RefPtr<HTMLCollection> children = rows(); local
85 int numRows = children ? (int)children->length() : 0;
89 RefPtr<Node> row = children->item(index);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderFrameSet.h61 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
62 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
64 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderFrameSet
65 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderFrameSet
96 virtual RenderObjectChildList* virtualChildren() { return children(); }
97 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
H A DRenderTableRow.h39 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
40 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
42 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderTableRow
43 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderTableRow
92 virtual RenderObjectChildList* virtualChildren() { return children(); }
93 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebRenderLayer.h32 NSArray *children; variable
42 - (NSArray *)children;
H A DWebRenderNode.mm60 - (id)_initWithName:(NSString *)n position:(NSPoint)p rect:(NSRect)r coreFrame:(Frame*)coreFrame children:(NSArray *)c
80 children = [collectChildren copy];
88 NSMutableArray *children = [[NSMutableArray alloc] init];
91 [children addObject:childCopy];
133 coreFrame:frame children:children];
136 [children release];
148 [children release];
153 - (NSArray *)children
155 return children;
[all...]
/macosx-10.9.5/libxml2-26/libxml2/python/tests/
H A DcompareNodes.py15 foonode1 = root.children
16 foonode2 = root.children
H A Dresolver.py20 root = doc.children
29 root = doc.children
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A DcompareNodes.py15 foonode1 = root.children
16 foonode2 = root.children
H A Dresolver.py15 root = doc.children
24 root = doc.children
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/tests/
H A Dall.tcl9 if {[lsearch [namespace children] ::tcltest] == -1} {
/macosx-10.9.5/ruby-104/ruby/lib/rexml/
H A Ddocument.rb69 if @children[0].kind_of? XMLDecl
70 @children[0] = child
72 @children.unshift child
79 insert_before_index = @children.find_index { |x|
83 if @children[ insert_before_index ].kind_of? DocType
84 @children[ insert_before_index ] = child
86 @children[ insert_before_index-1, 0 ] = child
89 @children << child
107 # has no children.
111 #@children
[all...]
/macosx-10.9.5/ruby-104/ruby/test/psych/visitors/
H A Dtest_to_ruby.rb14 mapping.children << Nodes::Scalar.new('foo')
15 mapping.children << Nodes::Scalar.new('bar')
60 mapping.children << Nodes::Scalar.new('foo')
61 mapping.children << Nodes::Scalar.new('bar')
74 mapping.children << Nodes::Scalar.new('foo')
75 mapping.children << Nodes::Scalar.new('bar')
84 mapping.children << Nodes::Scalar.new('foo')
85 mapping.children << Nodes::Scalar.new('bar')
94 mapping.children << Nodes::Scalar.new('message')
95 mapping.children << Node
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/
H A Dtree_builder.rb34 @last.children << n
51 @last.children << n
76 @last.children << s
81 @last.children << Nodes::Alias.new(anchor)
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/tests/
H A Dall.tcl13 if {[lsearch [namespace children] ::tcltest] == -1} {
/macosx-10.9.5/tcl-102/tk/tk/unix/
H A DtkUnixFocus.c49 Window window, root, parent, *children;
94 XQueryTree(dispPtr->display, window, &root, &parent, &children,
96 if (children != NULL) {
97 XFree((void *) children);
48 Window window, root, parent, *children; local
/macosx-10.9.5/tcl-102/tk84/tk/unix/
H A DtkUnixFocus.c52 Window window, root, parent, *children;
98 XQueryTree(dispPtr->display, window, &root, &parent, &children,
100 if (children != NULL) {
101 XFree((void *) children);
51 Window window, root, parent, *children; local
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebRenderObject.h52 PassRefPtr<MutableArray> elementClassNames, WebCore::IntPoint absolutePosition, WebCore::IntRect frameRect, PassRefPtr<MutableArray> children)
54 return adoptRef(new WebRenderObject(name, elementTagName, elementID, elementClassNames, absolutePosition, frameRect, children));
57 RefPtr<ImmutableArray> children() const { return m_children; } function in class:WebKit::WebRenderObject
69 WebCore::IntPoint absolutePosition, WebCore::IntRect frameRect, PassRefPtr<MutableArray> children)
70 : m_children(children)
51 create(const String& name, const String& elementTagName, const String& elementID, PassRefPtr<MutableArray> elementClassNames, WebCore::IntPoint absolutePosition, WebCore::IntRect frameRect, PassRefPtr<MutableArray> children) argument
68 WebRenderObject(const String& name, const String& elementTagName, const String& elementID, PassRefPtr<MutableArray> elementClassNames, WebCore::IntPoint absolutePosition, WebCore::IntRect frameRect, PassRefPtr<MutableArray> children) argument
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-CoreData/Examples/OutlineEdit/
H A DMyDocument.py53 children = self.outlineTreeController.content()
55 children = parentNote.valueForKeyPath_("children").allObjects()
57 children = children.sortedArrayUsingDescriptors_(self.outlineTreeController.sortDescriptors())
63 sibling = children.objectAtIndex_(index - 1)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-CoreData/Examples/OutlineEdit/
H A DMyDocument.py53 children = self.outlineTreeController.content()
55 children = parentNote.valueForKeyPath_("children").allObjects()
57 children = children.sortedArrayUsingDescriptors_(self.outlineTreeController.sortDescriptors())
63 sibling = children.objectAtIndex_(index - 1)

Completed in 193 milliseconds

1234567891011>>