Searched defs:type (Results 1 - 25 of 801) 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 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 DglDrawElementsInstancedBaseVertex.java1 // C function void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex )
6 int type,
12 // C function void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex )
17 int type,
3 glDrawElementsInstancedBaseVertex( int mode, int count, int type, java.nio.Buffer indices, int instanceCount, int basevertex ) argument
14 glDrawElementsInstancedBaseVertex( int mode, int count, int type, int indicesOffset, int instanceCount, int basevertex ) 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...]
/frameworks/native/services/sensorservice/
H A DSensorServiceUtils.cpp25 size_t eventSizeBySensorType(int type) { argument
26 if (type >= SENSOR_TYPE_DEVICE_PRIVATE_BASE) {
29 switch (type) {
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h30 int type; member in struct:__anon1098
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DInverseBindingMethod.java28 * type = android.widget.TextView.class,
78 * The View type that is associated with the attribute.
80 Class type(); method in interface:InverseBindingMethod
H A DBindingMethod.java32 Class type(); method in interface:BindingMethod
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPort.java29 Class type(); method in interface:GenerateProgramPort
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DGestureClassifier.java26 * @param type the type of action for which this method is called
31 public abstract float getFalseTouchEvaluation(int type); argument
H A DDirectionClassifier.java21 * the type of action that takes place.
33 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
37 type);
H A DDirectionEvaluator.java20 public static float evaluate(float xDiff, float yDiff, int type) { argument
23 switch (type) {
H A DDurationCountClassifier.java33 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
H A DEndPointLengthClassifier.java32 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
/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/tools/aapt2/link/
H A DPrivateAttributeMover_test.cpp43 ResourceTableType* type = package->findType(ResourceType::kAttr); local
44 ASSERT_NE(type, nullptr);
45 ASSERT_EQ(type->entries.size(), 2u);
46 EXPECT_NE(type->findEntry(u"publicA"), nullptr);
47 EXPECT_NE(type->findEntry(u"publicB"), nullptr);
49 type = package->findType(ResourceType::kAttrPrivate);
50 ASSERT_NE(type, nullptr);
51 ASSERT_EQ(type->entries.size(), 2u);
52 EXPECT_NE(type->findEntry(u"privateA"), nullptr);
53 EXPECT_NE(type
70 ResourceTableType* type = package->findType(ResourceType::kAttr); local
[all...]
/frameworks/rs/
H A DrsApiType.cpp30 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t typeDataSize) { argument
34 Type *t = static_cast<Type *>(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.java41 * @param type The type of service.
45 public static <T> T getService(Class<T> type) { argument
47 return (T) sLocalServiceObjects.get(type);
54 public static <T> void addService(Class<T> type, T service) { argument
56 if (sLocalServiceObjects.containsKey(type)) {
59 sLocalServiceObjects.put(type, service);
67 public static <T> void removeServiceForTest(Class<T> type) { argument
69 sLocalServiceObjects.remove(type);
/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);

Completed in 386 milliseconds

1234567891011>>