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

/packages/apps/Launcher3/src/com/android/launcher3/logging/
H A DDumpTargetWrapper.java38 ArrayList<DumpTargetWrapper> children; field in class:DumpTargetWrapper
41 children = new ArrayList<>();
59 children.add(child);
65 if (!children.isEmpty()) {
66 for(DumpTargetWrapper t: children) {
/packages/apps/Settings/src/com/android/settings/applications/
H A DDirectoryAccessDetails.java178 /* uuid= */ null, dir, granted, /* children= */ null));
192 externalVolume.children.add(new Pair<>(dir, granted));
241 final Set<SwitchPreference> children = new HashSet<>(volume.children.size());
243 /* dir= */ null, volume.granted, children));
245 // ... then the children prefs
246 volume.children.forEach((pair) -> {
252 /* children= */ null);
254 children.add(childPref);
261 String uuid, String dir, boolean granted, @Nullable Set<SwitchPreference> children) {
260 newPreference(Context context, String title, Uri providerUri, String uuid, String dir, boolean granted, @Nullable Set<SwitchPreference> children) argument
314 final List<Pair<String, Boolean>> children = new ArrayList<>(); field in class:DirectoryAccessDetails.ExternalVolume
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DProfileData.java41 public ArrayList<Node> children; field in class:ProfileData.Node
82 if (node.children == null) {
83 node.children = new ArrayList<Node>();
87 ArrayList<Node> children = node.children;
89 for (j = 0; j < children.size(); j++) {
90 if (children.get(j).id == id) break;
92 if (j == children.size()) {
93 children.add(new Node(node, id));
96 node = children
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DSimpleNode.java7 protected Node[] children; field in class:SimpleNode
30 if (children == null) {
31 children = new Node[i + 1];
32 } else if (i >= children.length) {
34 System.arraycopy(children, 0, c, 0, children.length);
35 children = c;
37 children[i] = n;
41 return children[i];
45 return (children
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
H A DBrowseTree.java80 // Each node of the tree is represented by Folder ID, Folder Name and the children.
98 // List of children.
190 synchronized <E> void refreshChildren(String parentID, List<E> children) { argument
196 refreshChildren(parent, children);
199 synchronized <E> void refreshChildren(BrowseNode parent, List<E> children) { argument
200 if (children == null) {
201 Log.e(TAG, "children cannot be null ");
206 for (E child : children) {
246 // Remove existing children and then add the new children
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/
H A DBrowsedPlayerWrapper.java252 public void onChildrenLoaded(String parentId, List<MediaItem> children) { argument
254 Log.d(TAG, "onChildrenLoaded: mediaId=" + parentId + " size= " + children.size());
259 + " children loaded while callback is null");
269 for (MediaItem item : children) {
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DBrowsedMediaPlayer.java65 /* The mediaId to be used for subscribing for children using the MediaBrowser */
136 List<MediaBrowser.MediaItem> children) {
138 Log.d(TAG, "OnChildren Loaded folder items: childrens= " + children.size());
149 mFolderItems = children;
151 (byte) 0x00, children.size(), ROOT_FOLDER);
153 mFolderItems = children;
181 public void onChildrenLoaded(String parentId, List<MediaBrowser.MediaItem> children) { argument
188 if (children == null) {
189 Log.w(TAG, logprefix + "children list is null parentId: " + parentId);
192 for (MediaBrowser.MediaItem item : children) {
560 checkIndexOutofBounds(byte[] bdaddr, List<MediaBrowser.MediaItem> children, long startItem, long endItem) argument
590 getFolderItemsFilterAttr(byte[] bdaddr, AvrcpCmd.FolderItemsCmd mFolderItemsReqObj, List<MediaBrowser.MediaItem> children, byte scope, long startItem, long endItem) argument
[all...]
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
H A DUiCallManager.java765 public void onChildrenChanged(Call telecomCall, List<Call> children) { argument
/packages/apps/Car/Media/src/com/android/car/media/browse/
H A DBrowseAdapter.java146 * Represents the loading state of children of a single {@link MediaItemMetadata} in the
151 * {@link com.android.car.media.common.MediaItemMetadata} whose children are being loaded
156 /** Playable children of the given item */
158 /** Browsable children of the given item */
167 void setChildren(List<MediaItemMetadata> children) { argument
170 for (MediaItemMetadata child : children) {
182 * Creates a {@link BrowseAdapter} that displays the children of the given media tree node.
185 * @param parentItem the node to display children of, or NULL if the
226 * Replaces the media item whose children are being displayed in this adapter. The content of
227 * the adapter will be replaced once the children o
357 onItemsLoaded(String parentId, List<MediaItemMetadata> children) argument
[all...]
/packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/
H A DMediaSource.java72 /** Number of times we will retry obtaining the list of children of a certain node */
74 /** Time between retries while trying to obtain the list of children of a certain node */
238 * Subscribes to changes on the list of media item children of the given parent. Multiple
242 * @param parentId parent of the children to load, or null to indicate children of the root
272 * Unsubscribes to changes on the list of media items children of the given parent
303 * method to obtain the initial list of children of a given node.
342 * Creates a subscription to the list of children of a certain media browse item
353 * Adds a subscriber to this list of children
377 * Starts trying to obtain the list of children
404 onChildrenLoaded(String parentId, List<MediaBrowser.MediaItem> children) argument
415 onChildrenLoaded(String parentId, List<MediaBrowser.MediaItem> children, Bundle options) argument
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DFusionDictionary.java70 * and children (Pt means Patricia Trie).
75 * of the trie tree; as such, it can be a terminal, and it can have children.
79 * shortcuts and/or bigrams, but a non-terminal may not. Moreover, children, if present,
116 final boolean isPossiblyOffensive, final PtNodeArray children) {
120 mChildren = children;
114 PtNode(final int[] chars, final ArrayList<WeightedString> bigrams, final ProbabilityInfo probabilityInfo, final boolean isNotAWord, final boolean isPossiblyOffensive, final PtNodeArray children) argument
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DMessageHeaderView.java583 private static void setChildVisibility(int visibility, View... children) { argument
584 for (View v : children) {
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 246 milliseconds