HomeSort by relevance Sort by last modified time
    Searched defs:attribs (Results 1 - 25 of 72) sorted by null

1 2 3

  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 44 AttributeList attribs = getAttributes(); local
46 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME);
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.java 72 AttributeList attribs = getAttributes(); local
74 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME);
  /frameworks/native/opengl/tests/filter/
filter.cpp 56 EGLint attribs[] = { EGL_WIDTH, 320, EGL_HEIGHT, 480, EGL_NONE }; local
57 surface = eglCreatePbufferSurface(dpy, config, attribs);
  /external/chromium_org/content/renderer/pepper/
pepper_platform_context_3d.cc 57 std::vector<int32> attribs; local
81 attribs.push_back(attr[0]);
82 attribs.push_back(attr[1]);
86 attribs.push_back(PP_GRAPHICS3DATTRIB_NONE);
100 attribs,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/common/
dri_context.c 73 struct st_context_attribs attribs; local
76 memset(&attribs, 0, sizeof(attribs));
79 attribs.profile = ST_PROFILE_OPENGL_ES1;
82 attribs.profile = ST_PROFILE_OPENGL_ES2;
85 attribs.profile = ST_PROFILE_DEFAULT;
86 attribs.major = major_version;
87 attribs.minor = minor_version;
90 attribs.flags |= ST_CONTEXT_FLAG_DEBUG;
93 attribs.flags |= ST_CONTEXT_FLAG_FORWARD_COMPATIBLE
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/common/
dri_context.c 73 struct st_context_attribs attribs; local
76 memset(&attribs, 0, sizeof(attribs));
79 attribs.profile = ST_PROFILE_OPENGL_ES1;
82 attribs.profile = ST_PROFILE_OPENGL_ES2;
85 attribs.profile = ST_PROFILE_DEFAULT;
86 attribs.major = major_version;
87 attribs.minor = minor_version;
90 attribs.flags |= ST_CONTEXT_FLAG_DEBUG;
93 attribs.flags |= ST_CONTEXT_FLAG_FORWARD_COMPATIBLE
    [all...]
  /cts/tests/tests/nativeopengl/standalone/jni/tests/
EGLCreateContext_test.cpp 95 static const EGLint ATTRIBS[] = {
104 return ATTRIBS;
119 EGLint attribs[5] = { local
124 attribs);
131 attribs[2] = EGL_BAD_ATTRIBUTE; // error code, not a valid attribute
133 attribs);
  /external/apache-http/src/org/apache/http/impl/cookie/
