Searched defs:children (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/services/java/com/android/server/firewall/
H A DFilterList.java27 protected final ArrayList<Filter> children = new ArrayList<Filter>(); field in class:FilterList
39 children.add(filter);
/frameworks/base/sax/java/android/sax/
H A DChildren.java20 * Contains element children. Using this class instead of HashMap results in
25 Child[] children = new Child[16]; field in class:Children
34 Child current = children[index];
36 // We have no children in this bucket yet.
38 children[index] = current;
69 Child current = children[index];
H A DElement.java39 Children children; field in class:Element
69 + " text element listener. It cannot have children.");
72 if (children == null) {
73 children = new Children();
76 return children.getOrCreate(this, uri, localName);
158 if (children != null) {
159 throw new IllegalStateException("This element already has children."
176 * Clears flags on required children.
/frameworks/base/core/tests/benchmarks/src/com/android/internal/util/
H A DIndentingPrintWriterBenchmark.java101 public ArrayList<Node> children; field in class:IndentingPrintWriterBenchmark.Node
105 public static Node build(String name, Node... children) { argument
108 if (children != null && children.length > 0) {
109 node.children = Lists.newArrayList(children);
129 if (children != null) {
130 for (Node child : children) {
141 if (children != null) {
143 for (Node child : children) {
[all...]
/frameworks/base/tools/preload/
H A DProc.java44 final List<Proc> children = new ArrayList<Proc>(); field in class:Proc
159 for (Proc child : children) {
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabasePerformanceTests.java41 public static String[] children() { method in class:DatabasePerformanceTests
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DGraphicsPerformanceTests.java41 public static String[] children() { method in class:GraphicsPerformanceTests
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentActivity.java129 SimpleArrayMap<String, Object> children; field in class:FragmentActivity.NonConfigurationInstances
534 nci.children = null;
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java1339 private final HashMap<Character,TrieNode> children = field in class:AbstractMessageParser.TrieNode
1355 return children.get(Character.valueOf(ch));
1360 TrieNode node = children.get(key);
1363 children.put(key, node);
/frameworks/base/core/java/android/app/
H A DActivityManager.java1300 public StackBoxInfo[] children; field in class:ActivityManager.StackBoxInfo
1316 if (children != null) {
1317 children[0].writeToParcel(dest, flags);
1318 children[1].writeToParcel(dest, flags);
1331 children = new StackBoxInfo[2];
1332 children[0] = StackBoxInfo.CREATOR.createFromParcel(source);
1333 children[1] = StackBoxInfo.CREATOR.createFromParcel(source);
1365 if (children != null) {
1367 sb.append(children[0].toString(prefix + " "));
1369 sb.append(children[
[all...]
H A DActivity.java704 HashMap<String, Object> children; field in class:Activity.NonConfigurationInstances
1635 ? mLastNonConfigurationInstances.children : null;
1651 HashMap<String, Object> children = onRetainNonConfigurationChildInstances();
1672 if (activity == null && children == null && fragments == null && !retainLoaders) {
1678 nci.children = children;
/frameworks/base/tools/aapt/
H A DResource.cpp812 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application->getChildren()); local
813 for (size_t i = 0; i < children.size(); i++) {
814 sp<XMLNode> child = children.editItemAt(i);
830 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(root->getChildren()); local
831 for (size_t i = 0; i < children.size(); i++) {
832 sp<XMLNode> child = children.editItemAt(i);
/frameworks/base/core/java/android/view/
H A DView.java182 * <td>Called after a view and all of its children has been inflated
190 * of its children.
196 * of its children.
376 * this pass each parent is responsible for positioning all of its children
386 * children's measurements. A parent view may call measure() more than once on
387 * its children. For example, the parent may measure each child once with
389 * measure() on them again with actual numbers if the sum of all the children's
439 * this means that parents will draw before (i.e., behind) their children, with
581 * attached to a view that has children, the animation will affect the entire
1558 * in drawChild(), when we decide to draw a view's children'
7210 addChildrenForAccessibility(ArrayList<View> children) argument
[all...]

Completed in 850 milliseconds