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

1 2 3 4 5 6 7 891011>>

  /external/quake/quake/src/QW/client/
gl_refrag.c 150 R_SplitEntityOnNode (node->children[0]);
153 R_SplitEntityOnNode (node->children[1]);
  /external/quake/quake/src/WinQuake/
gl_refrag.cpp 150 R_SplitEntityOnNode (node->children[0]);
153 R_SplitEntityOnNode (node->children[1]);
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableColumn.cpp 77 const AccessibilityObject::AccessibilityChildrenVector& AccessibilityTableColumn::children() function in class:WebCore::AccessibilityTableColumn
94 AccessibilityChildrenVector rowChildren = children();
AccessibilityTableRow.cpp 105 AccessibilityChildrenVector rowChildren = children();
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderLayer.mm 166 [children release];
176 // Build children in back to front order.
238 children = childWebLayers;
241 - (NSArray *)children
243 return children;
  /external/webkit/Source/WebKit/win/
WebHistoryItem.h 99 virtual HRESULT STDMETHODCALLTYPE children(unsigned* childCount, SAFEARRAY** children);
  /frameworks/base/tools/preload/
Proc.java 44 final List<Proc> children = new ArrayList<Proc>(); field in class:Proc
159 for (Proc child : children) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestDragElement.java 71 public TestDragElement add(TestDragElement... children) {
76 for (TestDragElement child : children) {
  /external/v8/test/cctest/
test-cpu-profiler.cc 185 profile->top_down()->root()->children();
189 top_down_root_children->last()->children();
193 top_down_bbb_children->last()->children();
197 top_down_stub_children->last()->children();
201 profile->bottom_up()->root()->children();
210 bottom_up_root_children[0]->children();
214 bottom_up_root_children[1]->children();
217 bottom_up_root_children[2]->children();
221 bottom_up_ddd_children->last()->children();
275 while (node->children()->length() > 0)
    [all...]
  /external/bluetooth/glib/gio/fen/
fen-dump.c 50 GList* children; local
fen-node.h 36 /* the parent and children of node */
38 GHashTable *children; /* children in basename */ member in struct:node
  /external/bluetooth/glib/tests/
node-test.c 105 TEST (NULL, root->children == node_B);
114 TEST (NULL, root->children->next == node_F);
126 TEST (NULL, g_node_depth (node_G->children->next) == 4);
203 node = node->children->next;
  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data.h 57 // Children, only used for non-URL nodes.
58 std::vector<Element> children; member in struct:BookmarkNodeData::Element
  /external/chromium/chrome/browser/resources/
collected_cookies.js 16 $('block-button').disabled = !allowedCookies.children.length ||
22 $('allow-this-session-button').disabled = !blockedCookies.children.length ||
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_container_gtk.cc 150 GList* children = gtk_container_get_children(GTK_CONTAINER(widget())); local
151 if (!children)
157 for (GList* iter = children; iter != NULL; iter = iter->next) {
175 g_list_free(children);
  /external/chromium/chrome/common/extensions/
update_manifest.cc 61 for (xmlNode* child = root->children; child != NULL; child = child->next) {
74 if (!xmlStrcmp(attr->name, name) && attr->children &&
75 attr->children->content) {
77 attr->children->content));
  /external/clang/include/clang/AST/
EvaluatedExprVisitor.h 72 /// \brief The basis case walks all of the children of the statement or
75 for (Stmt::child_range C = S->children(); C; ++C)
  /external/collada/src/dae/
daeTinyXMLPlugin.cpp 99 // Recurse children
177 daeElementRefArray children; local
178 element->getChildren( children );
179 for ( size_t x = 0; x < children.getCount(); x++ )
181 writeElement( children.get(x) );
  /external/elfutils/libelf/
elf_readall.c 33 Elf *child = elf->state.ar.children;
96 /* Propagate the information down to all children and
97 their children. */
109 /* Free the locks on the children. */
  /external/libxslt/libxslt/
attrvt.c 179 if ((style == NULL) || (attr == NULL) || (attr->children == NULL))
181 if ((attr->children->type != XML_TEXT_NODE) ||
182 (attr->children->next != NULL)) {
189 str = attr->children->content;
xslt.c 892 if (cur->children) {
893 cur = cur->children;
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ShowMoreDataGridNode.js 35 var index = this.parent.children.indexOf(this);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java 103 * Children of the relative layouts, one below the other.
136 * Children of the relative layouts, one above the other.
242 private MockXmlNode createLinearLayout(boolean horizontal, MockXmlNode[] children) {
243 MockXmlNode layout = new MockXmlNode(null, "LinearLayout", Node.ELEMENT_NODE, children);
251 private MockXmlNode createRelativeLayout(MockXmlNode[] children) {
252 MockXmlNode layout = new MockXmlNode(null, "RelativeLayout", Node.ELEMENT_NODE, children);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 114 for (ViewNode node : root.children) {
119 if (node.children.size() > 0) {
160 for (ViewNode node : root.children) {
169 if (node.children.size() > 0) {
  /frameworks/base/test-runner/src/android/test/
TestRunner.java 286 String[] children = getChildren(method); local
287 run(children);
376 + " children method: " + className);
541 return clazz.getMethod("children", (Class[]) null);
560 throw new RuntimeException("couldn't get children method for "
564 String[] children = getChildren(m); local
566 String[] allChildren = new String[testChildren.length + children.length];
567 System.arraycopy(children, 0, allChildren, 0, children.length);
568 System.arraycopy(testChildren, 0, allChildren, children.length, testChildren.length)
692 String[] children = getChildren(method); local
    [all...]

Completed in 1366 milliseconds

1 2 3 4 5 6 7 891011>>