/sdk/layoutlib_api/sample/src/com/example/android/render/ |
Main.java | 155 // display the children 156 List<ViewInfo> children = info.getChildren(); local 157 if (children != null) { 159 for (ViewInfo child : children) {
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_node_data_unittest.cc | 69 EXPECT_EQ(0, drag_data.elements[0].children.size()); 154 // Tests reading/writing a folder with children. 179 ASSERT_EQ(1, read_data.elements[0].children.size()); 181 read_data.elements[0].children[0]; 222 ASSERT_EQ(1, read_data.elements[0].children.size()); 227 EXPECT_EQ(1, read_folder.children.size()); 232 EXPECT_EQ(0, read_url.children.size());
|
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/extensions/ |
extension_bookmark_manager_api.cc | 91 ListValue* children = new ListValue(); local 93 AddNodeToList(children, *node.GetChild(i)); 94 dict->Set(keys::kChildrenKey, children); 111 ListValue* children = new ListValue(); local 112 for (size_t i = 0; i < element.children.size(); ++i) 113 AddElementToList(children, element.children[i]); 114 dict->Set(keys::kChildrenKey, children);
|
/external/elfutils/libelf/ |
common.h | 80 /* Acquire lock for the descriptor and all children. */ 88 Elf *child = elf->state.ar.children; 99 /* Release own lock and those of the children. */ 105 Elf *child = elf->state.ar.children;
|
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/quake/quake/src/QW/client/ |
bspfile.h | 145 short children[2]; // negative numbers are -(leafs+1), not nodes member in struct:__anon10349 155 short children[2]; // negative numbers are contents member in struct:__anon10350
|
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/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/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;
|