Searched defs:type (Results 1 - 25 of 724) 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/tools/aapt2/
H A DResource_test.cpp24 const ResourceType* type = parseResourceType(u"anim"); local
25 ASSERT_NE(type, nullptr);
26 EXPECT_EQ(*type, ResourceType::kAnim);
28 type = parseResourceType(u"animator");
29 ASSERT_NE(type, nullptr);
30 EXPECT_EQ(*type, ResourceType::kAnimator);
32 type = parseResourceType(u"array");
33 ASSERT_NE(type, nullptr);
34 EXPECT_EQ(*type, ResourceType::kArray);
36 type
[all...]
H A DResource.cpp25 StringPiece16 toString(ResourceType type) { argument
26 switch (type) {
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h30 int type; member in struct:__anon1045
/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/data-binding/baseLibrary/src/main/java/android/databinding/
H A DBindingMethod.java28 Class type(); method in interface:BindingMethod
/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/packages/SettingsLib/src/com/android/settingslib/
H A DWirelessUtils.java23 public static boolean isRadioAllowed(Context context, String type) { argument
29 return toggleable != null && toggleable.contains(type);
/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/v17/leanback/src/android/support/v17/leanback/widget/
H A DFacetProviderAdapter.java20 * query {@link FacetProvider} for a given type within Adapter. Note that
27 * Queries {@link FacetProvider} for a given type within Adapter.
28 * @param type type of the item.
29 * @return Facet provider for the type.
31 public FacetProvider getFacetProvider(int type); 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);

Completed in 2272 milliseconds

1234567891011>>