Searched refs:index (Results 376 - 400 of 1076) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/codecs/on2/enc/
H A DSoftVPXEncoder.h74 OMX_INDEXTYPE index, OMX_PTR param);
79 OMX_INDEXTYPE index, const OMX_PTR param);
82 OMX_INDEXTYPE index, const OMX_PTR params);
217 // Temporal pattern current index
/frameworks/av/media/libstagefright/omx/
H A DSoftOMXPlugin.cpp160 OMX_U32 index) {
161 if (index >= kNumComponents) {
165 strcpy(name, kComponents[index].mName);
157 enumerateComponents( OMX_STRING name, size_t , OMX_U32 index) argument
H A DSoftVideoDecoderOMXComponent.cpp247 OMX_INDEXTYPE index, OMX_PTR params) {
248 switch (index) {
283 ALOGE("Invalid port index: %" PRIu32, profileLevel->nPortIndex);
297 return SimpleSoftOMXComponent::internalGetParameter(index, params);
302 OMX_INDEXTYPE index, const OMX_PTR params) {
303 // Include extension index OMX_INDEXEXTTYPE.
304 const int32_t indexFull = index;
386 return SimpleSoftOMXComponent::internalSetParameter(index, params);
390 return SimpleSoftOMXComponent::internalSetParameter(index, params);
395 OMX_INDEXTYPE index, OMX_PT
246 internalGetParameter( OMX_INDEXTYPE index, OMX_PTR params) argument
301 internalSetParameter( OMX_INDEXTYPE index, const OMX_PTR params) argument
394 getConfig( OMX_INDEXTYPE index, OMX_PTR params) argument
418 getExtensionIndex( const char *name, OMX_INDEXTYPE *index) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java112 int index = encoded.length;
121 encoded[--index] = SEPARATOR;
130 encoded[--index] = alphabet[group];
/frameworks/base/core/java/android/util/
H A DMapCollections.java190 int index = colIndexOfKey(e.getKey());
191 if (index < 0) {
194 Object foundVal = colGetEntry(index, 1);
306 int index = colIndexOfKey(object);
307 if (index >= 0) {
308 colRemoveAt(index);
400 int index = colIndexOfValue(object);
401 if (index >= 0) {
402 colRemoveAt(index);
551 protected abstract Object colGetEntry(int index, in argument
556 colSetValue(int index, V value) argument
557 colRemoveAt(int index) argument
[all...]
/frameworks/base/libs/hwui/utils/
H A DSortedListImpl.cpp79 ssize_t index = _indexOrderOf(item, &order); local
80 index = VectorImpl::insertAt(item, order, 1);
81 return index;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java37 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
41 public void updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, argument
46 public void removeIcon(String slot, int index, int viewIndex) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DStatusBar.java68 protected void loadIcon(int index, String iconName, Density density) { argument
70 super.loadIcon(index, iconName, density);
73 View child = getChildAt(index);
/frameworks/native/libs/input/
H A DVelocityTracker.cpp249 uint32_t index = idBits.getIndexOfBit(id); local
255 id, positions[index].x, positions[index].y,
319 uint32_t index = pointerIndex[i]; local
320 positions[index].x = event->getHistoricalX(i, h);
321 positions[index].y = event->getHistoricalY(i, h);
328 uint32_t index = pointerIndex[i]; local
329 positions[index].x = event->getX(i);
330 positions[index].y = event->getY(i);
567 uint32_t index
712 uint32_t index = 0; local
883 uint32_t index = oldestIndex; local
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java54 To be safe, we will always advance to some index-4, so we'll need 4 more for the +8
203 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) { argument
205 return index < byteSize;
207 // For large values of index, this will cause the internal buffer to resize.
208 return jpeg.has(index);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java49 To be safe, we will always advance to some index-4, so we'll need 4 more for the +8
198 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) { argument
200 return index < byteSize;
202 // For large values of index, this will cause the internal buffer to resize.
203 return jpeg.has(index);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneData.java286 int index = OFFSET_ARRAY_OFFSET + offsetHr;
287 if (index >= mHasTimeZonesInHrOffset.length || index < 0) {
290 return mHasTimeZonesInHrOffset[index];
295 int index = OFFSET_ARRAY_OFFSET + (int) (offsetMillis / DateUtils.HOUR_IN_MILLIS);
296 mHasTimeZonesInHrOffset[index] = true;
298 ArrayList<Integer> group = mTimeZonesByOffsets.get(index);
301 mTimeZonesByOffsets.put(index, group);
307 int index = OFFSET_ARRAY_OFFSET + offsetHr;
308 if (index >
[all...]
/frameworks/rs/cpp/
H A DElement.cpp26 android::RSC::sp<const Element> Element::getSubElement(uint32_t index) { argument
31 if (index >= mVisibleElementMap.size()) {
32 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Illegal sub-element index");
35 return mElements[mVisibleElementMap[index]];
38 const char * Element::getSubElementName(uint32_t index) { argument
43 if (index >= mVisibleElementMap.size()) {
44 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Illegal sub-element index");
47 return mElementNames[mVisibleElementMap[index]].c_str();
50 size_t Element::getSubElementArraySize(uint32_t index) { argument
55 if (index >
62 getSubElementOffsetBytes(uint32_t index) argument
[all...]
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionHeader.h37 size_t index; member in class:ELFSectionHeader_CRTP
52 return index;
88 read(Archiver &AR, ELFObjectTy const *owner, size_t index = 0);
/frameworks/support/v4/java/android/support/v4/util/
H A DMapCollections.java188 int index = colIndexOfKey(e.getKey());
189 if (index < 0) {
192 Object foundVal = colGetEntry(index, 1);
304 int index = colIndexOfKey(object);
305 if (index >= 0) {
306 colRemoveAt(index);
398 int index = colIndexOfValue(object);
399 if (index >= 0) {
400 colRemoveAt(index);
550 protected abstract Object colGetEntry(int index, in argument
555 colSetValue(int index, V value) argument
556 colRemoveAt(int index) argument
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp99 bool AudioSfDecoder::getPcmFormatKeySize(uint32_t index, uint32_t* pKeySize) { argument
100 if (index >= NB_PCMMETADATA_KEYS) {
103 *pKeySize = strlen(kPcmDecodeMetadataKeys[index]) +1;
110 bool AudioSfDecoder::getPcmFormatKeyName(uint32_t index, uint32_t keySize, char* keyName) { argument
112 if (!getPcmFormatKeySize(index, &actualKeySize)) {
118 strncpy(keyName, kPcmDecodeMetadataKeys[index], actualKeySize);
124 bool AudioSfDecoder::getPcmFormatValueSize(uint32_t index, uint32_t* pValueSize) { argument
125 if (index >= NB_PCMMETADATA_KEYS) {
136 bool AudioSfDecoder::getPcmFormatKeyValue(uint32_t index, uint32_t size, uint32_t* pValue) { argument
138 if (!getPcmFormatValueSize(index,
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialPickerLayout.java238 private void setItem(int index, int value) { argument
239 if (index == HOUR_INDEX) {
244 } else if (index == MINUTE_INDEX) {
296 private void setValueForItem(int index, int value) { argument
297 if (index == HOUR_INDEX) {
299 } else if (index == MINUTE_INDEX){
301 } else if (index == AMPM_INDEX) {
522 public void setCurrentItemShowing(int index, boolean animate) { argument
523 if (index != HOUR_INDEX && index !
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES30.java821 // C function void glGetIntegeri_v ( GLenum target, GLuint index, GLint *data )
825 int index,
830 // C function void glGetIntegeri_v ( GLenum target, GLuint index, GLint *data )
834 int index,
849 // C function void glBindBufferRange ( GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size )
853 int index,
859 // C function void glBindBufferBase ( GLenum target, GLuint index, GLuint buffer )
863 int index,
875 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
879 int index,
823 glGetIntegeri_v( int target, int index, int[] data, int offset ) argument
832 glGetIntegeri_v( int target, int index, java.nio.IntBuffer data ) argument
851 glBindBufferRange( int target, int index, int buffer, int offset, int size ) argument
861 glBindBufferBase( int target, int index, int buffer ) argument
877 glGetTransformFeedbackVarying( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
893 glGetTransformFeedbackVarying( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
905 glGetTransformFeedbackVarying( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
916 glGetTransformFeedbackVarying( int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type ) argument
925 glVertexAttribIPointerBounds( int index, int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
934 glVertexAttribIPointer( int index, int size, int type, int stride, java.nio.Buffer pointer ) argument
953 glVertexAttribIPointer( int index, int size, int type, int stride, int offset ) argument
963 glGetVertexAttribIiv( int index, int pname, int[] params, int offset ) argument
972 glGetVertexAttribIiv( int index, int pname, java.nio.IntBuffer params ) argument
980 glGetVertexAttribIuiv( int index, int pname, int[] params, int offset ) argument
989 glGetVertexAttribIuiv( int index, int pname, java.nio.IntBuffer params ) argument
997 glVertexAttribI4i( int index, int x, int y, int z, int w ) argument
1007 glVertexAttribI4ui( int index, int x, int y, int z, int w ) argument
1017 glVertexAttribI4iv( int index, int[] v, int offset ) argument
1025 glVertexAttribI4iv( int index, java.nio.IntBuffer v ) argument
1032 glVertexAttribI4uiv( int index, int[] v, int offset ) argument
1040 glVertexAttribI4uiv( int index, java.nio.IntBuffer v ) argument
1452 glGetInteger64i_v( int target, int index, long[] data, int offset ) argument
1461 glGetInteger64i_v( int target, int index, java.nio.LongBuffer data ) argument
1613 glVertexAttribDivisor( int index, int divisor ) argument
[all...]
/frameworks/av/include/media/
H A DIMediaCodecList.h34 virtual sp<MediaCodecInfo> getCodecInfo(size_t index) const = 0;
/frameworks/av/include/media/stagefright/foundation/
H A DParsedMessage.h35 bool getRequestField(size_t index, AString *field) const;
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp172 status_t AudioParameter::getAt(size_t index, String8& key, String8& value) argument
174 if (mParameters.size() > index) {
175 key = mParameters.keyAt(index);
176 value = mParameters.valueAt(index);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.h126 sp<AMessage> getTrackInfo(size_t index) const;
127 status_t selectTrack(size_t index, bool select);
141 bool isTrackValid(size_t index) const;
144 sp<ABuffer> filterCCBuf(const sp<ABuffer> &ccBuf, size_t index);
H A DNuPlayerStreamListener.h34 virtual void queueBuffer(size_t index, size_t size);
/frameworks/av/media/libstagefright/
H A DWVMExtractor.cpp98 sp<MediaSource> WVMExtractor::getTrack(size_t index) { argument
102 return mImpl->getTrack(index);
105 sp<MetaData> WVMExtractor::getTrackMetaData(size_t index, uint32_t flags) { argument
109 return mImpl->getTrackMetaData(index, flags);
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dqua_gain.cpp142 Word16 -- index of quantization.
193 Qua_gain( /* o : index of quantization. */
214 Word16 index = 0; local
327 * error for the quantized gains from the table. The index for the *
364 /* store table index if MSE for this index is lower
369 index = i;
380 p = &table_gain[shl(index, 2, pOverflow)];
399 return index;

Completed in 527 milliseconds

<<11121314151617181920>>