Searched refs:attribs (Results 1 - 25 of 210) sorted by relevance

123456789

/external/deqp/framework/delibs/decpp/
H A DdeMutex.cpp40 deMutexAttributes attribs; local
41 deMemset(&attribs, 0, sizeof(attribs));
42 attribs.flags = flags;
44 m_mutex = deMutex_create(&attribs);
H A DdeSemaphore.cpp39 deSemaphoreAttributes attribs; local
40 deMemset(&attribs, 0, sizeof(attribs));
41 attribs.flags = flags;
43 m_semaphore = deSemaphore_create(initialValue, &attribs);
/external/deqp/framework/egl/
H A DegluStrUtil.hpp55 const int* attribs; member in struct:eglu::ConfigAttribListFmt
56 ConfigAttribListFmt (const int* attribs_) : attribs(attribs_) {}
61 const int* attribs; member in struct:eglu::SurfaceAttribListFmt
62 SurfaceAttribListFmt (const int* attribs_) : attribs(attribs_) {}
67 const int* attribs; member in struct:eglu::ContextAttribListFmt
68 ContextAttribListFmt (const int* attribs_) : attribs(attribs_) {}
80 inline ConfigAttribListFmt getConfigAttribListStr (const int* attribs) { return ConfigAttribListFmt(attribs); } argument
83 inline SurfaceAttribListFmt getSurfaceAttribListStr (const int* attribs) { return SurfaceAttribListFmt(attribs); } argument
86 getContextAttribListStr(const int* attribs) argument
[all...]
H A DegluUtil.hpp50 std::vector<EGLConfig> chooseConfig (EGLDisplay display, const AttribMap& attribs);
51 EGLConfig chooseSingleConfig (EGLDisplay display, const AttribMap& attribs);
62 std::vector<EGLint> toLegacyAttribList (const EGLAttrib* attribs);
/external/chromium_org/cc/test/
H A Dtest_in_process_context_provider.cc26 gpu::gles2::ContextCreationAttribHelper attribs; local
27 attribs.alpha_size = 8;
28 attribs.blue_size = 8;
29 attribs.green_size = 8;
30 attribs.red_size = 8;
31 attribs.depth_size = 24;
32 attribs.stencil_size = 8;
33 attribs.samples = 0;
34 attribs.sample_buffers = 0;
35 attribs
[all...]
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/
H A DUiAutomationElement.java73 Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class);
74 put(attribs, Attribute.PACKAGE, charSequenceToString(node.getPackageName()));
75 put(attribs, Attribute.CLASS, charSequenceToString(node.getClassName()));
76 put(attribs, Attribute.TEXT, charSequenceToString(node.getText()));
77 put(attribs, Attribute.CONTENT_DESC, charSequenceToString(node.getContentDescription()));
78 put(attribs, Attribute.RESOURCE_ID, charSequenceToString(node.getViewIdResourceName()));
79 put(attribs, Attribute.CHECKABLE, node.isCheckable());
80 put(attribs, Attribute.CHECKED, node.isChecked());
81 put(attribs, Attribute.CLICKABLE, node.isClickable());
82 put(attribs, Attribut
104 put(Map<Attribute, Object> attribs, Attribute key, Object value) argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fDrawTests.cpp85 spec.attribs.resize(2);
87 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT;
88 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
89 spec.attribs[0].storage = gls::DrawTestSpec::STORAGE_BUFFER;
90 spec.attribs[0].usage = gls::DrawTestSpec::USAGE_STATIC_DRAW;
91 spec.attribs[0].componentCount = 4;
92 spec.attribs[0].offset = 0;
93 spec.attribs[0].stride = 0;
94 spec.attribs[0].normalize = false;
95 spec.attribs[
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gl.c106 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[
[all...]
/external/chromium_org/ui/gl/
H A Dgl_surface_mac.cc62 std::vector<CGLPixelFormatAttribute> attribs;
66 attribs.push_back(kCGLPFAAllowOfflineRenderers);
69 attribs.push_back(kCGLPFARendererID);
70 attribs.push_back(static_cast<CGLPixelFormatAttribute>(
73 attribs.push_back(static_cast<CGLPixelFormatAttribute>(0));
77 if (CGLChoosePixelFormat(&attribs.front(),
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
H A Degl_g3d_image.h37 const EGLint *attribs);
44 const EGLint *attribs);
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_image.h37 const EGLint *attribs);
44 const EGLint *attribs);
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_utils.cc826 void ContextCreationAttribHelper::Serialize(std::vector<int32>* attribs) const {
828 attribs->push_back(kAlphaSize);
829 attribs->push_back(alpha_size);
832 attribs->push_back(kBlueSize);
833 attribs->push_back(blue_size);
836 attribs->push_back(kGreenSize);
837 attribs->push_back(green_size);
840 attribs->push_back(kRedSize);
841 attribs->push_back(red_size);
844 attribs
870 Parse(const std::vector<int32>& attribs) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fDrawTests.cpp116 spec.attribs.resize(2);
118 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT;
119 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
120 spec.attribs[0].storage = gls::DrawTestSpec::STORAGE_BUFFER;
121 spec.attribs[0].usage = gls::DrawTestSpec::USAGE_STATIC_DRAW;
122 spec.attribs[0].componentCount = 4;
123 spec.attribs[0].offset = 0;
124 spec.attribs[0].stride = 0;
125 spec.attribs[0].normalize = false;
126 spec.attribs[
[all...]
/external/deqp/framework/qphelper/
H A DqpTestLog.c523 qpXmlAttribute attribs[8]; local
530 if (name) attribs[numAttribs++] = qpSetStringAttrib("Name", name);
531 if (description) attribs[numAttribs++] = qpSetStringAttrib("Description", description);
532 if (tagString) attribs[numAttribs++] = qpSetStringAttrib("Tag", tagString);
533 if (unit) attribs[numAttribs++] = qpSetStringAttrib("Unit", unit);
535 if (!qpXmlWriter_startElement(log->writer, elementName, numAttribs, attribs) ||
770 qpXmlAttribute attribs[4]; local
776 attribs[numAttribs++] = qpSetStringAttrib("Name", name);
778 attribs[numAttribs++] = qpSetStringAttrib("Description", description);
781 if (!qpXmlWriter_startElement(log->writer, "ImageSet", numAttribs, attribs))
844 qpXmlAttribute attribs[8]; local
1055 qpXmlAttribute attribs[4]; local
1107 qpXmlAttribute attribs[64]; local
1166 qpXmlAttribute attribs[2]; local
1239 qpXmlAttribute attribs[3]; local
1264 qpXmlAttribute attribs[2]; local
1307 qpXmlAttribute attribs[4]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/common/
H A Ddri_context.c73 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
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
H A Ddri_context.c73 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
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/sw/
H A Ddri_context.c73 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
[all...]
/external/mesa3d/src/gallium/state_trackers/dri/common/
H A Ddri_context.c73 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
[all...]
/external/mesa3d/src/gallium/state_trackers/dri/drm/
H A Ddri_context.c73 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
[all...]
/external/mesa3d/src/gallium/state_trackers/dri/sw/
H A Ddri_context.c73 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
[all...]
/external/deqp/framework/platform/win32/
H A DtcuWGL.cpp267 int attribs[] = { WGL_NUMBER_PIXEL_FORMATS_ARB }; local
268 int values[DE_LENGTH_OF_ARRAY(attribs)];
270 if (!wgl.getPixelFormatAttribivARB(deviceCtx, 0, 0, DE_LENGTH_OF_ARRAY(attribs), &attribs[0], &values[0]))
308 int attribs [14]; local
309 int values [DE_LENGTH_OF_ARRAY(attribs)];
310 attribs[0] = WGL_DRAW_TO_WINDOW_ARB;
311 attribs[1] = WGL_DRAW_TO_BITMAP_ARB;
312 attribs[2] = WGL_ACCELERATION_ARB;
313 attribs[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_state_vertex.c44 const struct pipe_vertex_element *attribs)
51 memcpy(velems->velem, attribs, sizeof(*attribs) * count);
42 softpipe_create_vertex_elements_state(struct pipe_context *pipe, unsigned count, const struct pipe_vertex_element *attribs) argument
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_state_vertex.c44 const struct pipe_vertex_element *attribs)
51 memcpy(velems->velem, attribs, sizeof(*attribs) * count);
42 softpipe_create_vertex_elements_state(struct pipe_context *pipe, unsigned count, const struct pipe_vertex_element *attribs) argument
/external/deqp/modules/gles2/stress/
H A Des2sDrawTests.cpp58 spec.attribs.resize(2);
60 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT;
61 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
62 spec.attribs[0].storage = gls::DrawTestSpec::STORAGE_BUFFER;
63 spec.attribs[0].usage = gls::DrawTestSpec::USAGE_STATIC_DRAW;
64 spec.attribs[0].componentCount = 4;
65 spec.attribs[0].offset = 0;
66 spec.attribs[0].stride = 0;
67 spec.attribs[0].normalize = false;
68 spec.attribs[
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java79 this.attribs = new HashMap<String, String>();
309 this.attribs.put(name, value);
313 return this.attribs.get(name);
317 return this.attribs.get(name) != null;
323 clone.attribs = new HashMap<String, String>(this.attribs);
357 private Map<String, String> attribs; field in class:BasicClientCookie

Completed in 464 milliseconds

123456789