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

1 2 3 4 5

  /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 77 Attribute att;
83 att = attributes.findFirst(
86 for (;att != null; att = attributes.findNext(att)) {
87 BaseAnnotations ann = (BaseAnnotations)att;
91 att = attributes.findFirst(
94 for (;att != null; att = attributes.findNext(att)) {
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
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...]
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...]
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());
  /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...]
xmlelement.h 128 explicit XmlAttr(const XmlAttr & att) :
130 name_(att.name_),
131 value_(att.value_) {
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 310 Attachment att = msg.mAttachments.get(0); local
312 assertEquals("invite.ics", att.mFileName);
314 att.mFlags & Attachment.FLAG_ICS_ALTERNATIVE_PART);
315 assertEquals("text/calendar; method=REPLY", att.mMimeType);
316 assertNotNull(att.mContentBytes);
317 assertEquals(att.mSize, att.mContentBytes.length);
352 Attachment att = msg.mAttachments.get(0); local
354 assertEquals("invite.ics", att.mFileName);
356 att.mFlags & Attachment.FLAG_ICS_ALTERNATIVE_PART)
414 Attachment att = msg.mAttachments.get(0); local
480 Attachment att = msg.mAttachments.get(0); local
562 Attachment att = msg.mAttachments.get(0); local
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
SelectableChannel.java 151 * the attached object is updated to {@code att}. The returned key is
164 * @param att
179 public abstract SelectionKey register(Selector sel, int ops, Object att)
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
CodeGen.java 296 final GLAttribPointer att = v.attribPointers[i]; local
297 if (att.type == null)
299 if (att.buffer != null)
300 code.format("glBindBuffer(GL_ARRAY_BUFFER, buffer_%d);CHKERR;\n", att.buffer.name);
304 i, att.size, att.type, att.normalized, att.stride, att.ptr);
436 final GLAttribPointer att = v.attribPointers[i] local
460 final GLAttribPointer att = v.attribPointers[i]; local
496 final GLAttribPointer att = v.attribPointers[i]; local
549 final GLAttribPointer att = v.attribPointers[i]; local
564 final GLAttribPointer att = v.attribPointers[i]; local
589 final GLAttribPointer att = v.attribPointers[i]; local
627 final GLAttribPointer att = v.attribPointers[i]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
CodeGen.java 296 final GLAttribPointer att = v.attribPointers[i]; local
297 if (att.type == null)
299 if (att.buffer != null)
300 code.format("glBindBuffer(GL_ARRAY_BUFFER, buffer_%d);CHKERR;\n", att.buffer.name);
304 i, att.size, att.type, att.normalized, att.stride, att.ptr);
436 final GLAttribPointer att = v.attribPointers[i] local
460 final GLAttribPointer att = v.attribPointers[i]; local
496 final GLAttribPointer att = v.attribPointers[i]; local
549 final GLAttribPointer att = v.attribPointers[i]; local
564 final GLAttribPointer att = v.attribPointers[i]; local
589 final GLAttribPointer att = v.attribPointers[i]; local
627 final GLAttribPointer att = v.attribPointers[i]; local
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SelectableChannelTest.java 73 public SelectionKey register(Selector sel, int ops, Object att)
75 if (null == att) {
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 255 public synchronized void onChange(Context context, Attachment att) {
256 DownloadRequest req = findDownloadRequest(att.mId);
257 long priority = getPriority(att);
260 Log.d(TAG, "== Attachment changed: " + att.mId);
267 Log.d(TAG, "== Attachment " + att.mId + " was in queue, removing");
273 if (mDownloadsInProgress.containsKey(att.mId)) return;
276 req = new DownloadRequest(context, att);
282 Log.d(TAG, "== Download queued for attachment " + att.mId + ", class " +
371 Attachment att = Attachment.restoreAttachmentWithId(mContext, id); local
372 if (att != null)
922 Attachment att = (Attachment)intent.getParcelableExtra(EXTRA_ATTACHMENT); local
965 Attachment att = Attachment.restoreAttachmentWithId(this, req.attachmentId); local
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
Rfc822OutputTests.java 248 Attachment att = new Attachment(); local
249 att.mContentBytes = "__CONTENT__".getBytes("UTF-8");
250 att.mFlags = Attachment.FLAG_ICS_ALTERNATIVE_PART;
251 att.mMimeType = "text/calendar";
252 att.mFileName = "invite.ics";
253 msg.mAttachments.add(att);
293 Attachment att = new Attachment(); local
294 att.mContentBytes = "<html>Hi</html>".getBytes("UTF-8");
295 att.mMimeType = "text/html";
296 att.mFileName = "test.html"
    [all...]
  /external/bluetooth/hcidump/
Android.mk 13 parser/att.c \
  /external/webkit/Source/JavaScriptCore/
create_hash_table 82 my $att = $3;
86 push(@attrs, length($att) > 0 ? $att : "0");
88 if ($att =~ m/Function/) {
91 } elsif (length($att)) {
93 my $put = !($att =~ m/ReadOnly/) ? "set" . jsc_ucfirst($val) : "0";
  /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;
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_main.cpp 208 const Attribute & att = _attributes[index]; local
209 ASSERT_GE(bufsize, strlen(att.name) + 1);
213 strcpy(name, att.name);
216 *size = att.size;
217 *type = att.type;
  /external/bluetooth/bluez/attrib/
client.c 46 #include "att.h"
76 struct att_primary *att; member in struct:primary
580 struct att_primary *att = prim->att; local
584 write_device_characteristics(&gatt->sba, &gatt->dba, att->start,
645 struct att_primary *att = prim->att; local
655 str = read_device_characteristics(&gatt->sba, &gatt->dba, att->start);
875 struct att_primary *att = prim->att; local
949 struct att_primary *att = prim->att; local
1028 struct att_primary *att = l->data; local
    [all...]
  /external/libxml2/
SAX2.c 1385 const xmlChar *att; local
1541 const xmlChar *att; local
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegettextcontent08.js 91 var att;
102 att = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
103 replacedAttr = elem.setAttributeNodeNS(att);
  /external/bluetooth/bluez/src/
Android.mk 34 ../attrib/att.c \
  /external/v8/test/mjsunit/
html-string-funcs.js 40 function CheckCompound(f, tag, att) {
41 assertEquals('<' + tag + ' ' + att + '="bar">foo</' + tag + '>',

Completed in 1474 milliseconds

1 2 3 4 5