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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/security/
PKCS12AttributeTest.java 107 PKCS12Attribute att = new PKCS12Attribute(PKCS9_EMAIL_ADDRESS_OID, EXAMPLE_EMAIL_ADDRESS); local
108 assertEquals(PKCS9_EMAIL_ADDRESS_OID, att.getName());
109 assertEquals(EXAMPLE_EMAIL_ADDRESS, att.getValue());
130 PKCS12Attribute att = local
138 PKCS12Attribute att = new PKCS12Attribute(ENCODED_ATTRIBUTE_UTF8_EMAIL_ADDRESS); local
139 assertEquals(PKCS9_EMAIL_ADDRESS_OID, att.getName());
140 assertEquals(EXAMPLE_EMAIL_ADDRESS, att.getValue());
160 PKCS12Attribute att = new PKCS12Attribute( local
162 assertEquals(PKCS9_EMAIL_ADDRESS_OID, att.getName());
163 assertEquals(EXAMPLE_SEQUENCE_OF_EMAILS, att.getValue())
169 PKCS12Attribute att = new PKCS12Attribute( local
180 PKCS12Attribute att = new PKCS12Attribute( local
192 PKCS12Attribute att = new PKCS12Attribute(ENCODED_ATTRIBUTE_CONTENT_TYPE_SIGNED_DATA); local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texrender.c 32 wrap_texture(struct gl_context *ctx, struct gl_renderbuffer_attachment *att)
37 ASSERT(att->Type == GL_TEXTURE);
38 ASSERT(att->Renderbuffer == NULL);
53 _mesa_reference_renderbuffer(&att->Renderbuffer, rb);
62 update_wrapper(struct gl_context *ctx, struct gl_renderbuffer_attachment *att)
64 struct gl_renderbuffer *rb = att->Renderbuffer;
72 swImage = swrast_texture_image(_mesa_get_attachment_teximage(att));
77 if (att->Texture->Target == GL_TEXTURE_1D_ARRAY_EXT) {
81 zOffset = att->Zoffset;
95 if (att->Texture->Target == GL_TEXTURE_3D |
    [all...]
  /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;
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 76 Attribute att;
82 att = attributes.findFirst(
85 for (;att != null; att = attributes.findNext(att)) {
86 BaseAnnotations ann = (BaseAnnotations)att;
90 att = attributes.findFirst(
93 for (;att != null; att = attributes.findNext(att)) {
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-xhtml/1.0/
doxia-module-xhtml-1.0.jar 
  /external/mesa3d/src/mesa/main/
fbobject.c 303 struct gl_renderbuffer_attachment *att)
305 if (att->Type == GL_TEXTURE) {
306 ASSERT(att->Texture);
309 ctx->Driver.FinishRenderTexture(ctx, att);
311 _mesa_reference_texobj(&att->Texture, NULL); /* unbind */
312 ASSERT(!att->Texture);
314 if (att->Type == GL_TEXTURE || att->Type == GL_RENDERBUFFER_EXT) {
315 ASSERT(!att->Texture);
316 _mesa_reference_renderbuffer(&att->Renderbuffer, NULL); /* unbind *
392 struct gl_renderbuffer_attachment *att; local
701 struct gl_renderbuffer_attachment *att; local
827 const struct gl_renderbuffer_attachment *att local
840 const struct gl_renderbuffer_attachment *att local
1388 struct gl_renderbuffer_attachment *att = fb->Attachment + i; local
1682 struct gl_renderbuffer_attachment *att = fb->Attachment + i; local
1704 struct gl_renderbuffer_attachment *att = fb->Attachment + i; local
1999 struct gl_renderbuffer_attachment *att; local
2271 struct gl_renderbuffer_attachment *att; local
2354 const struct gl_renderbuffer_attachment *att; local
3071 const struct gl_renderbuffer_attachment *att; local
    [all...]
fbobject.h 76 _mesa_get_attachment_teximage(struct gl_renderbuffer_attachment *att)
78 assert(att->Type == GL_TEXTURE);
79 return att->Texture->Image[att->CubeMapFace][att->TextureLevel];
85 _mesa_get_attachment_teximage_const(const struct gl_renderbuffer_attachment *att)
87 assert(att->Type == GL_TEXTURE);
88 return att->Texture->Image[att->CubeMapFace][att->TextureLevel]
    [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...]
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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarOutputStreamTest.java 46 Attributes att = man.getMainAttributes(); local
47 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
48 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
49 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
  /external/webrtc/webrtc/libjingle/xmllite/
xmlparser.cc 81 const char **att; local
83 for (att = atts; *att; att += 2) {
84 if (XmlParser_StartsWithXmlns(*att)) {
85 if ((*att)[5] == '\0') {
86 context_.StartNamespace("", *(att + 1));
88 else if ((*att)[5] == ':') {
89 if (**(att + 1) == '\0') {
94 context_.StartNamespace((*att) + 6, *(att + 1))
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
AttachmentService.java 927 final Attachment att = new Attachment(); local
1334 final Attachment att = Attachment.restoreAttachmentWithId(this, req.mAttachmentId); local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
SelectableChannel.java 164 * the <tt>att</tt> argument is not <tt>null</tt> then the key's attachment
171 * will be <tt>att</tt>.
191 * @param att
219 public abstract SelectionKey register(Selector sel, int ops, Object att)
  /libcore/ojluni/src/main/java/sun/nio/ch/
UnixAsynchronousServerSocketChannelImpl.java 113 Object att; local
120 att = acceptAttachment;
132 Invoker.invokeIndirectly(this, handler, att, null, x);
202 Object att = acceptAttachment; local
218 Invoker.invoke(this, handler, att, child, exc);
273 Future<AsynchronousSocketChannel> implAccept(Object att,
282 Invoker.invoke(this, handler, att, null, e);
319 this.acceptAttachment = att;
355 Invoker.invokeIndirectly(this, handler, att, child, exc);
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
Rfc822OutputTests.java 149 Attachment att = new Attachment(); local
150 att.mContentBytes = "__CONTENT__".getBytes("UTF-8");
151 att.mFlags = Attachment.FLAG_ICS_ALTERNATIVE_PART;
152 att.mMimeType = "text/calendar";
153 att.mFileName = "invite.ics";
154 msg.mAttachments.add(att);
194 Attachment att = new Attachment(); local
195 att.mContentBytes = "<html>Hi</html>".getBytes("UTF-8");
196 att.mMimeType = "text/html";
197 att.mFileName = "test.html"
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_fbo.c 268 struct gl_renderbuffer_attachment *att)
270 struct gl_renderbuffer *rb = att->Renderbuffer;
272 att->Texture->Image[att->CubeMapFace][att->TextureLevel];
281 _mesa_reference_renderbuffer(&att->Renderbuffer, rb);
296 struct gl_renderbuffer_attachment *att)
298 texture_dirty(att->Texture);
  /external/mesa3d/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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SelectableChannelTest.java 73 public SelectionKey register(Selector sel, int ops, Object att)
75 if (null == att) {
  /packages/apps/Email/provider_src/com/android/email/provider/
Utilities.java 142 EmailContent.Attachment att = new EmailContent.Attachment(); local
159 att.mFileName = "";
160 att.mSize = message.getSize();
161 att.mMimeType = "text/plain";
162 att.mMessageKey = localMessage.mId;
163 att.mAccountKey = localMessage.mAccountKey;
164 att.mFlags = Attachment.FLAG_DUMMY_ATTACHMENT;
165 att.save(context);
  /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/deqp/modules/gles3/functional/
es3fFboCompletenessTests.cpp 182 void check (GLenum attPoint, const Attachment& att, const Image* image);
193 void ES3Checker::check (GLenum attPoint, const Attachment& att, const Image* image)
232 m_depthStencilImage = att.imageName;
233 m_depthStencilType = attachmentType(att);
237 if (m_depthStencilImage != att.imageName || m_depthStencilType != attachmentType(att))
304 TextureLayerAttachment* att = &builder.makeConfig<TextureLayerAttachment>(); local
305 att->layer = m_params.attachmentLayer;
306 att->imageName = tex;
308 builder.glAttach(target, att);
426 RenderbufferAttachment& att = builder.makeConfig<RenderbufferAttachment>(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multifile.py 29 Content-Disposition: attachment; filename="att.txt"
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multifile.py 29 Content-Disposition: attachment; filename="att.txt"
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multifile.py 29 Content-Disposition: attachment; filename="att.txt"

Completed in 732 milliseconds

1 2 3 4 5 6 7 8 91011>>