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

123

/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp901 List<IOMX::ComponentInfo> list; local
902 omx->listNodes(&list);
904 for (List<IOMX::ComponentInfo>::iterator it = list.begin();
905 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.cpp70 virtual status_t listNodes(List<ComponentInfo> *list) { argument
71 list->clear();
79 list->push_back(ComponentInfo());
80 ComponentInfo &info = *--list->end();
430 List<ComponentInfo> list; local
431 listNodes(&list);
433 reply->writeInt32(list.size());
434 for (List<ComponentInfo>::iterator it = list.begin();
435 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);
162 status_t MuxOMX::listNodes(List<ComponentInfo> *list) { argument
169 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:__anon815
/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.java928 // For checkin, we print one long comma-separated list of values
1969 ArrayList<OnActivityPausedListener> list = mOnPauseListeners.get(activity);
1970 if (list == null) {
1971 list = new ArrayList<OnActivityPausedListener>();
1972 mOnPauseListeners.put(activity, list);
1974 list.add(listener);
1981 ArrayList<OnActivityPausedListener> list = mOnPauseListeners.get(activity);
1982 if (list != null) {
1983 list.remove(listener);
2035 ArrayList<ResultInfo> list
4984 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.java26 * written to a list. This is useful for API that sends huge lists across a
81 * Appends a parcel to this list slice.
83 * @param item Parcelable item to append to this list slice
84 * @return true when the list slice is full and should not be appended to
99 * Populates a list and discards the internal state of the
103 * @param list list to insert items from this slice.
106 * @return the last item inserted into the list or null if none.
108 public T populateList(List<T> list, Creator<T> creator) { argument
114 list
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java286 * @see #list
307 * @see #list
351 public native final String[] list(String path) method in class:AssetManager
/frameworks/base/core/java/android/os/
H A DParcel.java994 * type of the objects in the list must be one that implements Parcelable.
999 * @param val The list of objects to be written.
1031 * @param val The list of strings to be written.
1056 * @param val The list of strings to be written.
1645 * dataPosition(). Returns null if the previously written list object was
1677 * dataPosition(). Returns null if the previously written list object was
1693 * dataPosition(). Returns null if the previously written list object was
1710 * previously written list object was null. The list <em>must</em> have
1739 * current dataPosition(). The list <e
1748 readTypedList(List<T> list, Parcelable.Creator<T> c) argument
1828 readStringList(List<String> list) argument
1852 readBinderList(List<IBinder> list) argument
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java49 * Support class for querying the list of available engines
115 * Gets a list of all installed TTS engines.
117 * @return A list of engine info objects. The list can be empty, but never {@code null}.
386 * Parses a comma separated list of engine locale preferences. The list is of the
388 * so forth. Returns null if the list is empty, malformed or if there is no engine
389 * specific preference in the list.
428 * Updates the value for a given key in a comma separated list of key value pairs,
430 * the kay value pair are appended to the end of the list
432 updateValueInCommaSeparatedList(String list, String key, String newValue) argument
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java268 * Returns list of multiple {@link CharSequence} joined into a single
273 public static CharSequence join(Iterable<CharSequence> list) { argument
275 return join(delimiter, list);
1604 * Does a comma-delimited list 'delimitedString' contain a certain item?
1642 * @param spans A list of spans retrieved using {@link Spanned#getSpans(int, int, Class)} from
/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/webkit/
H A DBrowserFrame.java179 // Create a list of handlers to remove. Go ahead and make it
607 * Add javascript objects to the internal list of objects. The default behavior
1230 * @param list The native side will add and remove items from this list as
1231 * the native list changes.
1234 WebBackForwardList list);
1233 nativeCreateFrame(WebViewCore w, AssetManager am, WebBackForwardList list) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1081 private static String combineStrings(int[] list, String separator) { argument
1082 int listLength = list.length;
1089 return Integer.toString(list[0]);
1096 String[] stringList = new String[list.length];
1098 stringList[i] = Integer.toString(list[i]);
1108 sb.append(list[i]);
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp66 Sensor const* const list = sensorList[next]; local
68 jstring name = env->NewStringUTF(list->getName().string());
69 jstring vendor = env->NewStringUTF(list->getVendor().string());
72 env->SetIntField(sensor, sensorOffsets.version, list->getVersion());
73 env->SetIntField(sensor, sensorOffsets.handle, list->getHandle());
74 env->SetIntField(sensor, sensorOffsets.type, list->getType());
75 env->SetFloatField(sensor, sensorOffsets.range, list->getMaxValue());
76 env->SetFloatField(sensor, sensorOffsets.resolution, list->getResolution());
77 env->SetFloatField(sensor, sensorOffsets.power, list->getPowerUsage());
78 env->SetIntField(sensor, sensorOffsets.minDelay, list
[all...]
H A Dandroid_os_SELinux.cpp331 * Purpose: Gets a list of the SELinux boolean names.
342 char **list; local
347 if (security_get_boolean_names(&list, &len) == -1)
354 obj = env->NewStringUTF(list[i]);
357 free(list[i]);
359 free(list);
H A Dandroid_util_Binder.cpp212 * The GetJavaVM function isn't on the "approved" list of JNI calls
389 JavaDeathRecipient(JNIEnv* env, jobject object, const sp<DeathRecipientList>& list) argument
391 mObjectWeak(NULL), mList(list)
394 // The list holds a strong reference to this object.
395 LOGDEATH("Adding JDR %p to DRL %p", this, list.get());
396 list->add(this);
426 sp<DeathRecipientList> list = mList.promote(); local
427 if (list != NULL) {
428 LOGDEATH("Removing JDR %p from DRL %p", this, list.get());
429 list
1117 DeathRecipientList* list = (DeathRecipientList*) local
1152 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
/frameworks/base/libs/androidfw/
H A DKeyboard.cpp171 static int lookupValueByLabel(const char* literal, const KeycodeLabel *list) { argument
172 while (list->literal) {
173 if (strcmp(literal, list->literal) == 0) {
174 return list->value;
176 list++;
178 return list->value;
181 static const char* lookupLabelByValue(int value, const KeycodeLabel *list) { argument
182 while (list->literal) {
183 if (list->value == value) {
184 return list
[all...]

Completed in 265 milliseconds

123