Searched defs:type (Results 1 - 25 of 634) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglCreateShaderProgramv.java1 // C function GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings )
4 int type,
3 glCreateShaderProgramv( int type, String[] strings ) argument
H A DglDrawElementsIndirect.java1 // C function glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect );
3 public static native void glDrawElementsIndirect(int mode, int type, long indirect); argument
H A DglCreateShaderProgramv.cpp1 /* GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings ) */
4 (JNIEnv *_env, jobject _this, jint type, jobjectArray strings) {
3 android_glCreateShaderProgramv(JNIEnv *_env, jobject _this, jint type, jobjectArray strings) argument
H A DglDebugMessageInsertKHR.java1 // C function void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf )
5 int type,
3 glDebugMessageInsertKHR( int source, int type, int id, int severity, String buf ) argument
H A DglDrawElementsIndirect.cpp1 /* void glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect ) */
2 static void android_glDrawElementsIndirect(JNIEnv *_env, jobject, jint mode, jint type, jlong indirect) { argument
10 glDrawElementsIndirect(mode, type, (const void*)indirect);
H A DglDrawElementsInstanced.java1 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
6 int type,
11 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
16 int type,
3 glDrawElementsInstanced( int mode, int count, int type, java.nio.Buffer indices, int instanceCount ) argument
13 glDrawElementsInstanced( int mode, int count, int type, int indicesOffset, int instanceCount ) argument
H A DglDebugMessageCallbackKHR.java4 void onMessage(int source, int type, int id, int severity, String message); argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dcal_dc_scaler.cpp23 [input_variable_name] = [description of the input to module, its type
27 [local_store_name] = [description of the local store, its type
29 [local_buffer_name] = [description of the local buffer, its type
31 [local_ptr_name] = [description of the local pointer, its type
35 [global_store_name] = [description of the global store, its type
37 [global_buffer_name] = [description of the global buffer, its type
39 [global_ptr_name] = [description of the global pointer, its type
44 by module, its type definition, and length
49 variable_bfr_ptr points to, its type definition, and length
55 [local_store_name] = [describe new contents, its type
150 cal_dc_scaler( int QP, int type) argument
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h30 int type; member in struct:__anon991
/frameworks/rs/cpu_ref/linkloader/lib/
H A DELFSymbol.cpp21 ELFSymbolHelperMixin::getTypeStr(uint8_t type) { argument
22 switch (type) {
45 ELFSymbolHelperMixin::getBindingAttributeStr(uint8_t type) { argument
46 switch (type) {
64 ELFSymbolHelperMixin::getVisibilityStr(uint8_t type) { argument
65 switch (type) {
H A DELFSectionHeader.cpp38 char const *ELFSectionHeaderHelperMixin::getSectionTypeStr(uint32_t type) { argument
39 switch (type) {
45 // General section header type
52 // ARM-specific section header type
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPort.java29 Class type(); method in interface:GenerateProgramPort
/frameworks/base/tools/aapt/tests/
H A DAaptGroupEntry_test.cpp41 String8 type; local
42 EXPECT_TRUE(TestParse(entry, "menu", &type));
43 EXPECT_EQ(String8("menu"), type);
48 String8 type; local
49 EXPECT_TRUE(TestParse(entry, "anim", &type));
50 EXPECT_EQ(String8("anim"), type);
52 EXPECT_TRUE(TestParse(entry, "animator", &type));
53 EXPECT_EQ(String8("animator"), type);
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCacheListener.java26 * @param type the type of registered service
29 void onServiceChanged(V type, int userId, boolean removed); argument
/frameworks/base/core/java/com/android/server/
H A DLocalServices.java39 * @param type The type of service.
43 public static <T> T getService(Class<T> type) { argument
45 return (T) sLocalServiceObjects.get(type);
52 public static <T> void addService(Class<T> type, T service) { argument
54 if (sLocalServiceObjects.containsKey(type)) {
57 sLocalServiceObjects.put(type, service);
/frameworks/base/libs/androidfw/
H A DTypeWrappers.cpp30 const ResTable_type* type = mTypeVariant->data; local
31 const uint32_t entryCount = dtohl(type->entryCount);
36 const uintptr_t containerEnd = reinterpret_cast<uintptr_t>(type)
37 + dtohl(type->header.size);
39 reinterpret_cast<uintptr_t>(type) + dtohs(type->header.headerSize));
56 reinterpret_cast<uintptr_t>(type) + dtohl(type->entriesStart) + entryOffset);
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DPlaybackError.java21 public int type; field in class:PlaybackError
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioCodec.cpp41 AudioCodecType *type = gAudioCodecTypes; local
42 while (type->name != NULL) {
43 if (strcasecmp(codecName, type->name) == 0) {
44 AudioCodec *codec = type->create();
45 codec->name = type->name;
48 ++type;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsSubaddress.java20 public int type; field in class:CdmaSmsSubaddress
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/frameworks/support/v4/api22/android/support/v4/media/session/
H A DMediaSessionCompatApi22.java22 public static void setRatingType(Object sessionObj, int type) { argument
23 ((MediaSession) sessionObj).setRatingType(type);
/frameworks/support/v4/froyo/android/support/v4/content/
H A DContextCompatFroyo.java28 public static File getExternalFilesDir(Context context, String type) { argument
29 return context.getExternalFilesDir(type);
/frameworks/support/v4/kitkat/android/support/v4/content/
H A DContextCompatKitKat.java28 public static File[] getExternalFilesDirs(Context context, String type) { argument
29 return context.getExternalFilesDirs(type);
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp49 int type = data.readInt32(); local
52 status_t status = notify(DrmInfoEvent(uniqueId, type, message));
/frameworks/av/media/img_utils/src/
H A DTiffEntry.cpp31 * Specialize for each valid type, including sub-IFDs.
37 const sp<TiffIfd>* TiffEntry::forceValidType<sp<TiffIfd> >(TagType type, const sp<TiffIfd>* value) { argument
38 if (type == LONG) {
41 ALOGE("%s: Value of type 'ifd' is not valid for tag with TIFF type %d.",
42 __FUNCTION__, type);
47 const uint8_t* TiffEntry::forceValidType<uint8_t>(TagType type, const uint8_t* value) { argument
48 if (type == BYTE || type == ASCII || type
57 forceValidType(TagType type, const int8_t* value) argument
67 forceValidType(TagType type, const uint16_t* value) argument
77 forceValidType(TagType type, const int16_t* value) argument
87 forceValidType(TagType type, const uint32_t* value) argument
97 forceValidType(TagType type, const int32_t* value) argument
107 forceValidType(TagType type, const double* value) argument
117 forceValidType(TagType type, const float* value) argument
136 TagType type = getType(); local
[all...]

Completed in 3333 milliseconds

1234567891011>>