Searched defs:type (Results 1 - 25 of 1121) 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("anim"); local
25 ASSERT_NE(type, nullptr);
26 EXPECT_EQ(*type, ResourceType::kAnim);
28 type = ParseResourceType("animator");
29 ASSERT_NE(type, nullptr);
30 EXPECT_EQ(*type, ResourceType::kAnimator);
32 type = ParseResourceType("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/libs/androidfw/tests/
H A DResourceUtils_test.cpp24 StringPiece package, type, entry; local
25 ASSERT_TRUE(ExtractResourceName("android:string/foo", &package, &type, &entry));
27 EXPECT_EQ("string", type);
30 ASSERT_TRUE(ExtractResourceName("@android:string/foo", &package, &type, &entry));
32 EXPECT_EQ("string", type);
35 ASSERT_TRUE(ExtractResourceName("string/foo", &package, &type, &entry));
37 EXPECT_EQ("string", type);
40 ASSERT_TRUE(ExtractResourceName("@string/foo", &package, &type, &entry));
42 EXPECT_EQ("string", type);
45 ASSERT_TRUE(ExtractResourceName("foo", &package, &type,
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h30 int type; member in struct:__anon1073
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
H A DLockTargetState.java24 * @param type
26 public LockTargetState(Type type, List<LockTarget> lockTargets) { argument
27 super(type);
/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
/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.cpp44 ResourceTableType* type = package->FindType(ResourceType::kAttr); local
45 ASSERT_NE(type, nullptr);
46 ASSERT_EQ(type->entries.size(), 2u);
47 EXPECT_NE(type->FindEntry("publicA"), nullptr);
48 EXPECT_NE(type->FindEntry("publicB"), nullptr);
50 type = package->FindType(ResourceType::kAttrPrivate);
51 ASSERT_NE(type, nullptr);
52 ASSERT_EQ(type->entries.size(), 2u);
53 EXPECT_NE(type->FindEntry("privateA"), nullptr);
54 EXPECT_NE(type
71 ResourceTableType* type = package->FindType(ResourceType::kAttr); local
[all...]
/frameworks/support/leanback/src/main/java/androidx/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/lifecycle/common/src/main/java/androidx/lifecycle/
H A DMethodCallsLogger.java35 public boolean approveCall(String name, int type) { argument
38 boolean wasCalled = (mask & type) != 0;
39 mCalledMethods.put(name, mask | type);
/frameworks/av/drm/mediadrm/plugins/clearkey/default/
H A DDrmFactory.cpp36 bool DrmFactory::isContentTypeSupported(const android::String8 &type) { argument
38 return type == kIsoBmffVideoMimeType ||
39 type == kIsoBmffAudioMimeType ||
40 type == kCencInitDataFormat ||
41 type == kWebmVideoMimeType ||
42 type == kWebmAudioMimeType ||
43 type == kWebmInitDataFormat;
/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/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/packages/SettingsLib/src/com/android/settingslib/widget/
H A DLinkTextView.java41 public void setText(CharSequence text, BufferType type) { argument
42 super.setText(text, type);

Completed in 555 milliseconds

1234567891011>>