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

12

/frameworks/base/services/core/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.java37 Children children; field in class:Element
67 + " text element listener. It cannot have children.");
70 if (children == null) {
71 children = new Children();
74 return children.getOrCreate(this, uri, localName);
156 if (children != null) {
157 throw new IllegalStateException("This element already has children."
174 * Clears flags on required children.
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DArgListExpr.java33 public ArgListExpr(int id, Iterable<Expr> children) { argument
34 super(children);
H A DExpr.java100 Expr(Iterable<Expr> children) { argument
101 for (Expr expr : children) {
107 Expr(Expr... children) { argument
108 Collections.addAll(mChildren, children);
286 * Default implementations checks children and returns true if any of them returns true
369 "if there are no children, you must override computeUniqueKey");
371 "if there are no children, you must override computeUniqueKey");
/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/data-binding/compiler/src/test/java/android/databinding/tool/expr/
H A DExprTest.java37 public DummyExpr(String key, DummyExpr... children) { argument
38 super(children);
H A DExprModelTest.java54 public DummyExpr(String key, DummyExpr... children) { argument
55 super(children);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationGroupManager.java91 group.children.remove(removed);
93 if (group.children.isEmpty()) {
103 if (group.children.isEmpty()) {
127 if (!group.children.isEmpty()) {
131 group.children.add(added);
132 if (group.summary != null && group.children.size() == 1 && !group.expanded) {
168 return !group.children.isEmpty();
216 public final HashSet<NotificationData.Entry> children = new HashSet<>(); field in class:NotificationGroupManager.NotificationGroup
231 * Children group policy has changed and children may no be prohibited or allowed.
236 * A group of children jus
[all...]
/frameworks/base/tools/aapt2/
H A DXmlDom.h53 std::vector<std::unique_ptr<Node>> children; member in struct:aapt::xml::Node
110 * A Text (CDATA) XML node. Can not have any 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/base/libs/hwui/
H A DDisplayList.h119 // range of included children in DLD::mChildren
123 // whether children with non-zero Z in the chunk should be reordered
149 const Vector<DrawRenderNodeOp*>& children() { return mChildren; } function in class:android::uirenderer::DisplayListData
165 // list of children display lists for quick, non-drawing traversal
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp48 uint64_t childrenSum(const List<sp<WebmElement> >& children) { argument
50 for (List<sp<WebmElement> >::const_iterator it = children.begin();
51 it != children.end(); ++it) {
231 WebmMaster::WebmMaster(uint64_t id, const List<sp<WebmElement> >& children) argument
232 : WebmElement(id, childrenSum(children)), mChildren(children) {
H A DWebmFrameThread.cpp101 // children:
109 List<sp<WebmElement> >& children) {
110 CHECK(!frames.empty() && children.empty());
115 children.clear();
116 children.push_back(clusterTimecode);
119 void WebmFrameSinkThread::writeCluster(List<sp<WebmElement> >& children) { argument
120 // children must contain at least one simpleblock and its timecode
121 CHECK_GE(children.size(), 2);
124 sp<WebmElement> cluster = new WebmMaster(kMkvCluster, children);
126 children
106 initCluster( List<const sp<WebmFrame> >& frames, uint64_t& clusterTimecodeL, List<sp<WebmElement> >& children) argument
139 List<sp<WebmElement> > children; local
[all...]
H A DWebmWriter.cpp434 List<sp<WebmElement> > children; local
437 children.push_back(mStreams[i].mTrackEntry);
440 tracks = new WebmMaster(kMkvTracks, children);
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java304 * @param parentId The id of the parent media item whose list of children
306 * @param callback The callback to receive the list of children.
340 * Unsubscribes for changes to the children of the specified media id.
346 * @param parentId The id of the parent media item whose list of children
591 * Flag: Indicates that the item has children of its own.
730 * Called when the list of children is loaded or updated.
733 * @param children The children which were loaded.
736 @NonNull List<MediaItem> children) {
746 * @param parentId The media id of the parent media item whose children coul
735 onChildrenLoaded(@onNull String parentId, @NonNull List<MediaItem> children) argument
[all...]
/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/telecomm/java/android/telecom/
H A DCall.java145 * calls which can have {@link Connection}s as children.
591 * Invoked when the children of this {@code Call} have changed. See {@link #getChildren()}.
594 * @param children The new children of the {@code Call}.
596 public void onChildrenChanged(Call call, List<Call> children) {} argument
834 * Obtains the children of this conference {@code Call}, if any.
836 * @return The children of this {@code Call} if this {@code Call} is a conference, or an empty
1136 private void fireChildrenChanged(final List<Call> children) { argument
1143 callback.onChildrenChanged(call, children);
/frameworks/base/tools/aapt/
H A DResource.cpp903 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application->getChildren()); local
904 for (size_t i = 0; i < children.size(); i++) {
905 sp<XMLNode> child = children.editItemAt(i);
921 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(root->getChildren()); local
922 for (size_t i = 0; i < children.size(); i++) {
923 sp<XMLNode> child = children.editItemAt(i);
H A DResourceTable.cpp4706 // We were told not to version vector tags, so skip the children here.
4737 // Schedule a visit to the children.
4738 const Vector<sp<XMLNode> >& children = node->getChildren(); local
4739 const size_t childCount = children.size();
4741 nodesToVisit.push(children[i]);
/frameworks/base/core/java/android/app/
H A DActivity.java733 HashMap<String, Object> children; field in class:Activity.NonConfigurationInstances
1869 ? mLastNonConfigurationInstances.children : null;
1886 HashMap<String, Object> children = onRetainNonConfigurationChildInstances();
1889 if (activity == null && children == null && fragments == null && loaders == null
1896 nci.children = children;
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.io.File) boolean success int i String[] children java.io.File dir private void unzip (java ...
/frameworks/data-binding/compiler/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.io.File) boolean success int i String[] children java.io.File dir private void unzip (java ...

Completed in 1682 milliseconds

12