Searched defs:index (Results 51 - 75 of 908) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetActiveUniform.java1 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
5 int index,
17 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
22 int index,
29 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
33 int index,
40 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
44 int index,
3 glGetActiveUniform( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
20 glGetActiveUniform( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
31 glGetActiveUniform( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
42 glGetActiveUniform( int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type ) argument
H A DglGetTransformFeedbackVarying.java1 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
5 int index,
17 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
24 int index,
32 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
36 int index,
44 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
48 int index,
55 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
59 int index,
3 glGetTransformFeedbackVarying( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
22 glGetTransformFeedbackVarying( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
34 glGetTransformFeedbackVarying( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, java.nio.ByteBuffer name ) argument
46 glGetTransformFeedbackVarying( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
57 glGetTransformFeedbackVarying( int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type ) argument
[all...]
/frameworks/native/services/sensorservice/
H A DBatteryService.cpp39 ssize_t index = mActivations.indexOf(key); local
40 if (index < 0) {
41 index = mActivations.add(key);
43 Info& info(mActivations.editItemAt(index));
50 ssize_t index = mActivations.indexOf(Info(uid, handle)); local
51 if (index < 0) return false;
52 Info& info(mActivations.editItemAt(index));
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DLineVerifier.java28 private int index; field in class:LineVerifier
43 if (index >= mLineVerifierElemList.size()) {
44 TestCase.fail("Insufficient number of LineVerifier (" + index + ")");
47 final LineVerifierElem lineVerifier = mLineVerifierElemList.get(index);
50 index++;
/frameworks/rs/driver/runtime/
H A Drs_mesh.c29 rsgMeshGetVertexAllocation(rs_mesh m, uint32_t index) { argument
31 if (mesh == NULL || index >= mesh->mHal.state.vertexBuffersCount) {
35 rs_allocation returnAlloc = {mesh->mHal.state.vertexBuffers[index]};
42 rsgMeshGetIndexAllocation(rs_mesh m, uint32_t index) { argument
44 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
48 rs_allocation returnAlloc = {mesh->mHal.state.indexBuffers[index]};
55 rsgMeshGetPrimitive(rs_mesh m, uint32_t index) { argument
57 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
60 return mesh->mHal.state.primitives[index];
/frameworks/support/emoji/core/tests/java/android/support/text/emoji/
H A DTestEmojiMetadata.java41 public int getCodepointAt(int index) { argument
42 return mCodePoints[index];
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPlaybackSeekDataProviderSample.java43 protected Bitmap doInBackground(Object task, int index, long position) { argument
56 canvas.drawText(Integer.toString(index), 10, 150, mPaint);
H A DPlaybackSeekDiskDataProvider.java50 protected Bitmap doInBackground(Object task, int index, long position) { argument
59 String path = String.format(mPathPattern, (index + 1));
67 canvas.drawText(Integer.toString(index), 10, 150, mPaint);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/
H A Dbuild-local.py37 index = current_path.find("frameworks/support/samples/SupportLeanbackShowcase") variable
38 if index < 0:
42 repo_path = current_path[:index]
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPlaybackSeekDataProviderSample.java43 protected Bitmap doInBackground(Object task, int index, long position) { argument
56 canvas.drawText(Integer.toString(index), 10, 150, mPaint);
H A DPlaybackSeekDiskDataProvider.java50 protected Bitmap doInBackground(Object task, int index, long position) { argument
59 String path = String.format(mPathPattern, (index + 1));
67 canvas.drawText(Integer.toString(index), 10, 150, mPaint);
/frameworks/support/samples/SupportLeanbackShowcase/
H A Dbuild-local.py37 index = current_path.find("frameworks/support/samples/SupportLeanbackShowcase") variable
38 if index < 0:
42 repo_path = current_path[:index]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackSeekDataProvider.java37 * @param index Index of {@link #getSeekPositions()}.
39 public void onThumbnailLoaded(Bitmap bitmap, int index) { argument
60 * getThumbnail() will be called with increasing index; when seeking left, getThumbnail() will
61 * be called with decreasing index. The increment of index can be used by subclass to determine
64 * @param index Index of position in {@link #getSeekPositions()}.
68 public void getThumbnail(int index, ResultCallback callback) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/content/res/
H A DGrowingArrayUtils.java99 * Inserts an element into the array at the specified index, growing the array if there is no
109 public static <T> T[] insert(T[] array, int currentSize, int index, T element) { argument
113 System.arraycopy(array, index, array, index + 1, currentSize - index);
114 array[index] = element;
120 System.arraycopy(array, 0, newArray, 0, index);
121 newArray[index] = element;
122 System.arraycopy(array, index, newArray, index
129 insert(int[] array, int currentSize, int index, int element) argument
148 insert(long[] array, int currentSize, int index, long element) argument
167 insert(boolean[] array, int currentSize, int index, boolean element) argument
[all...]
/frameworks/wilhelm/src/itf/
H A DILEDArray.cpp55 static SLresult ILEDArray_SetColor(SLLEDArrayItf self, SLuint8 index, const SLHSL *pColor) argument
61 if (!(index < MAX_LED_COUNT) || NULL == pColor)
73 thiz->mColors[index] = color;
82 static SLresult ILEDArray_GetColor(SLLEDArrayItf self, SLuint8 index, SLHSL *pColor) argument
86 if (!(index < MAX_LED_COUNT) || NULL == pColor) {
92 SLHSL color = thiz->mColors[index];
115 SLuint8 index; local
116 for (index = 0; index < MAX_LED_COUNT; ++index,
[all...]
/frameworks/wilhelm/src/
H A Dsl_entry.cpp52 SL_API SLresult SLAPIENTRY slQuerySupportedEngineInterfaces(SLuint32 index, argument
57 result = liQuerySupportedInterfaces(index, pInterfaceId, objectIDtoClass(SL_OBJECTID_ENGINE));
H A Dxa_entry.cpp51 XA_API XAresult XAAPIENTRY xaQuerySupportedEngineInterfaces(XAuint32 index, argument
56 result = liQuerySupportedInterfaces(index, (SLInterfaceID *) pInterfaceId,
/frameworks/wilhelm/tests/sandbox/
H A Dengine.c41 SLuint32 index; local
42 for (index = 0; index < numSupportedInterfaces + 1; ++index) {
45 result = slQuerySupportedEngineInterfaces(index, &interfaceID);
46 if (index < numSupportedInterfaces) {
48 printf("interface[%u] ", index);
50 engine_ids[index] = interfaceID;
51 engine_req[index] = SL_BOOLEAN_TRUE;
55 result = slQuerySupportedEngineInterfaces(index, NUL
[all...]
/frameworks/av/drm/mediacas/plugins/clearkey/
H A DClearKeySessionLibrary.cpp76 ssize_t index = mIDToSessionMap.indexOfKey(sessionId); local
77 if (index < 0) {
86 ssize_t index = mIDToSessionMap.indexOfKey(sessionId); local
87 if (index < 0) {
91 sp<ClearKeyCasSession> session = mIDToSessionMap.valueAt(index);
92 mIDToSessionMap.removeItemsAt(index);
98 for (ssize_t index = mIDToSessionMap.size() - 1; index >= 0; index--) {
99 sp<ClearKeyCasSession> session = mIDToSessionMap.valueAt(index);
[all...]
/frameworks/av/media/libaaudio/src/binding/
H A DAudioEndpointParcelable.cpp50 * @return index in table or negative error
56 int32_t index = mNumSharedMemories++; local
57 mSharedMemories[index].setup(fd, sizeInBytes);
58 return index;
/frameworks/av/media/libaudiohal/
H A DEffectsFactoryHalLocal.cpp39 uint32_t index, effect_descriptor_t *pDescriptor) {
40 return EffectQueryEffect(index, pDescriptor);
38 getDescriptor( uint32_t index, effect_descriptor_t *pDescriptor) argument
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.h71 int index; // The index that is currently active - HOST or OFFLOAD member in struct:android::EffectContext
/frameworks/av/media/libeffects/testlibs/
H A DAudioCoefInterpolator.cpp44 size_t index = 0; local
51 index += mInDimOffsets[dim] * (mInDims[dim] - 1);
53 index += mInDimOffsets[dim] * intCoord[dim];
56 getCoefRecurse(index, fracCoord, out, 0);
59 void AudioCoefInterpolator::getCoefRecurse(size_t index, argument
63 memcpy(out, mTable + index, mNumOutDims * sizeof(audio_coef_t));
65 getCoefRecurse(index, fracCoord, out, dim + 1);
68 getCoefRecurse(index + mInDimOffsets[dim], fracCoord, tempCoef,
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp55 void NuPlayer::NuPlayerStreamListener::queueBuffer(size_t index, size_t size) { argument
58 entry.mIndex = index;
/frameworks/av/media/libnbaio/
H A DSourceAudioBufferProvider.cpp35 ssize_t index = source->negotiate(NULL, 0, counterOffers, numCounterOffers); local
36 ALOG_ASSERT(index == (ssize_t) NEGOTIATE && numCounterOffers > 0);
38 index = source->negotiate(counterOffers, 1, NULL, numCounterOffers);
39 ALOG_ASSERT(index == 0);

Completed in 6145 milliseconds

1234567891011>>