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

1 2 3

  /external/deqp/framework/delibs/decpp/
deMutex.cpp 40 deMutexAttributes attribs; local
41 deMemset(&attribs, 0, sizeof(attribs));
42 attribs.flags = flags;
44 m_mutex = deMutex_create(&attribs);
deSemaphore.cpp 39 deSemaphoreAttributes attribs; local
40 deMemset(&attribs, 0, sizeof(attribs));
41 attribs.flags = flags;
43 m_semaphore = deSemaphore_create(initialValue, &attribs);
  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 44 AttributeList attribs = getAttributes(); local
46 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME);
  /external/chromium_org/ppapi/tests/
test_video_decoder.cc 19 const int32_t attribs[] = {PP_GRAPHICS3DATTRIB_WIDTH, width, local
22 graphics_3d_ = pp::Graphics3D(instance_, attribs);
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);
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.java 72 AttributeList attribs = getAttributes(); local
74 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME);
  /external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
GrAndroidPathRenderer.cpp 43 GrVertexAttrib attribs[] = { local
47 drawState->setVertexAttribs(attribs, SK_ARRAY_COUNT(attribs));
  /external/droiddriver/src/com/google/android/droiddriver/uiautomation/
UiAutomationElement.java 73 Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class); local
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, Attribute.ENABLED, node.isEnabled())
    [all...]
  /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/chromium_org/ui/gl/
gl_context_glx.cc 40 std::vector<int> attribs; local
43 attribs.push_back(GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB);
44 attribs.push_back(GLX_LOSE_CONTEXT_ON_RESET_ARB);
46 attribs.push_back(0);
52 &attribs.front());
  /external/deqp/framework/egl/
egluStrUtil.hpp 55 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); }
83 inline SurfaceAttribListFmt getSurfaceAttribListStr (const int* attribs) { return SurfaceAttribListFmt(attribs); }
    [all...]
  /external/deqp/modules/egl/
teglApiCase.cpp 129 EGLint attribs[] = local
139 ok = eglChooseConfig(getDisplay(), &attribs[0], config, 1, &numCfgs);
  /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);
  /development/ndk/sources/android/ndk_helper/
GLContext.cpp 106 const EGLint attribs[] = { EGL_RENDERABLE_TYPE, local
114 eglChooseConfig( display_, attribs, &config_, 1, &num_configs );
119 const EGLint attribs[] = { EGL_RENDERABLE_TYPE, local
123 eglChooseConfig( display_, attribs, &config_, 1, &num_configs );
  /external/apache-http/src/org/apache/http/impl/cookie/
CookieSpecBase.java 91 NameValuePair[] attribs = headerelement.getParameters(); local
92 for (int j = attribs.length - 1; j >= 0; j--) {
93 NameValuePair attrib = attribs[j];
BasicClientCookie.java 79 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
  /external/chromium_org/cc/test/
test_in_process_context_provider.cc 26 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.fail_if_major_perf_caveat = false
    [all...]
  /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/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...]
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
ViewElement.java 50 final Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class); field in class:ViewElement.SnapshotViewAttributesRunnable
80 attribs.put(Attribute.SELECTION_START, textView.getSelectionStart());
81 attribs.put(Attribute.SELECTION_END, textView.getSelectionEnd());
101 attribs.put(key, value);
232 attributes = Collections.unmodifiableMap(attributesSnapshot.attribs);
  /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);

Completed in 941 milliseconds

1 2 3