Searched defs:list (Results 1 - 25 of 155) sorted by last modified time

1234567

/frameworks/wilhelm/src/android/
H A DVideoCodec_to_android.cpp62 sp<IMediaCodecList> list = MediaCodecList::getInstance(); local
63 if (list == NULL) {
73 index = list->findCodecByType(
79 sp<MediaCodecInfo> info = list->getCodecInfo(index);
/frameworks/support/transition/src/android/support/transition/
H A DTransition.java500 * @param matches A list of zero or more of {@link #MATCH_INSTANCE},
637 * assuming that there is no match between values in the list.
804 * the Transition has no target/targetId list (the default, in which
806 * the given view is in the target list or the view id is in the
807 * targetId list. If the target parameter is null, then the target list
976 * <p>The target list is like the {@link #addTarget(int) targetId}
977 * list except this list specifies the actual View instances, not the ids
984 * necessarily have ids set on them, then the target list o
1156 excludeObject(ArrayList<T> list, T target, boolean exclude) argument
1305 excludeId(ArrayList<Integer> list, int targetId, boolean exclude) argument
1320 excludeView(ArrayList<View> list, View target, boolean exclude) argument
1388 excludeType(ArrayList<Class> list, Class type, boolean exclude) argument
2386 add(ArrayList<T> list, T item) argument
2401 remove(ArrayList<T> list, T item) argument
[all...]
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DPreferenceFragment.java311 * Sets the drawable that will be drawn between each item in the list.
324 * Sets the height of the divider that will be drawn between each item in the list. Calling
729 public ScrollToPreferenceObserver(RecyclerView.Adapter adapter, RecyclerView list, argument
732 mList = list;
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceFragmentCompat.java300 * Sets the drawable that will be drawn between each item in the list.
313 * Sets the height of the divider that will be drawn between each item in the list. Calling
717 public ScrollToPreferenceObserver(RecyclerView.Adapter adapter, RecyclerView list, argument
720 mList = list;
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java610 private void swapMoveUpdate(List<UpdateOp> list, int move) { argument
611 mOpReorderer.swapMoveUpdate(list, move, list.get(move), move + 1, list.get(move + 1));
614 private void swapMoveRemove(List<UpdateOp> list, int move) { argument
615 mOpReorderer.swapMoveRemove(list, move, list.get(move), move + 1, list.get(move + 1));
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOpReorderer.java38 // we push them to the end of the list so that they can be handled easily.
45 private void swapMoveOp(List<UpdateOp> list, int badMove, int next) { argument
46 final UpdateOp moveOp = list.get(badMove);
47 final UpdateOp nextOp = list.get(next);
50 swapMoveRemove(list, badMove, moveOp, next, nextOp);
53 swapMoveAdd(list, badMove, moveOp, next, nextOp);
56 swapMoveUpdate(list, badMove, moveOp, next, nextOp);
61 void swapMoveRemove(List<UpdateOp> list, int movePos, UpdateOp moveOp, argument
91 list.remove(removePos);
110 list
160 swapMoveAdd(List<UpdateOp> list, int move, UpdateOp moveOp, int add, UpdateOp addOp) argument
181 swapMoveUpdate(List<UpdateOp> list, int move, UpdateOp moveOp, int update, UpdateOp updateOp) argument
218 getLastMoveOutOfOrder(List<UpdateOp> list) argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentTest.java408 List<? extends BaseRecyclerViewAnimationsTest.AnimateLogBase> list) {
409 for (BaseRecyclerViewAnimationsTest.AnimateLogBase base : list) {
406 collectInto( LongSparseArray<String> target, List<? extends BaseRecyclerViewAnimationsTest.AnimateLogBase> list) argument
H A DLoggingItemAnimator.java47 List<? extends BaseRecyclerViewAnimationsTest.AnimateLogBase> list) {
48 for (BaseRecyclerViewAnimationsTest.AnimateLogBase log : list) {
46 contains(RecyclerView.ViewHolder viewHolder, List<? extends BaseRecyclerViewAnimationsTest.AnimateLogBase> list) argument
/frameworks/support/compat/java/android/support/v4/graphics/
H A DPathParser.java97 ArrayList<PathDataNode> list = new ArrayList<PathDataNode>();
103 addNode(list, s.charAt(0), val);
110 addNode(list, pathData.charAt(start), new float[0]);
112 return list.toArray(new PathDataNode[list.size()]);
187 private static void addNode(ArrayList<PathDataNode> list, char cmd, float[] val) { argument
188 list.add(new PathDataNode(cmd, val));
205 * @param s the string containing a command and list of floats
/frameworks/support/compat/java/android/support/v4/os/
H A DLocaleListCompat.java41 public void setLocaleList(@NonNull Locale... list) { argument
42 mLocaleList = new LocaleListHelper(list);
107 public void setLocaleList(@NonNull Locale... list) { argument
108 mLocaleList = new LocaleList(list);
179 * Creates a new instance of {@link LocaleListCompat} from the Locale list.
252 * Retrieves a String representation of the language tags in this list.
260 * Returns the first match in the locale list given an unordered array of supported locales
263 * @return The first {@link Locale} from this list that appears in the given array, or
283 * @param list The language tags to be included as a single {@link String} separated by commas.
287 public static LocaleListCompat forLanguageTags(@Nullable String list) { argument
[all...]
H A DLocaleListHelper.java36 * LocaleListHelper is an immutable list of Locales, typically used to keep an ordered list of user
45 // This is a comma-separated list of the locales in the LocaleListHelper created at construction
152 * Retrieves a String representation of the language tags in this list.
165 * which returns a pre-constructed empty list.</p>
173 LocaleListHelper(@NonNull Locale... list) { argument
174 if (list.length == 0) {
178 final Locale[] localeList = new Locale[list.length];
181 for (int i = 0; i < list.length; i++) {
182 final Locale l = list[
273 forLanguageTags(@ullable String list) argument
[all...]
H A DLocaleListInterface.java35 void setLocaleList(@NonNull Locale... list); argument
/frameworks/support/design/src/android/support/design/widget/
H A DDirectedAcyclicGraph.java79 // Finally add the edge to the list
86 * @return a list containing any incoming edges, or null if there are none.
97 * @return a list containing any outgoing edges, or null if there are none.
138 * Returns a topologically sorted list of the nodes in this graph. This uses the DFS algorithm
142 * <p>The resulting list will be ordered such that index 0 will contain the node at the bottom
143 * of the graph. The node at the end of the list will have no dependencies on other nodes.</p>
160 // We've already seen and added the node to the result list, skip...
175 // Unmark the node from the temporary list
177 // Finally add it to the result list
190 ArrayList<T> list
197 poolList(@onNull ArrayList<T> list) argument
[all...]
/frameworks/support/dynamic-animation/src/android/support/animation/
H A DDynamicAnimation.java436 * is {@code null} or has already been added to the list of listeners for the animation, no op.
459 * If the listener is {@code null} or has already been added to the list of listeners for the
540 * Remove {@code null} entries from the list.
542 private static <T> void removeNullEntries(ArrayList<T> list) { argument
544 for (int i = list.size() - 1; i >= 0; i--) {
545 if (list.get(i) == null) {
546 list.remove(i);
552 * Remove an entry from the list by marking it {@code null} and clean up later.
554 private static <T> void removeEntry(ArrayList<T> list, T entry) { argument
555 int id = list
[all...]
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentTransitionCompat21.java86 return; // This child is already in the list, so all its children are also.
149 * when they are removed later, a list match will suffice to remove the targets.
187 * Simple utility to detect if a list is null or has no elements.
189 private static boolean isNullOrEmpty(List list) { argument
190 return list == null || list.isEmpty();
489 * replaces them with the new targets list.
490 * The views list should match those added in addTargets and should contain
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserCompat.java271 * The list of subscriptions is maintained even when not connected and is
281 * @param parentId The id of the parent media item whose list of children
283 * @param callback The callback to receive the list of children.
301 * The list of subscriptions is maintained even when not connected and is
311 * @param parentId The id of the parent media item whose list of children
316 * @param callback The callback to receive the list of children.
340 * @param parentId The id of the parent media item whose list of children
358 * @param parentId The id of the parent media item whose list of children
478 * Creates a list of {@link MediaItem} objects from a framework
479 * {@link android.media.browse.MediaBrowser.MediaItem} object list
778 applyOptions(List<MediaBrowserCompat.MediaItem> list, final Bundle options) argument
957 onLoadChildren(Messenger callback, String parentId, List list, Bundle options) argument
1369 onLoadChildren(final Messenger callback, final String parentId, final List list, final Bundle options) argument
1891 onLoadChildren(Messenger callback, String parentId, List list, Bundle options) argument
[all...]
H A DMediaBrowserServiceCompat.java137 * A key for passing the list of MediaItems to the ResultReceiver in search.
356 void onResultSent(List<MediaBrowserCompat.MediaItem> list) {
358 if (list != null) {
360 for (MediaBrowserCompat.MediaItem item : list) {
440 void onResultSent(List<MediaBrowserCompat.MediaItem> list) {
442 if (list != null) {
444 for (MediaBrowserCompat.MediaItem item : list) {
920 void onLoadChildren(String mediaId, List<MediaBrowserCompat.MediaItem> list, Bundle options) argument
956 public void onLoadChildren(String mediaId, List<MediaBrowserCompat.MediaItem> list, argument
961 if (list !
1347 applyOptions(List<MediaBrowserCompat.MediaItem> list, final Bundle options) argument
[all...]
/frameworks/rs/
H A DrsList.h83 return p == other.p && buffer == other.buffer && list == other.list;
87 return p != other.p || buffer != other.buffer || list != other.list;
95 explicit iterator(const List* list_) : list(list_) {}
97 p(p_), buffer(buffer_), list(list_) {}
102 const List* list; member in class:android::renderscript::List::iterator
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhone.java843 // only those registrants to the registrant list which are not
941 * @param h Handler to be removed from the registrant list.
961 * @param h Handler to be removed from the registrant list.
1032 * @param h Handler to be removed from the registrant list.
1098 * @param h Handler to be removed from the registrant list.
1119 * @param h Handler to be removed from the registrant list.
1656 * @param cellInfoList the original cell info list from the RIL
1657 * @return the original list with CDMA lat/long cleared if necessary
1994 * Query the list of band mode supported by RF.
2434 * @param h Handler to be removed from the registrant list
3071 setRoamingOverrideHelper(List<String> list, String prefix, String iccId) argument
[all...]
H A DServiceStateTracker.java219 * Danmarkshavn (Denmark). The list must be sorted by code.
245 List<CellInfo> list; field in class:ServiceStateTracker.CellInfoResult
517 /* list of LTE EARFCNs (E-UTRA Absolute Radio Frequency Channel Number,
1059 result.list = null;
1061 result.list = (List<CellInfo>) ar.result;
1064 log("EVENT_GET_CELL_INFO_LIST: size=" + result.list.size()
1065 + " list=" + result.list);
1069 mLastCellInfoList = result.list;
1080 List<CellInfo> list
[all...]
H A DTelephonyDevController.java147 private static void updateOrInsert(HardwareConfig hw, ArrayList<HardwareConfig> list) { argument
151 size = list.size();
153 item = list.get(i);
156 list.remove(i);
160 list.add(hw);
315 if (DBG) logd("getAllModems: empty list.");
333 if (DBG) logd("getAllSims: empty list.");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java857 * Query the list of band mode supported by RF.
1797 public void setCellInfoList(List<CellInfo> list) { argument
1798 mCellInfoList = list;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java1444 public static AndroidCustomData constructAndroidCustomData(List<String> list) { argument
1448 if (list == null) {
1451 } else if (list.size() < 2) {
1452 mimeType = list.get(0);
1455 final int max = (list.size() < VCardConstants.MAX_DATA_COLUMN + 1) ? list.size()
1457 mimeType = list.get(0);
1458 dataList = list.subList(1, max);
2528 * Constructs the list of insert operation for this object. When the
2555 // the RawContact is the first operation that gets inserted into the list
2582 listToString(List<String> list) argument
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DVNodeBuilder.java143 private String listToString(List<String> list){ argument
144 int size = list.size();
147 for (String type : list) {
156 return list.get(0);
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 9290 milliseconds

1234567