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

1 2 3 4 5 6 7

  /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);
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.java 72 AttributeList attribs = getAttributes(); local
74 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME);
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationElement.java 75 Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class); local
76 put(attribs, Attribute.PACKAGE, charSequenceToString(node.getPackageName()));
77 put(attribs, Attribute.CLASS, charSequenceToString(node.getClassName()));
78 put(attribs, Attribute.TEXT, charSequenceToString(node.getText()));
79 put(attribs, Attribute.CONTENT_DESC, charSequenceToString(node.getContentDescription()));
80 put(attribs, Attribute.RESOURCE_ID, charSequenceToString(node.getViewIdResourceName()));
81 put(attribs, Attribute.CHECKABLE, node.isCheckable());
82 put(attribs, Attribute.CHECKED, node.isChecked());
83 put(attribs, Attribute.CLICKABLE, node.isClickable());
84 put(attribs, Attribute.ENABLED, node.isEnabled())
    [all...]
  /external/autotest/client/deps/glbench/src/
egl_stuff.cc 46 EGLint attribs[] = { local
70 eglChooseConfig(display_, attribs, &config_, 1, &num_configs);
109 EGLint attribs[] = { local
115 return eglCreateContext(display_, config_, NULL, attribs);
  /external/deqp/framework/common/
tcuTestHierarchyUtil.cpp 69 qpXmlAttribute attribs[2]; local
71 attribs[numAttribs++] = qpSetStringAttrib("PackageName", node->getName());
72 attribs[numAttribs++] = qpSetStringAttrib("Description", node->getDescription());
73 DE_ASSERT(numAttribs <= DE_LENGTH_OF_ARRAY(attribs));
76 !qpXmlWriter_startElement(writer, "TestCaseList", numAttribs, attribs))
95 qpXmlAttribute attribs[3]; local
98 attribs[numAttribs++] = qpSetStringAttrib("Name", caseName.c_str());
99 attribs[numAttribs++] = qpSetStringAttrib("CaseType", getNodeTypeName(nodeType));
100 attribs[numAttribs++] = qpSetStringAttrib("Description", description.c_str());
101 DE_ASSERT(numAttribs <= DE_LENGTH_OF_ARRAY(attribs));
    [all...]
  /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/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...]
  /frameworks/native/opengl/tests/filter/
filter.cpp 58 EGLint attribs[] = { EGL_WIDTH, 320, EGL_HEIGHT, 480, EGL_NONE }; local
59 surface = eglCreatePbufferSurface(dpy, config, attribs);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
USBAudioPeripheralAttributesActivity.java 61 PeripheralProfile.ProfileAttributes attribs = local
65 if (!ListsHelper.isMatch(deviceInfo.getChannelCounts(), attribs.mChannelCounts)) {
69 attribs.mChannelIndexMasks)) {
73 attribs.mChannelPositionMasks)) {
76 if (!ListsHelper.isMatch(deviceInfo.getEncodings(), attribs.mEncodings)) {
79 if (!ListsHelper.isMatch(deviceInfo.getSampleRates(), attribs.mSampleRates)) {
94 PeripheralProfile.ProfileAttributes attribs = local
98 if (!ListsHelper.isMatch(deviceInfo.getChannelCounts(), attribs.mChannelCounts)) {
102 attribs.mChannelIndexMasks)) {
106 attribs.mChannelPositionMasks))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 77 AttributeList attribs = method.getAttributes(); local
78 this.attCode = (AttCode) attribs.findFirst(AttCode.ATTRIBUTE_NAME);
  /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/deqp/modules/egl/
teglMutableRenderBufferTests.cpp 104 const EGLint attribs[] = local
127 m_eglConfig = eglu::chooseSingleConfig(egl, m_eglDisplay, attribs);
teglCreateSurfaceTests.cpp 256 const EGLint attribs[] = local
264 EGLSurface surface = egl.createPbufferSurface(display, config, attribs);
teglThreadCleanUpTests.cpp 81 const EGLint attribs[] = local
87 const eglu::UniqueSurface surface (m_egl, m_display, m_egl.createPbufferSurface(m_display, m_config, attribs));
213 const EGLint attribs[] = local
220 m_surface = egl.createPbufferSurface(m_display, m_config, attribs);
  /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/skia/tools/viewer/sk_app/unix/
GLWindowContext_unix.cpp 71 int attribs[] = { local
76 fGLContext = createContextAttribs(fDisplay, *fFBConfig, nullptr, True, attribs);
  /external/v8/src/runtime/
runtime-classes.cc 138 PropertyAttributes attribs = local
143 prototype, attribs),
  /prebuilts/ndk/r11/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 );
  /prebuilts/ndk/r13/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/droiddriver/src/io/appium/droiddriver/instrumentation/
ViewElement.java 63 attributes = Collections.unmodifiableMap(attributesSnapshot.attribs);
119 final Map<Attribute, Object> attribs = new EnumMap<>(Attribute.class); field in class:ViewElement.AttributesSnapshot
148 attribs.put(Attribute.SELECTION_START, textView.getSelectionStart());
149 attribs.put(Attribute.SELECTION_END, textView.getSelectionEnd());
167 attribs.put(key, value);
  /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);
  /external/deqp/framework/platform/osx/
tcuOSXPlatform.cpp 117 const CGLPixelFormatAttribute attribs[] = local
127 if (CGLChoosePixelFormat(&attribs[0], &pixelFormat, &numVScreens) != kCGLNoError)

Completed in 1065 milliseconds

1 2 3 4 5 6 7