HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 1 - 25 of 1527) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeListImpl.java 36 private List<NodeImpl> children; field in class:NodeListImpl
39 children = new ArrayList<NodeImpl>();
43 children = list;
47 children.add(node);
51 return children.size();
55 if (index >= children.size()) {
58 return children.get(index);
  /external/chromium_org/tools/grit/grit/tool/
rc2grd_unittest.py 121 result.children[2].children[2].children[0].attrs['desc'] == '')
123 result.children[2].children[2].children[0].children[0].attrs['name'] == 'USERNAME')
125 result.children[2].children[2].children[1].attrs['desc'] == 'The other description'
    [all...]
postprocess_unittest.py 42 result.children[2].children[2].children[0].attrs['name'] == 'SMART_STRING_1')
44 result.children[2].children[2].children[1].attrs['name'] == 'SMART_STRING_2')
53 messages = grdnode.children[2].children[2]
54 for node in messages.children:
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
SimpleNode.java 7 protected Node[] children; field in class:SimpleNode
30 if (children == null) {
31 children = new Node[i + 1];
32 } else if (i >= children.length) {
34 System.arraycopy(children, 0, c, 0, children.length);
35 children = c;
37 children[i] = n;
41 return children[i];
45 return (children == null) ? 0 : children.length
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMedia.h 40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
41 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
43 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderMedia
44 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderMedia
52 virtual RenderObjectChildList* virtualChildren() OVERRIDE FINAL { return children(); }
53 virtual const RenderObjectChildList* virtualChildren() const OVERRIDE FINAL { return children(); }
55 // FIXME: RenderMedia::layout makes assumptions about what children are allowed
RenderTableCol.h 40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
41 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
43 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::FINAL
44 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::FINAL
80 virtual RenderObjectChildList* virtualChildren() { return children(); }
81 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTree.java 34 * actually have any user data. ANTLR v3 uses a list of children approach
36 * an empty node whose children represent the list. An empty, but
40 protected List children; field in class:BaseTree
46 * as there are no fields other than the children list, which cannot
47 * be copied as the children are not considered part of this node.
53 if ( children==null || i>=children.size() ) {
56 return (Tree)children.get(i);
59 /** Get the children internal List; note that if you directly mess with
63 return children;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 32 for node in parent.children:
35 elif node.type == syms.simple_stmt and node.children:
36 expr_node = node.children[0]
37 if expr_node.type == syms.expr_stmt and expr_node.children:
38 left_side = expr_node.children[0]
49 for node in cls_node.children:
55 for i, node in enumerate(cls_node.children):
63 while cls_node.children[i+1:]:
64 move_node = cls_node.children[i+1]
76 for semi_ind, node in enumerate(stmt_node.children)
    [all...]
fix_itertools_imports.py 16 if imports.type == syms.import_as_name or not imports.children:
17 children = [imports]
19 children = imports.children
20 for child in children[::2]:
29 name_node = child.children[0]
40 children = imports.children[:] or [imports]
42 for child in children:
48 while children and children[-1].type == token.COMMA
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 32 for node in parent.children:
35 elif node.type == syms.simple_stmt and node.children:
36 expr_node = node.children[0]
37 if expr_node.type == syms.expr_stmt and expr_node.children:
38 left_side = expr_node.children[0]
49 for node in cls_node.children:
55 for i, node in enumerate(cls_node.children):
63 while cls_node.children[i+1:]:
64 move_node = cls_node.children[i+1]
76 for semi_ind, node in enumerate(stmt_node.children)
    [all...]
fix_itertools_imports.py 16 if imports.type == syms.import_as_name or not imports.children:
17 children = [imports]
19 children = imports.children
20 for child in children[::2]:
29 name_node = child.children[0]
40 children = imports.children[:] or [imports]
42 for child in children:
48 while children and children[-1].type == token.COMMA
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_bookmarks_unittest.cc 38 ListValue* children; local
39 tree->GetList(keys::kChildrenKey, &children);
40 ASSERT_EQ(3U, children->GetSize());
48 ListValue* children; local
49 tree->GetList(keys::kChildrenKey, &children);
50 ASSERT_EQ(1U, children->GetSize());
58 ListValue* children; local
59 tree->GetList(keys::kChildrenKey, &children);
60 ASSERT_EQ(4U, children->GetSize());
62 ASSERT_TRUE(children->GetDictionary(1, &digg))
73 ListValue* children; local
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTree.js 2 * actually have any user data. ANTLR v3 uses a list of children approach
4 * an empty node whose children represent the list. An empty, but
13 if ( !this.children || i>=this.children.length ) {
16 return this.children[i];
19 /** Get the children internal List; note that if you directly mess with
23 return this.children;
28 for (i = 0; this.children && i < this.children.length; i++) {
29 t = this.children[i]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TopDownProfileDataGridTree.js 34 var hasChildren = !!(profileNode.children && profileNode.children.length);
38 this._remainingChildren = profileNode.children;
44 var children = this._remainingChildren;
45 var childrenLength = children.length;
48 this.appendChild(new WebInspector.TopDownProfileDataGridNode(children[i], this.tree));
60 var children = this.children;
61 var index = this.children.length;
64 children[index]._exclude(aCallUID)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Node.java 53 * node maintains a collection of children and handles merging said children
55 * allows for any number of children to be attached.
67 * This node's children.
69 protected SafeArrayList<Spatial> children = new SafeArrayList<Spatial>(Spatial.class); field in class:Node
79 * list for containing children.
91 * <code>getQuantity</code> returns the number of children this node
94 * @return the number of children this node maintains.
97 return children.size();
103 for (Spatial child : children.getArray())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
AntlrRuntime_BaseTreeDebugView.cs 47 public ITree[] Children
51 if (_tree == null || _tree.Children == null)
54 ITree[] children = new ITree[_tree.Children.Count];
55 _tree.Children.CopyTo(children, 0);
56 return children;
  /external/chromium_org/third_party/WebKit/Source/web/painting/
ContinuousPainter.cpp 55 const Vector<GraphicsLayer*>& children = layer->children(); local
57 for (it = children.begin(); it != children.end(); ++it)
  /external/chromium_org/third_party/leveldatabase/src/table/
merger.h 14 // children[0,n-1]. Takes ownership of the child iterators and
22 const Comparator* comparator, Iterator** children, int n);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
CompositeGrammarTree.java 35 protected List<CompositeGrammarTree> children; field in class:CompositeGrammarTree
50 if ( children==null ) {
51 children = new ArrayList<CompositeGrammarTree>();
53 children.add(t);
62 for (int i = 0; r==null && children!=null && i < children.size(); i++) {
63 CompositeGrammarTree child = children.get(i);
93 for (int i = 0; n==null && children!=null && i < children.size(); i++) {
94 CompositeGrammarTree child = children.get(i)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetree.c 75 tree->children = NULL;
101 if (tree->children != NULL)
103 cs = tree->children->size(tree->children);
106 t = (pANTLR3_BASE_TREE) (tree->children->get(tree->children, i));
121 if ( tree->children == NULL
122 || i >= tree->children->size(tree->children))
126 return tree->children->get(tree->children, i)
    [all...]
  /external/chromium_org/sync/syncable/
parent_child_index.cc 60 OrderedChildSet* children = NULL; local
63 children = i->second;
65 children = new OrderedChildSet();
66 parent_children_map_.insert(std::make_pair(parent_id, children));
69 return children->insert(entry).second;
80 OrderedChildSet* children = parent->second; local
81 OrderedChildSet::iterator j = children->find(e);
82 DCHECK(j != children->end());
84 children->erase(j);
85 if (children->empty())
98 const OrderedChildSet* children = parent->second; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ParentNode.h 40 static PassRefPtr<HTMLCollection> children(ContainerNode* node) function in class:WebCore::ParentNode
42 return node->children();
  /external/chromium_org/third_party/WebKit/Source/core/editing/
WrapContentsInDummySpanCommand.cpp 44 Vector<RefPtr<Node> > children; local
46 children.append(child);
48 size_t size = children.size();
50 m_dummySpan->appendChild(children[i].release(), IGNORE_EXCEPTION);
69 Vector<RefPtr<Node> > children;
71 children.append(child);
73 size_t size = children.size();
75 m_element->appendChild(children[i].release(), IGNORE_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGContainer.h 37 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
38 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
40 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderSVGContainer
41 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderSVGContainer
50 virtual RenderObjectChildList* virtualChildren() OVERRIDE FINAL { return children(); }
51 virtual const RenderObjectChildList* virtualChildren() const OVERRIDE FINAL { return children(); }
  /external/chromium_org/ui/compositor/test/
test_layers.cc 14 for (std::vector<Layer*>::const_iterator it = parent.children().begin();
15 it != parent.children().end(); ++it) {

Completed in 827 milliseconds

1 2 3 4 5 6 7 8 91011>>