CookieSpecBase.java 86 NameValuePair[] attribs = headerelement.getParameters(); local
87 for (int j = attribs.length - 1; j >= 0; j--) {
88 NameValuePair attrib = attribs[j];
BasicClientCookie.java 74 this.attribs = new HashMap<String, String>();
304 this.attribs.put(name, value);
308 return this.attribs.get(name);
312 return this.attribs.get(name) != null;
318 clone.attribs = new HashMap<String, String>(this.attribs);
352 private Map<String, String> attribs; field in class:BasicClientCookie
  /external/chromium_org/gpu/gles2_conform_support/egl/
display.cc 153 std::vector<int32> attribs; local
154 attribs.push_back(EGL_DEPTH_SIZE);
155 attribs.push_back(depth_size);
156 attribs.push_back(EGL_ALPHA_SIZE);
157 attribs.push_back(alpha_size);
158 attribs.push_back(EGL_STENCIL_SIZE);
159 attribs.push_back(stencil_size);
161 attribs.push_back(EGL_NONE);
169 attribs)) {
  /external/chromium_org/ppapi/tests/
test_graphics_3d.cc 42 const int32_t attribs[] = { local
47 pp::Graphics3D context(instance_, attribs);
70 const int32_t attribs[] = { local
75 pp::Graphics3D context(instance_, attribs);
98 const int32_t attribs[] = { local
103 pp::Graphics3D context(instance_, attribs);
  /external/chromium_org/sandbox/win/src/
filesystem_dispatcher.cc 34 static const IPCCall attribs = { local
55 ipc_calls_.push_back(attribs);
  /external/chromium_org/third_party/mesa/src/src/glx/tests/
create_context_unittest.cpp 81 const uint32_t *attribs)
93 if (num_attribs != 0 && attribs != NULL)
94 memcpy(sent_attribs, attribs, num_attribs * 2 * sizeof(uint32_t));
294 static const int attribs[] = { local
304 False, attribs);
311 static const int attribs[] = { local
316 False, attribs);
331 int attribs[] = { local
339 False, attribs);
342 EXPECT_EQ((uint32_t) attribs[i], sent_attribs[i])
    [all...]
  /external/chromium_org/ui/gl/
gl_context_glx.cc 55 std::vector<int> attribs; local
58 attribs.push_back(GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB);
59 attribs.push_back(GLX_LOSE_CONTEXT_ON_RESET_ARB);
61 attribs.push_back(0);
67 &attribs.front());
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 81 const uint32_t *attribs)
93 if (num_attribs != 0 && attribs != NULL)
94 memcpy(sent_attribs, attribs, num_attribs * 2 * sizeof(uint32_t));
294 static const int attribs[] = { local
304 False, attribs);
311 static const int attribs[] = { local
316 False, attribs);
331 int attribs[] = { local
339 False, attribs);
342 EXPECT_EQ((uint32_t) attribs[i], sent_attribs[i])
    [all...]
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 61 int[] attribs = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE }; local
62 mEGLContext = egl.eglCreateContext(mEGLDisplay, mEGLConfig, EGL10.EGL_NO_CONTEXT, attribs);
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 84 AttributeList attribs = method.getAttributes(); local
85 this.attCode = (AttCode) attribs.findFirst(AttCode.ATTRIBUTE_NAME);
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 71 const EGLint attribs[] = { local
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
  /external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 118 std::vector<int32> attribs; local
119 attribs.push_back(EGL_RED_SIZE);
120 attribs.push_back(8);
121 attribs.push_back(EGL_GREEN_SIZE);
122 attribs.push_back(8);
123 attribs.push_back(EGL_BLUE_SIZE);
124 attribs.push_back(8);
125 attribs.push_back(EGL_ALPHA_SIZE);
126 attribs.push_back(8);
127 attribs.push_back(EGL_DEPTH_SIZE)
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ShHandle.h 71 const TVariableInfoList& getAttribs() const { return attribs; }
93 // Collect info for all attribs and uniforms.
143 TVariableInfoList attribs; // Active attributes in the compiled shader. member in class:TCompiler
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_interp.h 101 LLVMValueRef attribs[1 + PIPE_MAX_SHADER_INPUTS][TGSI_NUM_CHANNELS]; member in struct:lp_build_interp_soa_context
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_context.c 144 struct st_context_attribs attribs; local
187 memset(&attribs, 0, sizeof(attribs));
188 attribs.visual = pfi->stvis;
189 attribs.major = majorVersion;
190 attribs.minor = minorVersion;
192 attribs.flags |= ST_CONTEXT_FLAG_FORWARD_COMPATIBLE;
194 attribs.flags |= ST_CONTEXT_FLAG_DEBUG;
208 attribs.profile = ST_PROFILE_DEFAULT;
211 attribs.profile = ST_PROFILE_OPENGL_CORE
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_interp.h 101 LLVMValueRef attribs[1 + PIPE_MAX_SHADER_INPUTS][TGSI_NUM_CHANNELS]; member in struct:lp_build_interp_soa_context
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_context.c 144 struct st_context_attribs attribs; local
187 memset(&attribs, 0, sizeof(attribs));
188 attribs.visual = pfi->stvis;
189 attribs.major = majorVersion;
190 attribs.minor = minorVersion;
192 attribs.flags |= ST_CONTEXT_FLAG_FORWARD_COMPATIBLE;
194 attribs.flags |= ST_CONTEXT_FLAG_DEBUG;
208 attribs.profile = ST_PROFILE_DEFAULT;
211 attribs.profile = ST_PROFILE_OPENGL_CORE
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11gl.c 106 int attribs[64]; local
133 attribs[i++] = GLX_RGBA;
134 attribs[i++] = GLX_RED_SIZE;
135 attribs[i++] = this->gl_config.red_size;
136 attribs[i++] = GLX_GREEN_SIZE;
137 attribs[i++] = this->gl_config.green_size;
138 attribs[i++] = GLX_BLUE_SIZE;
139 attribs[i++] = this->gl_config.blue_size;
142 attribs[i++] = GLX_ALPHA_SIZE;
143 attribs[i++] = this->gl_config.alpha_size
    [all...]

Completed in 859 milliseconds

1 2 3