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

1 2 3 4 5 6 7 8

  /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/
dri_context.c 57 struct st_context_attribs attribs; local
75 memset(&attribs, 0, sizeof(attribs));
78 attribs.profile = ST_PROFILE_OPENGL_ES1;
81 attribs.profile = ST_PROFILE_OPENGL_ES2;
85 attribs.profile = api == API_OPENGL_COMPAT ? ST_PROFILE_DEFAULT
87 attribs.major = major_version;
88 attribs.minor = minor_version;
91 attribs.flags |= ST_CONTEXT_FLAG_FORWARD_COMPATIBLE;
99 attribs.flags |= ST_CONTEXT_FLAG_DEBUG
    [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
68 } else if (!ListsHelper.isSubset(deviceInfo.getChannelCounts(), attribs.mChannelCounts)) {
75 } else if (!ListsHelper.isSubset(deviceInfo.getEncodings(), attribs.mEncodings)) {
82 } else if (!ListsHelper.isSubset(deviceInfo.getSampleRates(), attribs.mSampleRates)) {
93 attribs.mChannelIndexMasks)) {
99 attribs.mChannelPositionMasks)) {
119 PeripheralProfile.ProfileAttributes attribs = local
126 } else if (!ListsHelper.isSubset(deviceInfo.getChannelCounts(), attribs.mChannelCounts)) {
133 } else if (!ListsHelper.isSubset(deviceInfo.getEncodings(), attribs.mEncodings)) {
140 } else if (!ListsHelper.isSubset(deviceInfo.getSampleRates(), attribs.mSampleRates))
    [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/gallium/targets/haiku-softpipe/
GalliumContext.cpp 152 struct st_context_attribs attribs; local
153 memset(&attribs, 0, sizeof(attribs));
154 attribs.options.force_glsl_extensions_warn = false;
155 attribs.profile = ST_PROFILE_DEFAULT;
156 attribs.visual = *context->stVisual;
157 attribs.major = 1;
158 attribs.minor = 0;
159 //attribs.flags |= ST_CONTEXT_FLAG_DEBUG;
164 &attribs, &result, context->st)
    [all...]
  /external/skia/tools/viewer/sk_app/unix/
GLWindowContext_unix.cpp 73 int attribs[] = { local
78 fGLContext = createContextAttribs(fDisplay, *fFBConfig, nullptr, True, attribs);
  /external/v8/src/runtime/
runtime-classes.cc 155 PropertyAttributes attribs = local
160 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 6068 milliseconds

1 2 3 4 5 6 7 8