Searched defs:children (Results 1 - 25 of 383) sorted by last modified time

1234567891011>>

/external/yaffs2/yaffs2/
H A Dyaffs_guts.h364 * - a directory (no data, has children links
379 struct list_head children; /* list of child links */ member in struct:__anon34326
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp2914 node has 16 instead of 8 children.
2918 ColorTree* children[16]; /*up to 16 pointers to ColorTree of next level*/ member in struct:ColorTree
2925 for(i = 0; i < 16; i++) tree->children[i] = 0;
2934 if(tree->children[i])
2936 color_tree_cleanup(tree->children[i]);
2937 lodepng_free(tree->children[i]);
2949 if(!tree->children[i]) return -1;
2950 else tree = tree->children[i];
2971 if(!tree->children[i])
2973 tree->children[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_introspect.c179 char **children; local
183 dbus_connection_list_registered(con, path, &children);
184 for (i = 0; children[i]; i++)
185 wpabuf_printf(xml, "<node name=\"%s\"/>", children[i]);
186 dbus_free_string_array(children);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java47 private List children = null; field in class:XMPNode
101 children = null;
142 * <em>Note:</em> The node children are indexed from [1..size]!
158 * <em>Note:</em> The node children are indexed from [1..size]!
181 * If its a schema node and doesn't have any children anymore, its deleted.
193 * Removes the children list if this node has no children anymore;
194 * checks if the provided node is a schema node and doesn't have any children anymore,
199 if (children.isEmpty())
201 children
[all...]
/external/webp/src/utils/
H A Dhuffman.c44 HuffmanTreeNode* const children = tree->root_ + tree->num_nodes_; local
45 node->children_ = (int)(children - node);
46 assert(children - node == (int)(children - node));
48 TreeNodeInit(children + 0);
49 TreeNodeInit(children + 1);
/external/valgrind/main/massif/
H A Dms_main.c79 // keeping XPt children sorted by 'ip' and use binary search in get_XCon.
549 UInt n_children; // number of children
550 UInt max_children; // capacity of children array
551 XPt** children; // pointers to children XPts member in struct:_XPt
571 SXPt** children; member in struct:_SXPt::__anon33000::__anon33001
591 // Note that we cannot use VG_(perm_malloc) for the 'children' array, because
598 // We don't initially allocate any space for children. We let that
600 // children anyway.
603 xpt->children
[all...]
/external/valgrind/main/memcheck/tests/
H A Dthreadname.c11 static pthread_t children[3]; variable
40 r = pthread_create(&children[2], NULL, child_fn_2, NULL);
43 r = pthread_join(children[2], NULL);
55 r = pthread_create(&children[1], NULL, child_fn_1, NULL);
58 r = pthread_join(children[1], NULL);
70 r = pthread_create(&children[0], NULL, child_fn_0, NULL);
73 r = pthread_join(children[0], NULL);
/external/skia/src/core/
H A DSkRTree.cpp237 int SkRTree::distributeChildren(Branch* children) { argument
262 SkTQSort(children, children + fMaxChildren, RectLessThan(sorts[i][j]));
266 SkIRect r1 = children[0].fBounds;
267 SkIRect r2 = children[fMinChildren + k - 1].fBounds;
269 join_no_empty_check(children[l].fBounds, &r1);
272 join_no_empty_check(children[l].fBounds, &r2);
299 SkTQSort(children, children + fMaxChildren, RectLessThan(sorts[axis][sortSide]));
/external/smack/asmack-master/lib/
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigureForm.java127 return getFieldValues(ConfigureNodeFields.children);
133 * @param children
135 public void setChildren(List<String> children) argument
137 addField(ConfigureNodeFields.children, FormField.TYPE_TEXT_MULTI);
138 setAnswer(ConfigureNodeFields.children.getFieldName(), children);
142 * Returns the policy that determines who may associate children with the node.
157 * Sets the policy that determines who may associate children with the node.
H A DConfigureNodeFields.java96 children, enum constant in enum:ConfigureNodeFields
/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.io.File) boolean success int i String[] children java.io.File dir public void unzip (java ...
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliParser.java403 private CommonTree buildTree(int type, String text, List<CommonTree> children) { argument
405 for (CommonTree child: children) {
/external/smali/util/src/main/java/org/jf/util/
H A DClassFileNameHandler.java173 //this contains the FileSystemEntries for all of this package's children
175 private RadixTree<FileSystemEntry> children = new RadixTreeImpl<FileSystemEntry>(); field in class:ClassFileNameHandler.PackageNameEntry
198 FileSystemEntry existingEntry = children.find(elementNameLower);
212 children.replace(elementNameLower, virtualEntry);
221 children.insert(elementNameLower, classNameEntry);
225 children.insert(elementNameLower, packageNameEntry);
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DMenuLoader.java68 NodeList children = node.getChildNodes();
69 if (children != null && children.getLength() != 0) {
70 for (int i = 0; i < children.getLength(); i++) {
71 Node nodei = children.item(i);
133 private List<MenuNode> children = new ArrayList<MenuNode>(); field in class:MenuLoader.MenuNode
142 return children;
146 children.add(MenuNode);
150 List<MenuLoader.MenuNode> ch = child.children;
155 for (MenuNode child : source.children) {
[all...]
H A DPreferenceLoader.java87 private List<PreferenceNode> children = new ArrayList<PreferenceNode>(); field in class:PreferenceLoader.PreferenceNode
95 return children;
99 children.add(prefNode);
105 for (PreferenceNode child : children) {
H A DViewLoader.java152 private List<ViewNode> children = new ArrayList<ViewNode>(); field in class:ViewLoader.ViewNode
163 return children;
167 children.add(viewNode);
173 for (ViewNode child : children) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowViewGroup.java21 private List<View> children = new ArrayList<View>(); field in class:ShadowViewGroup
32 for (View child : children) {
48 for (View child : children) {
66 children.add(child);
68 children.add(index, child);
92 if (children.get(i) == child) {
101 return children.size();
106 if( index >= children.size() ){ return null; }
107 return children.get(index);
112 for (View child : children) {
[all...]
/external/qemu/android/skin/
H A Dcomposer.h55 ARefList children[1]; member in struct:SkinPlateGroup
/external/qemu/include/hw/
H A Dqdev-core.h38 QLIST_HEAD(, DeviceState) children; member in struct:BusState
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c463 ;; Just for the first int10 find its children variable

Completed in 3498 milliseconds

1234567891011>>