Searched defs:type (Results 201 - 225 of 1121) sorted by last modified time

1234567891011>>

/frameworks/native/libs/input/
H A DInputDevice.cpp45 const String8& name, InputDeviceConfigurationFileType type) {
46 path.append(CONFIGURATION_FILE_DIR[type]);
54 path.append(CONFIGURATION_FILE_EXTENSION[type]);
59 InputDeviceConfigurationFileType type) {
67 type));
77 type));
84 return getInputDeviceConfigurationFilePathByName(deviceIdentifier.name, type);
88 const String8& name, InputDeviceConfigurationFileType type) {
97 appendInputDeviceConfigurationFileRelativePath(path, name, type);
114 appendInputDeviceConfigurationFileRelativePath(path, name, type);
44 appendInputDeviceConfigurationFileRelativePath(String8& path, const String8& name, InputDeviceConfigurationFileType type) argument
57 getInputDeviceConfigurationFilePathByDeviceIdentifier( const InputDeviceIdentifier& deviceIdentifier, InputDeviceConfigurationFileType type) argument
87 getInputDeviceConfigurationFilePathByName( const String8& name, InputDeviceConfigurationFileType type) argument
[all...]
H A DKeyCharacterMap.cpp740 if (keywordToken == "type") {
786 ALOGE("%s: Keyboard layout missing required keyboard 'type' declaration.",
793 ALOGE("%s: Base keyboard layout must specify a keyboard 'type' other than 'OVERLAY'.",
800 "'type OVERLAY' declaration.",
811 ALOGE("%s: Duplicate keyboard 'type' declaration.",
816 KeyboardType type; local
819 type = KEYBOARD_TYPE_NUMERIC;
821 type = KEYBOARD_TYPE_PREDICTIVE;
823 type = KEYBOARD_TYPE_ALPHA;
825 type
[all...]
H A DKeyboard.cpp142 const String8& name, InputDeviceConfigurationFileType type) {
144 ? getInputDeviceConfigurationFilePathByDeviceIdentifier(deviceIdentifier, type)
145 : getInputDeviceConfigurationFilePathByName(name, type);
141 getPath(const InputDeviceIdentifier& deviceIdentifier, const String8& name, InputDeviceConfigurationFileType type) argument
/frameworks/native/libs/nativewindow/tests/
H A DAHardwareBufferTest.cpp30 uint64_t actual, const char* type) {
32 ss << type << " 0x" << std::hex << actual
33 << " does not match expected " << type << " 0x" << std::hex
29 BuildHexFailureMessage(uint64_t expected, uint64_t actual, const char* type) argument
/frameworks/native/libs/sensor/
H A DISensorServer.cpp113 uint32_t size, int32_t type, int32_t format, const native_handle_t *resource) {
118 data.writeInt32(type);
125 virtual int setOperationParameter(int32_t handle, int32_t type, argument
131 data.writeInt32(type);
199 int32_t type = data.readInt32(); local
203 createSensorDirectConnection(opPackageName, size, type, format, resource);
212 int32_t type; local
217 type = data.readInt32();
227 int32_t ret = setOperationParameter(handle, type, floats, ints);
112 createSensorDirectConnection(const String16& opPackageName, uint32_t size, int32_t type, int32_t format, const native_handle_t *resource) argument
H A DSensorManager.cpp200 Sensor const* SensorManager::getDefaultSensor(int type) argument
208 if (type == SENSOR_TYPE_PROXIMITY || type == SENSOR_TYPE_SIGNIFICANT_MOTION ||
209 type == SENSOR_TYPE_TILT_DETECTOR || type == SENSOR_TYPE_WAKE_GESTURE ||
210 type == SENSOR_TYPE_GLANCE_GESTURE || type == SENSOR_TYPE_PICK_UP_GESTURE ||
211 type == SENSOR_TYPE_WRIST_TILT_GESTURE ||
212 type == SENSOR_TYPE_LOW_LATENCY_OFFBODY_DETECT) {
215 // For now we just return the first sensor of that type w
[all...]
/frameworks/native/libs/vr/libdvr/include/dvr/
H A Ddvr_surface.h35 DvrSurfaceAttributeType type; member in struct:DvrSurfaceAttributeValue
/frameworks/native/libs/vr/libpdx/
H A Dencoder_performance_test.cpp115 // Generic serialization test runner method. Takes the |value| of type T and
131 // Generic deserialization test runner method. Takes the |value| of type T and
406 std::string GenerateContainerName(const std::string& type, size_t count) { argument
408 ss << type << "(" << count << ")";
/frameworks/native/libs/vr/libvrsensor/
H A Dpose_client.cpp299 int dvrPoseClientGetDataReaderHandle(DvrPoseClient* client, uint64_t type, argument
301 return PoseClient::FromC(client)->GetTangoReaderHandle(type, queue_out);
/frameworks/native/opengl/libagl/
H A Darray.cpp108 c->arrays.vertex.type = GL_FLOAT;
110 c->arrays.color.type = GL_FLOAT;
112 c->arrays.normal.type = GL_FLOAT;
115 c->arrays.texture[i].type = GL_FLOAT;
252 static const fn_t color_fct[2][16] = { // size={3,4}, type={ub,f,x}
260 static const fn_t color_clamp_fct[2][16] = { // size={3,4}, type={ub,f,x}
268 static const fn_t normal_fct[1][16] = { // size={3}, type={b,s,f,x}
274 static const fn_t vertex_fct[3][16] = { // size={2,3,4}, type={b,s,f,x}
288 static const fn_t texture_fct[3][16] = { // size={2,3,4}, type={b,s,f,x}
310 GLint size, GLenum type, GLsize
309 init( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, const buffer_t* bo, GLsizei count) argument
748 read_index(int type, const GLvoid*& p) argument
767 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
789 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
816 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
843 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
872 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
1237 glVertexPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) argument
1258 glColorPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) argument
1278 glNormalPointer( GLenum type, GLsizei stride, const GLvoid *pointer) argument
1299 glTexCoordPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) argument
1387 glDrawElements( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
[all...]
H A Dcontext.h190 uint16_t type; member in struct:android::gl::array_t
H A Degl.cpp124 egl_display_t() : type(0), initialized(0) { }
132 NativeDisplayType type; member in struct:android::egl_display_t
1448 d.type = display;
2148 EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, argument
2155 if (type != EGL_SYNC_FENCE_KHR ||
H A Dtexture.cpp191 static int32_t convertGLPixelFormat(GLint format, GLenum type) argument
202 switch (type) {
215 static GLenum validFormatType(ogles_context_t* c, GLenum format, GLenum type) argument
221 if (type != GL_UNSIGNED_BYTE && type != GL_UNSIGNED_SHORT_4_4_4_4 &&
222 type != GL_UNSIGNED_SHORT_5_5_5_1 && type != GL_UNSIGNED_SHORT_5_6_5) {
225 if (type == GL_UNSIGNED_SHORT_5_6_5 && format != GL_RGB) {
228 if ((type == GL_UNSIGNED_SHORT_4_4_4_4 ||
229 type
354 createTextureSurface(ogles_context_t* c, GGLSurface** outSurface, int32_t* outSize, GLint level, GLenum format, GLenum type, GLsizei width, GLsizei height, GLenum compressedFormat = 0) argument
1063 GLenum type; local
[all...]
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp1797 EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) argument
1807 result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list);
/frameworks/native/opengl/libs/GLES_CM/
H A Dgl.cpp38 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
40 GL_API void GL_APIENTRY glNormalPointerBounds(GLenum type, GLsizei stride,
42 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
44 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
46 GL_API void GL_APIENTRY glPointSizePointerOESBounds(GLenum type,
48 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
50 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
54 void glColorPointerBounds(GLint size, GLenum type, GLsizei stride, argument
56 glColorPointer(size, type, stride, ptr);
58 void glNormalPointerBounds(GLenum type, GLsize argument
62 glTexCoordPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
66 glVertexPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
71 glPointSizePointerOESBounds(GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
76 glMatrixIndexPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
81 glWeightPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A Dcommon.cpp23 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
25 GL_API void GL_APIENTRY glNormalPointerBounds(GLenum type, GLsizei stride,
27 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
29 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
31 GL_API void GL_APIENTRY glPointSizePointerOESBounds(GLenum type,
33 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
35 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
39 static void glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, argument
41 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
45 static void glVertexAttribIPointerBounds(GLuint indx, GLint size, GLenum type, argument
[all...]
H A DglCreateShaderProgramv.cpp1 /* GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings ) */
4 (JNIEnv *_env, jobject _this, jint type, jobjectArray strings) {
49 _returnValue = glCreateShaderProgramv((GLenum)type, _count, _strings);
3 android_glCreateShaderProgramv(JNIEnv *_env, jobject _this, jint type, jobjectArray strings) argument
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 DglDebugMessageCallback.java4 void onMessage(int source, int type, int id, int severity, String message); argument
H A DglDebugMessageCallbackKHR.java4 void onMessage(int source, int type, int id, int severity, String message); argument
H A DglDebugMessageInsertKHR.cpp1 /* void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf ) */
4 (JNIEnv *_env, jobject _this, jint source, jint type, jint id, jint severity, jstring buf) {
22 (GLenum)type,
3 android_glDebugMessageInsertKHR__IIIILjava_lang_String_2(JNIEnv *_env, jobject _this, jint source, jint type, jint id, jint severity, jstring buf) 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 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 DglDrawElementsInstanced.cpp1 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
4 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount) {
18 (GLenum)type,
27 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
30 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount) {
34 (GLenum)type,
3 android_glDrawElementsInstanced__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount) argument
29 android_glDrawElementsInstanced__IIIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount) argument

Completed in 171 milliseconds

1234567891011>>