Searched refs:index (Results 626 - 650 of 901) sorted by relevance

<<21222324252627282930>>

/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.h118 const sp<ARTSPResponse> &response, ssize_t *index) const;
H A DARTPSource.cpp42 const sp<ASessionDescription> &sessionDesc, size_t index,
56 sessionDesc->getFormatType(index, &PT, &desc, &params);
40 ARTPSource( uint32_t id, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify) argument
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp672 ssize_t index = mSessions.indexOfKey(sessionID); local
674 if (index < 0) {
678 mSessions.removeItemsAt(index);
893 ssize_t index = mSessions.indexOfKey(sessionID); local
895 if (index < 0) {
899 const sp<Session> session = mSessions.valueAt(index);
931 ssize_t index = mSessions.indexOfKey(sessionID); local
933 if (index < 0) {
937 const sp<Session> session = mSessions.valueAt(index);
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java217 int index;
221 index = rawInfoArray[i + 1];
222 retArray[j] = index >= 0 ? mStringBlocks[block].get(index) : null;
/frameworks/base/core/java/android/widget/
H A DTableLayout.java161 // column index was defined in the XML file
285 * @param columnIndex the index of the column
308 * @param columnIndex the index of the column
321 * @param columnIndex the index of the column
335 * @param columnIndex the index of the column
348 * @param columnIndex the index of the column
362 * @param columnIndex the index of the column
410 public void addView(View child, int index) { argument
411 super.addView(child, index);
428 public void addView(View child, int index, ViewGrou argument
[all...]
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java527 int index = cursor.getColumnIndex(DownloadManager.COLUMN_ID);
528 long downloadId = cursor.getLong(index);
546 int index = cursor.getColumnIndex(columnName);
547 int actual = cursor.getInt(index);
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp331 ssize_t index = mKeysByUsageCode.indexOfKey(usageCode); local
332 if (index >= 0) {
337 *outKeyCode = mKeysByUsageCode.valueAt(index);
342 ssize_t index = mKeysByScanCode.indexOfKey(scanCode); local
343 if (index >= 0) {
348 *outKeyCode = mKeysByScanCode.valueAt(index);
361 ssize_t index = mKeys.indexOfKey(keyCode); local
362 if (index >= 0) {
363 *outKey = mKeys.valueAt(index);
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java185 int index = addAlarmLocked(alarm);
186 if (index == 0) {
394 int index = Collections.binarySearch(alarmList, alarm, mIncreasingTimeOrder);
395 if (index < 0) {
396 index = 0 - index - 1;
398 if (localLOGV) Slog.v(TAG, "Adding alarm " + alarm + " at " + index);
399 alarmList.add(index, alarm);
415 return index;
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DEventSenderImpl.java238 int index = bundle.getInt("id");
239 if (index >= getTouchPoints().size()) {
241 + index);
245 getTouchPoints().get(index).move(
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h93 size_t index() const function in class:mcld::LDSection
170 // the index of the file
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DTaskSwitcherActivity.java288 for (int i = 1, index = 0; i < numTasks && (index < MAX_TASKS + 2); ++i) {
317 Log.v(TAG, "Added item[" + index + "], id=" + item.id);
318 ++index;
/frameworks/native/libs/utils/
H A DUnicode.cpp159 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index) argument
161 if (index >= src_len) {
169 int32_t ret = utf32_at_internal(src + index, &num_read);
171 *next_index = index + num_read;
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java780 * @param index Index of text item to retrieve
785 public Uri getStream(int index) { argument
790 return mStreams.get(index);
792 if (index == 0) {
796 " index requested: " + index);
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL_Android.h96 XAuint32 index; member in struct:XAAndroidBufferQueueState_
/frameworks/wilhelm/src/android/
H A DBufferQueueSource.cpp117 mAndroidBufferQueueSource->mState.index++;
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp79 v0->index & vertex_cache_t::INDEX_MASK);
85 v1->index & vertex_cache_t::INDEX_MASK);
91 v2->index & vertex_cache_t::INDEX_MASK);
102 v2->index & vertex_cache_t::INDEX_MASK);
138 v->index & vertex_cache_t::INDEX_MASK);
217 int index = enables & GGL_ENABLE_SMOOTH ? 0x1 : 0; local
218 index |= c->lighting.enable ? 0x2 : 0;
219 index |= enables & GGL_ENABLE_FOG ? 0x4 : 0;
220 c->lighting.lightTriangle = lightPrimitive[index];
411 v->index
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java783 int index = providers.indexOf(value);
784 int end = index + value.length();
786 if (index > 0 && providers.charAt(index - 1) != ',') index = -1;
787 if (end < providers.length() && providers.charAt(end) != ',') index = -1;
789 if (prefix == '+' && index < 0) {
796 } else if (prefix == '-' && index >= 0) {
799 if (index > 0) {
800 index
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.cpp133 int32_t index = getMotionEventActionPointerIndex(action); local
134 return index >= 0 && size_t(index) < pointerCount;
2174 ssize_t index = getConnectionIndexLocked(channel); local
2175 if (index >= 0) {
2177 mConnectionsByFd.valueAt(index), options);
3956 ssize_t index = findKeyMemento(entry); local
3957 if (index >= 0) {
3958 mKeyMementos.removeAt(index);
3981 ssize_t index local
4000 ssize_t index = findMotionMemento(entry, false /*hovering*/); local
4014 ssize_t index = findMotionMemento(entry, false /*hovering*/); local
4025 ssize_t index = findMotionMemento(entry, false /*hovering*/); local
4046 ssize_t index = findMotionMemento(entry, true /*hovering*/); local
4060 ssize_t index = findMotionMemento(entry, true /*hovering*/); local
4191 ssize_t index = mFallbackKeys.indexOfKey(originalKeyCode); local
4197 ssize_t index = mFallbackKeys.indexOfKey(originalKeyCode); local
[all...]
/frameworks/av/include/media/
H A DAudioSystem.h215 int index,
218 int *index,
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp194 size_t index = 0; local
197 list->findCodecByType(mime, createEncoder, index);
203 index = matchIndex + 1;
220 ssize_t index = matchingCodecs->add(); local
221 CodecNameAndQuirks *entry = &matchingCodecs->editItemAt(index);
237 const MediaCodecList *list, size_t index) {
240 index, "requires-allocate-on-input-ports")) {
244 index, "requires-allocate-on-output-ports")) {
248 index, "output-buffers-are-unreadable")) {
263 ssize_t index local
236 getComponentQuirks( const MediaCodecList *list, size_t index) argument
569 OMX_INDEXTYPE index; local
648 OMX_U32 index = 0; local
746 OMX_U32 index = 0; local
3887 size_t index = *mFilledBuffers.begin(); local
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dc2t64fx.c53 Word16 * index /* (o) : index (12): 5+1+5+1 = 11 bits. */
258 * Build the codeword, the filtered codeword and index of codevector.*
288 *index = add1((i0 << 6), i1);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_inter_prediction.c80 interNeighbour_t *n, u32 index);
852 GetInterNeighbour(pMb->sliceId, nMb, a, n->index);
856 GetInterNeighbour(pMb->sliceId, nMb, a+1, n->index);
860 GetInterNeighbour(pMb->sliceId, nMb, a+2, n->index);
866 GetInterNeighbour(pMb->sliceId, nMb, a+2, n->index);
958 Get availability, reference index and motion vector of a neighbour
963 interNeighbour_t *n, u32 index)
980 tmpMv = nMb->mv[index];
981 tmp = nMb->refPic[index>>2];
962 GetInterNeighbour(u32 sliceId, mbStorage_t *nMb, interNeighbour_t *n, u32 index) argument
/frameworks/base/core/java/android/os/
H A DWorkSource.java72 public int get(int index) { argument
73 return mUids[index];
/frameworks/base/core/java/android/preference/
H A DMultiSelectListPreference.java66 * Each entry must have a corresponding index in
142 * Returns the index of the given value (in the entry values array).
144 * @param value The value whose index should be returned.
145 * @return The index of the value, or -1 if not found.
210 protected Object onGetDefaultValue(TypedArray a, int index) { argument
211 final CharSequence[] defaultValues = a.getTextArray(index);
H A DSeekBarPreference.java80 protected Object onGetDefaultValue(TypedArray a, int index) { argument
81 return a.getInt(index, 0);

Completed in 547 milliseconds

<<21222324252627282930>>