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

1 2

  /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/base/opengl/tests/filter/
filter.cpp 56 EGLint attribs[] = { EGL_WIDTH, 320, EGL_HEIGHT, 480, EGL_NONE }; local
57 surface = eglCreatePbufferSurface(dpy, config, attribs);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ShHandle.h 58 const TVariableInfoList& getAttribs() const { return attribs; }
71 // Collect info for all attribs and uniforms.
88 TVariableInfoList attribs; // Active attributes in the compiled shader. member in class:TCompiler
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
MessageData.java 35 float[][] attribs = null; field in class:MessageData
  /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
RFC2965Spec.java 126 NameValuePair[] attribs = headerelement.getParameters(); local
131 new HashMap<String, NameValuePair>(attribs.length);
132 for (int j = attribs.length - 1; j >= 0; j--) {
133 NameValuePair param = attribs[j];
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageData.java 35 float[][] attribs = null; field in class:MessageData
  /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/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gl.c 94 int attribs[64]; local
121 attribs[i++] = GLX_RGBA;
122 attribs[i++] = GLX_RED_SIZE;
123 attribs[i++] = this->gl_config.red_size;
124 attribs[i++] = GLX_GREEN_SIZE;
125 attribs[i++] = this->gl_config.green_size;
126 attribs[i++] = GLX_BLUE_SIZE;
127 attribs[i++] = this->gl_config.blue_size;
130 attribs[i++] = GLX_ALPHA_SIZE;
131 attribs[i++] = this->gl_config.alpha_size
    [all...]
  /external/webrtc/src/modules/audio_processing/main/test/android/apmtest/jni/
main.c 71 const EGLint attribs[] = { local
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 69 AttributeList attribs = method.getAttributes(); local
71 attribs.findFirst(AttExceptions.ATTRIBUTE_NAME);
86 * @param attribs {@code non-null;} the attributes list to search in
89 public static Annotations getAnnotations(AttributeList attribs) {
90 Annotations result = getAnnotations0(attribs);
91 Annotation signature = getSignature(attribs);
116 AttributeList attribs = cf.getAttributes(); local
117 Annotations result = getAnnotations(attribs);
118 Annotation enclosingMethod = translateEnclosingMethod(attribs);
122 translateInnerClasses(thisClass, attribs,
359 AttributeList attribs = method.getAttributes(); local
406 AttributeList attribs = one.getAttributes(); local
    [all...]
  /external/quake/quake/src/QW/client/
gl_vidandroid.c 219 GLint attribs[32]; local
gl_vidlinux.c 558 GLint attribs[32]; local
579 attribs[0] = FXMESA_DOUBLEBUFFER;
580 attribs[1] = FXMESA_ALPHA_SIZE;
581 attribs[2] = 1;
582 attribs[3] = FXMESA_DEPTH_SIZE;
583 attribs[4] = 1;
584 attribs[5] = FXMESA_NONE;
610 attribs);
  /frameworks/base/libs/rs/
rsScriptC_LibGL.cpp 154 RsdVertexArray::Attrib attribs[2]; local
155 attribs[0].set(GL_FLOAT, 3, 12, false, (uint32_t)vtx, "ATTRIB_position");
156 attribs[1].set(GL_FLOAT, 2, 8, false, (uint32_t)tex, "ATTRIB_texture0");
158 RsdVertexArray va(attribs, 2);
  /frameworks/base/opengl/libagl2/src/
gles2context.h 123 } attribs [GGL_MAXVERTEXATTRIBS]; member in struct:GLES2Context::VertexState
  /frameworks/base/services/surfaceflinger/DisplayHardware/
DisplayHardware.cpp 152 EGLint attribs[] = { local
163 attribs[2] = EGL_CONFIG_CAVEAT;
164 attribs[3] = EGL_SLOW_CONFIG;
176 err = selectConfigForPixelFormat(display, attribs, format, &config);
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 669 Attributes attribs; local
674 attribs = manifest.getMainAttributes();
675 attribs.put(Attributes.Name.MANIFEST_VERSION, "1.0");
678 attribs = manifest.getMainAttributes();
682 String createdBy = attribs.getValue(CREATED_BY);
690 attribs.put(CREATED_BY, createdBy);
691 attribs.putValue("Dex-Location", DexFormat.DEX_IN_JAR_NAME);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 307 AttributeList attribs = getAttributes(); local
308 Attribute attSf = attribs.findFirst(AttSourceFile.ATTRIBUTE_NAME);
  /external/mesa3d/test/
image_file.h 107 unsigned attribs : 4; member in struct:TGAHeader::__anon8588
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 223 const EGLint attribs[] = { local
239 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
EglX11Api.cpp 226 int attribs[] = { local
232 GLXPbuffer pb = glXCreatePbuffer(dpy,cfg->nativeConfig(),attribs);
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
egl.cpp 301 EGLint *attribs = NULL; local
306 attribs = new EGLint[nAttribs];
307 memcpy(attribs, attrib_list, nAttribs * sizeof(EGLint));
312 if (attribs[i] == EGL_RENDERABLE_TYPE) {
313 if (attribs[i + 1] & EGL_OPENGL_ES2_BIT) {
314 attribs[i + 1] &= ~EGL_OPENGL_ES2_BIT;
315 attribs[i + 1] |= EGL_OPENGL_ES_BIT;
316 LOGD("removing ES2 bit 0x%x\n", attribs[i + 1]);
321 return attribs;
328 EGLint *attribs = filter_es2_bit(attrib_list, NULL) local
    [all...]

Completed in 1157 milliseconds

1 2