HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 101 - 125 of 1029) sorted by null

1 2 3 45 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 37 * an attributes list and a children list.
52 /** The list of allowed children */
69 * tooltip, SDK url, attributes list, children list and mandatory.
76 * @param children The list of allowed children. Can be null or empty.
84 ElementDescriptor[] children,
92 mChildren = children != null ? children : new ElementDescriptor[]{};
97 * tooltip, SDK url, attributes list, children list and mandatory.
104 * @param children The list of allowed children. Can be null or empty
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 30 * actually have any user data. ANTLR v3 uses a list of children approach
32 * an empty node whose children represent the list. An empty, but
39 * as there are no fields other than the children list, which cannot
40 * be copied as the children are not considered part of this node.
52 /** Get the children internal List; note that if you directly mess with
55 public function get children():Array {
78 * Warning: if t has no children, but child does
79 * and child isNil then this routine moves children to t via
80 * t.children = child.children; i.e., without copying the array
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 31 this.children = [];
55 var lastChild = this.children[this.children.length - 1];
64 this.children.push(child);
70 var current = child.children[0];
83 this._childrenListNode.addStyleClass("children");
96 var previousChild = (index > 0 ? this.children[index - 1] : null);
104 var nextChild = this.children[index];
112 this.children.splice(index, 0, child);
118 var current = child.children[0]
    [all...]
AuditResultView.js 92 var treeElement = new TreeElement(null, null, !!result.children);
101 if (result.children) {
102 for (var i = 0; i < result.children.length; ++i)
103 this._appendResult(treeElement, result.children[i]);
  /external/chromium/chrome/browser/ui/webui/options/
cookies_view_handler.cc 89 ListValue* children = new ListValue; local
91 children);
99 args.Append(children);
194 ListValue* children = new ListValue; local
196 children);
202 args.Append(children);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
parsing.cc 137 const std::vector<buzz::XmlElement*>& children) {
138 for (std::vector<buzz::XmlElement*>::const_iterator iter = children.begin();
139 iter != children.end();
154 std::vector<buzz::XmlElement*> children; local
158 children.push_back(new buzz::XmlElement(*child));
160 return children;
  /external/libvpx/libvpx/nestegg/halloc/src/
halloc.c 32 hlist_head_t children; /* 1 pointer */ member in struct:hblock
81 hlist_init(&p->children);
98 hlist_relink_head(&p->children);
138 hlist_add(&p->children, &b->siblings);
226 hlist_for_each(i, &p->children)
247 hlist_for_each_safe(i, tmp, &p->children)
  /external/webkit/Source/WebCore/accessibility/
AccessibilityARIAGrid.cpp 72 unsigned rowCellCount = row->children().size();
80 // otherwise add its children (the cells) as the grid's children.
84 m_children.append(row->children());
112 // in case the render tree doesn't match the expected ARIA hierarchy, look at the children
116 // Do not navigate children through the Accessibility
117 // children vector to let addChild() check the result
119 // decision (add the objects or their children).
164 AccessibilityChildrenVector children = tableRow->children(); local
    [all...]
AccessibilityTableColumn.h 59 virtual const AccessibilityChildrenVector& children();
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementParallelTimeContainerImpl.java 88 NodeList children = getTimeChildren(); local
89 for (int i = 0; i < children.getLength(); ++i) {
90 ElementTime child = (ElementTime) children.item(i);
116 NodeList children = getTimeChildren(); local
117 int childrenLen = children.getLength();
121 ElementTime child = (ElementTime) children.item(i);
  /cts/tools/utils/
rerun.py 23 children = []
28 children.append(child)
29 return children
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList3.java 51 List<Map<String, String>> children = new ArrayList<Map<String, String>>(); local
54 children.add(curChildMap);
58 childData.add(children);
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk_unittest.cc 93 // We should expect two children to the bookmark bar's toolbar.
94 GList* children = gtk_container_get_children( local
96 EXPECT_EQ(2U, g_list_length(children));
97 g_list_free(children);
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 41 children = None
43 children = [get_info(c, depth+1)
54 'children' : children }
  /external/elfutils/tests/
show-abbrev.c 90 int children = dwarf_abbrevhaschildren (abbrev); local
91 if (children < 0)
99 printf ("abbrev[%llu]: code = %u, tag = %u, children = %d\n",
100 (unsigned long long int) offset, code, tag, children);
  /external/emma/core/java12/com/vladium/emma/report/
Item.java 82 for (Iterator children = m_children.iterator (); children.hasNext (); )
84 value += ((IItem) children.next ()).getAggregate (type);
  /external/webkit/Source/WebCore/svg/
SVGGlyphMap.h 40 GlyphMapLayer children; member in struct:WebCore::GlyphMapNode
61 currentLayer = &node->children;
87 currentLayer = &node->children;
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksParserWorker.js 61 children: [],
83 node.children.push(childNode);
92 self.profile.totalTime = self.profile.children.reduce(function(sum, child) { return sum + child.totalTime; }, 0);
  /libcore/luni/src/test/java/libcore/xml/
NodeTest.java 84 NodeList children = node.getChildNodes(); local
85 for (int i = 0; i < children.getLength(); i++) {
86 traverse(children.item(i), sink);
  /development/tools/idegen/src/com/android/idegen/
DirectorySearch.java 96 File[] children = file.listFiles(); local
97 for (File child : children) {
124 File[] children = resFile.listFiles(); local
125 for (File child : children) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExsltFunction.java 88 NodeList children = this.getChildNodes(); local
91 Node child = children.item(i);
92 if (children.item(i) instanceof ElemParam) {
93 ElemParam param = (ElemParam)children.item(i);
  /external/chromium/chrome/browser/
fullscreen_linux.cc 28 XID root, parent, *children; local
31 &children, &num_children);
34 windows.push_back(children[i]);
35 XFree(children);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfileNode.h 60 ProfileNodesList children() const;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLFrameSetElementCustom.cpp 52 Node* frameNode = imp->children()->namedItem(v8StringToAtomicWebCoreString(name));
  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.h 126 TimelineRecordEntry(PassRefPtr<InspectorObject> record, PassRefPtr<InspectorObject> data, PassRefPtr<InspectorArray> children, const String& type)
127 : record(record), data(data), children(children), type(type)
132 RefPtr<InspectorArray> children; member in struct:WebCore::InspectorTimelineAgent::TimelineRecordEntry

Completed in 2116 milliseconds

1 2 3 45 6 7 8 91011>>