Searched defs:list (Results 1 - 25 of 61) sorted by path

123

/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp899 List<IOMX::ComponentInfo> list; local
900 omx->listNodes(&list);
902 for (List<IOMX::ComponentInfo>::iterator it = list.begin();
903 it != list.end(); ++it) {
/frameworks/av/media/libmedia/
H A DIMediaDeathNotifier.cpp82 SortedVector< wp<IMediaDeathNotifier> > list; local
86 list = sObitRecipients;
92 size_t count = list.size();
94 sp<IMediaDeathNotifier> notifier = list[iter].promote();
H A DIOMX.cpp75 virtual status_t listNodes(List<ComponentInfo> *list) { argument
76 list->clear();
84 list->push_back(ComponentInfo());
85 ComponentInfo &info = *--list->end();
523 List<ComponentInfo> list; local
524 listNodes(&list);
526 reply->writeInt32(list.size());
527 for (List<ComponentInfo>::iterator it = list.begin();
528 it != list.end(); ++it) {
/frameworks/av/media/libstagefright/
H A DNuCachedSource2.cpp59 void freePages(List<Page *> *list);
74 void PageCache::freePages(List<Page *> *list) { argument
75 List<Page *>::iterator it = list->begin();
76 while (it != list->end()) {
H A DOMXClient.cpp39 virtual status_t listNodes(List<ComponentInfo> *list);
183 status_t MuxOMX::listNodes(List<ComponentInfo> *list) { argument
190 return mLocalOMX->listNodes(list);
H A DOMXCodec.cpp189 const MediaCodecList *list = MediaCodecList::getInstance(); local
190 if (list == NULL) {
197 list->findCodecByType(mime, createEncoder, index);
205 const char *componentName = list->getCodecName(matchIndex);
223 entry->mQuirks = getComponentQuirks(list, matchIndex);
237 const MediaCodecList *list, size_t index) {
239 if (list->codecHasQuirk(
243 if (list->codecHasQuirk(
247 if (list->codecHasQuirk(
257 const MediaCodecList *list local
236 getComponentQuirks( const MediaCodecList *list, size_t index) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_dpb.h80 dpbPicture_t **list; member in struct:__anon839
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp192 status_t OMX::listNodes(List<ComponentInfo> *list) { argument
193 list->clear();
199 list->push_back(ComponentInfo());
200 ComponentInfo &info = *--list->end();
/frameworks/base/core/java/android/app/
H A DActivityThread.java1778 // For checkin, we print one long comma-separated list of values
1981 ArrayList<OnActivityPausedListener> list = mOnPauseListeners.get(activity);
1982 if (list == null) {
1983 list = new ArrayList<OnActivityPausedListener>();
1984 mOnPauseListeners.put(activity, list);
1986 list.add(listener);
1993 ArrayList<OnActivityPausedListener> list = mOnPauseListeners.get(activity);
1994 if (list != null) {
1995 list.remove(listener);
2047 ArrayList<ResultInfo> list
4960 report(int code, Object... list) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DFileBackupHelperBase.java109 boolean isKeyInList(String key, String[] list) { argument
110 for (String s: list) {
/frameworks/base/core/java/android/content/pm/
H A DParceledListSlice.java30 * Transfer a large list of Parcelable objects across an IPC. Splits into
48 public ParceledListSlice(List<T> list) { argument
49 mList = list;
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java287 * @see #list
308 * @see #list
352 public native final String[] list(String path) method in class:AssetManager
/frameworks/base/core/java/android/os/
H A DParcel.java1025 * type of the objects in the list must be one that implements Parcelable.
1030 * @param val The list of objects to be written.
1062 * @param val The list of strings to be written.
1087 * @param val The list of strings to be written.
1693 * dataPosition(). Returns null if the previously written list object was
1725 * dataPosition(). Returns null if the previously written list object was
1741 * dataPosition(). Returns null if the previously written list object was
1758 * previously written list object was null. The list <em>must</em> have
1787 * current dataPosition(). The list <e
1796 readTypedList(List<T> list, Parcelable.Creator<T> c) argument
1876 readStringList(List<String> list) argument
1900 readBinderList(List<IBinder> list) argument
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java50 * Support class for querying the list of available engines
116 * Gets a list of all installed TTS engines.
118 * @return A list of engine info objects. The list can be empty, but never {@code null}.
404 * Parses a comma separated list of engine locale preferences. The list is of the
406 * so forth. Returns null if the list is empty, malformed or if there is no engine
407 * specific preference in the list.
446 * Updates the value for a given key in a comma separated list of key value pairs,
448 * the kay value pair are appended to the end of the list
450 updateValueInCommaSeparatedList(String list, String key, String newValue) argument
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java273 * Returns list of multiple {@link CharSequence} joined into a single
278 public static CharSequence join(Iterable<CharSequence> list) { argument
280 return join(delimiter, list);
1620 * Does a comma-delimited list 'delimitedString' contain a certain item?
1658 * @param spans A list of spans retrieved using {@link Spanned#getSpans(int, int, Class)} from
/frameworks/base/core/java/android/transition/
H A DTransition.java512 * the Transition has no target/targetId list (the default, in which
514 * the given view is in the target list or the view id is in the
515 * targetId list. If the target parameter is null, then the target list
693 * Removes the given targetId from the list of ids that this Transition
710 * Whether to add the given id to the list of target ids to exclude from this
712 * should be added to or removed from the excluded list.
727 * current list of excluded targets.
736 * Whether to add the children of the given id to the list of targets to exclude
738 * the children of the target should be added to or removed from the excluded list
769 excludeId(ArrayList<Integer> list, int targetId, boolean exclude) argument
836 excludeView(ArrayList<View> list, View target, boolean exclude) argument
904 excludeType(ArrayList<Class> list, Class type, boolean exclude) argument
1665 add(ArrayList<T> list, T item) argument
1680 remove(ArrayList<T> list, T item) argument
[all...]
/frameworks/base/core/java/android/util/
H A DEventLog.java181 * @param list A list of values to log
184 public static native int writeEvent(int tag, Object... list); argument
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java517 public SetRemoteViewsAdapterList(int id, ArrayList<RemoteViews> list, int viewTypeCount) { argument
519 this.list = list;
527 list = new ArrayList<RemoteViews>();
531 list.add(rv);
540 if (list == null || list.size() == 0) {
543 int count = list.size();
546 RemoteViews rv = list.get(i);
574 ((RemoteViewsListAdapter) a).setViewsList(list);
594 ArrayList<RemoteViews> list; field in class:RemoteViews.SetRemoteViewsAdapterList
2153 setRemoteAdapter(int viewId, ArrayList<RemoteViews> list, int viewTypeCount) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1080 private static String combineStrings(int[] list, String separator) { argument
1081 int listLength = list.length;
1088 return Integer.toString(list[0]);
1095 String[] stringList = new String[list.length];
1097 stringList[i] = Integer.toString(list[i]);
1107 sb.append(list[i]);
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp88 Sensor const* const list = sensorList[next]; local
90 jstring name = env->NewStringUTF(list->getName().string());
91 jstring vendor = env->NewStringUTF(list->getVendor().string());
94 env->SetIntField(sensor, sensorOffsets.version, list->getVersion());
95 env->SetIntField(sensor, sensorOffsets.handle, list->getHandle());
96 env->SetIntField(sensor, sensorOffsets.type, list->getType());
97 env->SetFloatField(sensor, sensorOffsets.range, list->getMaxValue());
98 env->SetFloatField(sensor, sensorOffsets.resolution, list->getResolution());
99 env->SetFloatField(sensor, sensorOffsets.power, list->getPowerUsage());
100 env->SetIntField(sensor, sensorOffsets.minDelay, list
[all...]
H A Dandroid_os_SELinux.cpp269 * Purpose: Gets a list of the SELinux boolean names.
280 char **list; local
282 if (security_get_boolean_names(&list, &len) == -1) {
289 ScopedLocalRef<jstring> obj(env, env->NewStringUTF(list[i]));
291 free(list[i]);
293 free(list);
H A Dandroid_util_Binder.cpp204 * The GetJavaVM function isn't on the "approved" list of JNI calls
381 JavaDeathRecipient(JNIEnv* env, jobject object, const sp<DeathRecipientList>& list) argument
383 mObjectWeak(NULL), mList(list)
386 // The list holds a strong reference to this object.
387 LOGDEATH("Adding JDR %p to DRL %p", this, list.get());
388 list->add(this);
418 sp<DeathRecipientList> list = mList.promote(); local
419 if (list != NULL) {
420 LOGDEATH("Removing JDR %p from DRL %p", this, list.get());
421 list
1114 DeathRecipientList* list = (DeathRecipientList*) local
1149 DeathRecipientList* list = (DeathRecipientList*) local
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java113 public TestParcelable listParcelableLonger(List<TestParcelable> list, int index) { argument
114 list.add(list.get(index));
115 return list.get(index);
118 public int listParcelableShorter(List<TestParcelable> list, int index) { argument
119 list.remove(index);
120 return list.size();
241 List<TestParcelable> list = Lists.newArrayList();
242 list.add(new TestParcelable(33, "asdf"));
243 list
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java69 ArrayList<ArrayList> list = Lists.newArrayList();
74 list.add(col);
82 return list;
240 private static MatrixCursor createCursor(String[] columns, ArrayList<ArrayList> list) { argument
241 MatrixCursor cursor = new MatrixCursor(columns, list.size());
242 for (ArrayList row : list) {
/frameworks/base/include/androidfw/
H A DAssetDir.h36 * The list of files will be sorted in ascending order by ASCII value.
138 void setFileList(SortedVector<FileInfo>* list) { mFileInfo = list; } argument

Completed in 602 milliseconds

123