HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 126 - 150 of 400) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDiff.java 92 // Build lookup maps for children on both sides
96 // Walk through "before" children looking for deletes and updates
119 // Walk through remaining "after" children, which are inserts
139 final ArrayList<NamedContentValues> children = entity.getSubValues(); local
141 children.size());
142 for (NamedContentValues child : children) {
  /packages/apps/IM/src/com/android/im/imps/
PrimitiveElement.java 71 ArrayList<PrimitiveElement> children = new ArrayList<PrimitiveElement>(); local
75 children.add(child);
79 return children;
PtsPrimitiveSerializer.java 304 // 3. Has one or more children for the presence, and each child have
310 ArrayList<PrimitiveElement> children = p.getChildren(); local
311 if (children.size() > emptyValueSize) {
313 int childCount = children.size();
316 PrimitiveElement value = children.get(i);
352 ArrayList<PrimitiveElement> children = p.getChildren(); local
353 int childCount = children.size();
362 encodeNoValuePresence(buf, children.get(i));
447 ArrayList<PrimitiveElement> children = elem.getChildren(); local
449 appendFeature(buf, children.get(i))
488 ArrayList<PrimitiveElement> children = elem.getChildren(); local
    [all...]
  /dalvik/libcore/awt-kernel/src/main/java/java/beans/
PropertyChangeSupport.java 49 private Hashtable<String, List<PropertyChangeListener>> children; field in class:PropertyChangeSupport
398 children = new Hashtable<String, List<PropertyChangeListener>>(
400 children.put("", allSerializedPropertiesChangeListeners); //$NON-NLS-1$
401 oos.writeObject(children);
415 children = (Hashtable<String, List<PropertyChangeListener>>) ois
419 children);
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 31 * If AnimationSet sets any properties that its children also set
371 final ArrayList<Animation> children = mAnimations; local
372 final int count = children.size();
392 Animation a = children.get(i);
430 final ArrayList<Animation> children = mAnimations;
431 final int count = children.size();
434 children.get(i).setStartOffset(offsets[i]);
  /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:__anon4941
155 short children[2]; // negative numbers are contents member in struct:__anon4942
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/WebCore/html/
HTMLElement.idl 58 readonly attribute HTMLCollection children;
  /external/webkit/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) {
  /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/webkit/WebCore/accessibility/
AccessibilityARIAGridCell.cpp 83 AccessibilityChildrenVector siblings = parent->children();
AccessibilityTableRow.cpp 98 AccessibilityChildrenVector rowChildren = children();
  /external/webkit/WebCore/inspector/
JavaScriptProfileNode.cpp 126 const Vector<RefPtr<ProfileNode> >& children = profileNode->children(); local
155 for (Vector<RefPtr<ProfileNode> >::const_iterator it = children.begin(); it != children.end(); ++it) {
203 { "children", getChildren, 0, kJSPropertyAttributeNone },
InspectorDOMAgent.cpp 142 // No children are mapped yet -> only notify on changes of hasChildren.
145 // Re-add frame owner element together with its new children.
152 // Invalidate children requested flag for the element.
213 ScriptArray children = buildArrayForContainerChildren(node, 1, nodeMap); local
215 m_frontend->setChildNodes(nodeId, children);
470 ScriptArray children = buildArrayForContainerChildren(node, depth, nodesMap); local
471 if (children.length() > 0)
472 value.set("children", children);
514 ScriptArray children = m_frontend->newScriptArray() local
    [all...]
  /frameworks/base/test-runner/src/android/test/
TestListActivity.java 55 /** Our children tests */
129 String[] children = TestRunner.getChildren(this, mSuite); local
131 Arrays.sort(children, sComparator);
133 int len = children.length;
135 System.arraycopy(children, 0, mTests, 0, len);
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...]
  /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) {
  /external/webkit/WebKitTools/DumpRenderTree/mac/
AccessibilityUIElementMac.mm 223 NSArray* children = [m_element accessibilityAttributeValue:NSAccessibilityChildrenAttribute];
224 convertNSArrayToVector(children, elementVector);
229 NSArray* children = [m_element accessibilityArrayAttributeValues:NSAccessibilityChildrenAttribute index:location maxCount:length];
230 convertNSArrayToVector(children, elementVector);
235 Vector<AccessibilityUIElement> children;
236 getChildren(children);
238 return children.size();
257 Vector<AccessibilityUIElement> children;
258 getChildrenWithRange(children, index, 1);
260 if (children.size() == 1
    [all...]

Completed in 788 milliseconds

1 2 3 4 56 7 8 91011>>