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

1 2 3 45 6 7 8 91011>>

  /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/accessibility/
AccessibilityTableColumn.h 59 virtual const AccessibilityChildrenVector& children();
AccessibilityARIAGridCell.cpp 84 // children to determine the row index for the cell in it.
89 AccessibilityChildrenVector siblings = parent->children();
112 AccessibilityChildrenVector siblings = parent->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
ScriptProfileNode.idl 36 readonly attribute [CustomGetter] Array children;
  /external/webkit/Source/WebCore/inspector/front-end/
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/webkit/Source/WebCore/plugins/
IFrameShimSupport.cpp 137 const HashSet<RefPtr<Widget> >* children = parentFrameView->children(); local
138 for (HashSet<RefPtr<Widget> >::const_iterator it = children->begin(); it != children->end(); ++it) {
  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.h 60 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderFrameSet
61 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderFrameSet
93 virtual RenderObjectChildList* virtualChildren() { return children(); }
94 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
RenderTableSection.h 41 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderTableSection
42 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderTableSection
122 virtual RenderObjectChildList* virtualChildren() { return children(); }
123 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
  /frameworks/base/sax/java/android/sax/
RootElement.java 130 Children children = current.children; local
131 if (children != null) {
132 Element child = children.get(uri, localName);
  /external/webkit/Source/WebCore/platform/gtk/
PopupMenuGtk.cpp 110 GList* children = gtk_container_get_children(GTK_CONTAINER(m_popup.get())); local
111 GList* p = children;
133 g_list_free(children);
186 GList* children = gtk_container_get_children(GTK_CONTAINER(m_popup.get())); local
187 if (!children)
193 GList* currentChild = children;
195 currentChild = g_list_find(children, m_currentlySelectedMenuItem);
198 currentChild = children;
212 currentChild = children;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TableLayoutRule.java 42 // The fill of all children should be wrap_content
88 final List<? extends INode> children) {
89 super.addLayoutActions(actions, parentNode, children);
90 addTableLayoutActions(mRulesEngine, actions, parentNode, children);
98 final List<? extends INode> children) {
110 if (children != null) {
112 for (INode child : children) {
136 // Find the direct children of the TableLayout to delete;
139 // TableLayout but the children might be grand children
    [all...]
  /external/bluetooth/glib/gio/fen/
fen-node.c 167 GList* children; local
175 children = g_hash_table_get_values (node->children);
176 if (children) {
177 for (i = children; i; i = i->next) {
180 g_list_free (children);
300 * If the parent is passive and doesn't have children, delete it.
371 f->children = g_hash_table_new_full (g_str_hash, g_str_equal,
382 g_assert (g_hash_table_size (f->children) == 0);
385 g_hash_table_unref (f->children);
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_class.cpp 155 const QList<QObject*>& children = obj->children(); local
156 const int count = children.size();
158 QObject* child = children.at(index);
192 const QList<QObject*>& children = obj->children(); local
193 const int count = children.count();
195 QObject* child = children.at(index);
  /external/webkit/Source/WebCore/wml/
WMLTableElement.cpp 124 RefPtr<NodeList> children = startElement->childNodes(); local
125 if (!children)
128 unsigned length = children->length();
130 Node* child = children->item(i);
140 RefPtr<NodeList> children = sourceElement->childNodes(); local
141 if (!children)
146 unsigned length = children->length();
148 RefPtr<Node> clonedNode = children->item(i)->cloneNode(true);
  /external/webkit/Source/WebKit/mac/History/
WebHistoryItemPrivate.h 53 - (NSArray *)children;
  /external/bluetooth/glib/gobject/
gobject-query.c 61 GType *children; local
67 children = g_type_children (type, NULL);
84 if (children && recursion)
94 for (child = children; *child; child++)
100 g_free (children);
  /external/webkit/Source/WebCore/accessibility/gtk/
AXObjectCacheAtk.cpp 57 AccessibilityObject::AccessibilityChildrenVector children = object->children();
58 if (!children.size())
61 AccessibilityObject* listObject = children.at(0).get();
96 AccessibilityObject::AccessibilityChildrenVector items = listObject->children();
  /external/webkit/Source/WebCore/bindings/js/
PageScriptDebugServer.cpp 201 const HashSet<RefPtr<Widget> >* children = view->children(); local
202 ASSERT(children);
204 HashSet<RefPtr<Widget> >::const_iterator end = children->end();
205 for (HashSet<RefPtr<Widget> >::const_iterator it = children->begin(); it != end; ++it) {
  /external/webkit/Tools/Scripts/
sort-Xcode-project-file 29 # Script to sort "children" and "files" sections in Xcode project.pbxproj files
119 } elsif ($line =~ /^(\s*)children = \(\s*$/) {
122 my @children;
128 push @children, $childLine;
132 print $OUT @children;
134 print $OUT sort sortChildrenByFileName @children;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeExpandableAdapter.java 63 List<DataBindingItem> children = dataBindingItem.getChildren(); local
66 // if there are children, we use the count as a repeat count for the children.
67 if (children.size() > 0) {
79 if (children.size() > 0) {
96 List<AdapterItem> children = item.getChildren(); local
97 return children.get(childPosition);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectTree.java 58 List<ViewNode> children = ((ViewNode) element).children; local
59 return children.toArray(new ViewNode[children.size()]);
73 return ((ViewNode) element).children.size() != 0;
  /frameworks/base/core/java/android/view/
ViewGroup.java 53 * (called children.) The view group is the base class for layouts and views
92 * Listener used to propagate events indicating when children are added
103 * A Transformation used when drawing children, to
153 // The hover targets are children which have received ACTION_HOVER_ENTER.
195 // When set, this ViewGroup caches its children in a Bitmap before starting a layout animation
209 // the children's Bitmap caches if necessary
222 * When set, this ViewGroup supports static transformations on children; this causes
240 * of its children.
245 * When set, this ViewGroup tries to always draw its children using their drawing cache.
251 * draw its children with their drawing cache
762 final View[] children = mChildren; local
794 final View[] children = mChildren; local
820 final View[] children = mChildren; local
837 final View[] children = mChildren; local
855 final View[] children = mChildren; local
869 final View[] children = mChildren; local
886 final View[] children = mChildren; local
932 final View[] children = mChildren; local
945 final View[] children = mChildren; local
958 final View[] children = mChildren; local
979 final View[] children = mChildren; local
1027 final View[] children = mChildren; local
1166 final View[] children = mChildren; local
1202 final View[] children = mChildren; local
1214 final View[] children = mChildren; local
1321 final View[] children = mChildren; local
1540 final View[] children = mChildren; local
1666 final View[] children = mChildren; local
2152 final View[] children = mChildren; local
2173 final View[] children = mChildren; local
2188 final View[] children = mChildren; local
2206 final View[] children = mChildren; local
2270 final View[] children = mChildren; local
2298 final View[] children = mChildren; local
2326 final View[] children = mChildren; local
2354 final View[] children = mChildren; local
2369 final View[] children = mChildren; local
2433 final View[] children = mChildren; local
2596 final View[] children = mChildren; local
3007 final View[] children = mChildren; local
3019 final View[] children = mChildren; local
3028 final View[] children = mChildren; local
3398 View[] children = mChildren; local
3429 final View[] children = mChildren; local
3452 final View[] children = mChildren; local
3640 final View[] children = mChildren; local
3699 final View[] children = mChildren; local
3878 final View[] children = mChildren; local
4173 final View[] children = mChildren; local
4490 final View[] children = mChildren; local
4510 final View[] children = mChildren; local
4577 final View[] children = mChildren; local
4621 final View[] children = mChildren; local
4928 final View[] children = mChildren; local
4960 final View[] children = mChildren; local
4991 final View[] children = mChildren; local
5006 final View[] children = mChildren; local
    [all...]

Completed in 1438 milliseconds

1 2 3 45 6 7 8 91011>>