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

1 2 3

  /dalvik/dexgen/src/com/android/dexgen/rop/
StdAttributeList.java 58 Attribute att = get(i); local
59 if (att.getName().equals(name)) {
60 return att;
74 Attribute att = get(at); local
75 if (att == attrib) {
86 Attribute att = get(at); local
87 if (att.getName().equals(name)) {
88 return att;
  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 58 Attribute att = get(i); local
59 if (att.getName().equals(name)) {
60 return att;
74 Attribute att = get(at); local
75 if (att == attrib) {
86 Attribute att = get(at); local
87 if (att.getName().equals(name)) {
88 return att;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
clear.c 250 const struct gl_renderbuffer_attachment *att = ctx->DrawBuffer->Attachment; local
255 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
257 if (att[BUFFER_FRONT_RIGHT].Renderbuffer)
261 if (att[BUFFER_BACK_LEFT].Renderbuffer)
263 if (att[BUFFER_BACK_RIGHT].Renderbuffer)
267 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
269 if (att[BUFFER_BACK_LEFT].Renderbuffer)
273 if (att[BUFFER_FRONT_RIGHT].Renderbuffer)
275 if (att[BUFFER_BACK_RIGHT].Renderbuffer)
279 if (att[BUFFER_FRONT_LEFT].Renderbuffer
    [all...]
framebuffer.c 214 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
215 if (att->Renderbuffer) {
216 _mesa_reference_renderbuffer(&att->Renderbuffer, NULL);
218 if (att->Texture) {
219 _mesa_reference_texobj(&att->Texture, NULL);
221 ASSERT(!att->Renderbuffer);
222 ASSERT(!att->Texture);
223 att->Type = GL_NONE;
288 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
289 if (att->Type == GL_RENDERBUFFER_EXT && att->Renderbuffer)
414 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
759 const struct gl_renderbuffer_attachment *att = fb->Attachment; local
915 const struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
    [all...]
  /external/mesa3d/src/mesa/main/
clear.c 250 const struct gl_renderbuffer_attachment *att = ctx->DrawBuffer->Attachment; local
255 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
257 if (att[BUFFER_FRONT_RIGHT].Renderbuffer)
261 if (att[BUFFER_BACK_LEFT].Renderbuffer)
263 if (att[BUFFER_BACK_RIGHT].Renderbuffer)
267 if (att[BUFFER_FRONT_LEFT].Renderbuffer)
269 if (att[BUFFER_BACK_LEFT].Renderbuffer)
273 if (att[BUFFER_FRONT_RIGHT].Renderbuffer)
275 if (att[BUFFER_BACK_RIGHT].Renderbuffer)
279 if (att[BUFFER_FRONT_LEFT].Renderbuffer
    [all...]
framebuffer.c 214 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
215 if (att->Renderbuffer) {
216 _mesa_reference_renderbuffer(&att->Renderbuffer, NULL);
218 if (att->Texture) {
219 _mesa_reference_texobj(&att->Texture, NULL);
221 ASSERT(!att->Renderbuffer);
222 ASSERT(!att->Texture);
223 att->Type = GL_NONE;
288 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
289 if (att->Type == GL_RENDERBUFFER_EXT && att->Renderbuffer)
414 struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
759 const struct gl_renderbuffer_attachment *att = fb->Attachment; local
915 const struct gl_renderbuffer_attachment *att = &fb->Attachment[i]; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlparser.cc 98 const char **att; local
100 for (att = atts; *att; att += 2) {
101 if (XmlParser_StartsWithXmlns(*att)) {
102 if ((*att)[5] == '\0') {
103 context_.StartNamespace("", *(att + 1));
105 else if ((*att)[5] == ':') {
106 if (**(att + 1) == '\0') {
111 context_.StartNamespace((*att) + 6, *(att + 1))
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarOutputStreamTest.java 58 Attributes att = newman.getMainAttributes(); local
59 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
60 att.put(Attributes.Name.MAIN_CLASS, element);
111 Attributes att = man.getMainAttributes(); local
112 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
113 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
114 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
JarExecTest.java 45 Attributes att = man.getMainAttributes(); local
46 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
47 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
85 Attributes att = man.getMainAttributes(); local
86 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
87 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
88 att.put(Attributes.Name.CLASS_PATH, barJar.getName());
111 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barJar.getName());
123 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator + barJar.getParentFile().getName() + File.separator + barJar.getName());
146 Attributes att = man.getMainAttributes() local
215 Attributes att = man.getMainAttributes(); local
    [all...]
ZipExecTest.java 42 Attributes att = man.getMainAttributes(); local
43 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
44 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
83 Attributes att = man.getMainAttributes(); local
84 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
85 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
86 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
111 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barZip.getName());
125 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator + barZip.getParentFile().getName() + File.separator + barZip.getName());
147 Attributes att = man.getMainAttributes() local
181 Attributes att = man.getMainAttributes(); local
221 Attributes att = man.getMainAttributes(); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlparser.cc 103 const char **att; local
105 for (att = atts; *att; att += 2) {
106 if (XmlParser_StartsWithXmlns(*att)) {
107 if ((*att)[5] == '\0') {
108 context_.StartNamespace("", *(att + 1));
110 else if ((*att)[5] == ':') {
111 if (**(att + 1) == '\0') {
116 context_.StartNamespace((*att) + 6, *(att + 1))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ItemsExtension.java 47 private String att; field in class:ItemsExtension.ItemsElementType
52 att = attribute;
62 return att;
  /packages/apps/Email/src/com/android/email/provider/
Utilities.java 141 EmailContent.Attachment att = new EmailContent.Attachment(); local
158 att.mFileName = "";
159 att.mSize = message.getSize();
160 att.mMimeType = "text/plain";
161 att.mMessageKey = localMessage.mId;
162 att.mAccountKey = localMessage.mAccountKey;
163 att.mFlags = Attachment.FLAG_DUMMY_ATTACHMENT;
164 att.save(context);
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 248 Attachment att = new Attachment(); local
249 att.mSize = length;
250 att.mFileName = fileName;
251 att.mContentId = "contentId " + fileName;
252 att.mContentUri = "contentUri " + fileName;
253 att.mMessageKey = messageId;
254 att.mMimeType = "mimeType " + fileName;
255 att.mLocation = "location " + fileName;
256 att.mEncoding = "encoding " + fileName;
257 att.mContent = "content " + fileName
    [all...]
PolicyTests.java 117 Attachment att = ProviderTestUtils.setupAttachment(-1, name, size, false, mMockContext); local
118 att.mAccountKey = acct.mId;
119 return att;
  /external/chromium_org/third_party/libxml/src/
testHTML.c 379 const unsigned char *att = atts[i]; local
382 while ((attlen = strlen((char*)att)) > 0) {
384 htmlEncodeEntities(output, &outlen, att, &attlen, '\'');
387 att += attlen;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
dri2.c 107 int att, depth; local
118 att = __DRI_BUFFER_FRONT_LEFT;
121 att = __DRI_BUFFER_BACK_LEFT;
124 att = __DRI_BUFFER_FRONT_RIGHT;
127 att = __DRI_BUFFER_BACK_RIGHT;
130 att = __DRI_BUFFER_DEPTH_STENCIL;
133 att = -1;
153 att = __DRI_BUFFER_DEPTH;
158 att = __DRI_BUFFER_DEPTH;
166 att = __DRI_BUFFER_DEPTH
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_fbo.c 385 struct gl_renderbuffer_attachment *att)
396 if (!st_finalize_texture(ctx, pipe, att->Texture))
399 pt = st_get_texobj_resource(att->Texture);
403 texImage = _mesa_get_attachment_teximage(att);
410 rb = st_new_renderbuffer(ctx, att->Texture->Name);
416 _mesa_reference_renderbuffer(&att->Renderbuffer, rb);
424 stObj = st_texture_object(att->Texture);
428 strb->rtt_level = att->TextureLevel;
429 strb->rtt_face = att->CubeMapFace;
430 strb->rtt_slice = att->Zoffset
627 struct gl_renderbuffer_attachment *att = local
    [all...]
  /external/chromium_org/third_party/skia/src/views/unix/
SkOSWindow_Unix.cpp 86 GLint att[] = { local
95 static const GLint kAttCount = SK_ARRAY_COUNT(att);
97 memcpy(msaaAtt, att, sizeof(att));
108 fVi = glXChooseVisual(dsp, DefaultScreen(dsp), att);
  /external/mesa3d/src/gallium/state_trackers/dri/drm/
dri2.c 107 int att, depth; local
118 att = __DRI_BUFFER_FRONT_LEFT;
121 att = __DRI_BUFFER_BACK_LEFT;
124 att = __DRI_BUFFER_FRONT_RIGHT;
127 att = __DRI_BUFFER_BACK_RIGHT;
130 att = __DRI_BUFFER_DEPTH_STENCIL;
133 att = -1;
153 att = __DRI_BUFFER_DEPTH;
158 att = __DRI_BUFFER_DEPTH;
166 att = __DRI_BUFFER_DEPTH
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.c 385 struct gl_renderbuffer_attachment *att)
396 if (!st_finalize_texture(ctx, pipe, att->Texture))
399 pt = st_get_texobj_resource(att->Texture);
403 texImage = _mesa_get_attachment_teximage(att);
410 rb = st_new_renderbuffer(ctx, att->Texture->Name);
416 _mesa_reference_renderbuffer(&att->Renderbuffer, rb);
424 stObj = st_texture_object(att->Texture);
428 strb->rtt_level = att->TextureLevel;
429 strb->rtt_face = att->CubeMapFace;
430 strb->rtt_slice = att->Zoffset
627 struct gl_renderbuffer_attachment *att = local
    [all...]
  /external/skia/src/views/unix/
SkOSWindow_Unix.cpp 86 GLint att[] = { local
95 static const GLint kAttCount = SK_ARRAY_COUNT(att);
97 memcpy(msaaAtt, att, sizeof(att));
108 fVi = glXChooseVisual(dsp, DefaultScreen(dsp), att);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/android/
native_android.cpp 460 const enum native_attachment att = NATIVE_ATTACHMENT_BACK_LEFT; local
462 if (native_attachment_mask_test(attachment_mask, att)) {
463 textures[att] = NULL;
464 pipe_resource_reference(&textures[att],
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_fbo.c 820 struct gl_renderbuffer_attachment *att)
823 = att->Texture->Image[att->CubeMapFace][att->TextureLevel];
824 struct radeon_renderbuffer *rrb = radeon_renderbuffer(att->Renderbuffer);
829 "%s(%p, fb %p, rrb %p, att %p)\n",
830 __func__, ctx, fb, rrb, att);
841 _mesa_reference_renderbuffer(&att->Renderbuffer, NULL);
842 _swrast_render_texture(ctx, fb, att);
849 _mesa_reference_renderbuffer(&att->Renderbuffer, &rrb->base.Base)
921 struct gl_renderbuffer_attachment *att; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/android/
native_android.cpp 460 const enum native_attachment att = NATIVE_ATTACHMENT_BACK_LEFT; local
462 if (native_attachment_mask_test(attachment_mask, att)) {
463 textures[att] = NULL;
464 pipe_resource_reference(&textures[att],

Completed in 947 milliseconds

1 2 3