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

  /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;
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 194 Attachment att = new Attachment(); local
195 att.mSize = length;
196 att.mFileName = fileName;
197 att.mContentId = "contentId " + fileName;
198 att.mContentUri = "contentUri " + fileName;
199 att.mMessageKey = messageId;
200 att.mMimeType = "mimeType " + fileName;
201 att.mLocation = "location " + fileName;
202 att.mEncoding = "encoding " + fileName;
203 att.mContent = "content " + fileName
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarOutputStreamTest.java 60 Attributes att = newman.getMainAttributes(); local
61 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
62 att.put(Attributes.Name.MAIN_CLASS, element);
133 Attributes att = man.getMainAttributes(); local
134 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
135 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
136 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
JarExecTest.java 47 Attributes att = man.getMainAttributes(); local
48 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
49 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
86 Attributes att = man.getMainAttributes(); local
87 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
88 att.put(Attributes.Name.MAIN_CLASS, "foo.bar.execjartest.Foo");
89 att.put(Attributes.Name.CLASS_PATH, barJar.getName());
114 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barJar.getName());
125 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator
151 Attributes att = man.getMainAttributes() local
229 Attributes att = man.getMainAttributes(); local
    [all...]
ZipExecTest.java 44 Attributes att = man.getMainAttributes(); local
45 att.put(Attributes.Name.MANIFEST_VERSION, "1.0");
46 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, barZip.getName());
115 att.put(Attributes.Name.CLASS_PATH, "xx yy zz " + barZip.getName());
129 att.put(Attributes.Name.CLASS_PATH, ".." + File.separator
152 Attributes att = man.getMainAttributes() local
186 Attributes att = man.getMainAttributes(); local
229 Attributes att = man.getMainAttributes(); local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
Rfc822OutputTests.java 186 Attachment att = new Attachment(); local
187 att.mContentBytes = "__CONTENT__".getBytes("UTF-8");
188 att.mFlags = Attachment.FLAG_ICS_ALTERNATIVE_PART;
189 att.mMimeType = "text/calendar";
190 att.mFileName = "invite.ics";
191 msg.mAttachments.add(att);
231 Attachment att = new Attachment(); local
232 att.mContentBytes = "<html>Hi</html>".getBytes("UTF-8");
233 att.mMimeType = "text/html";
234 att.mFileName = "test.html"
    [all...]
  /external/icu4c/common/
uresdata.c 199 int32_t att=indexes[URES_INDEX_ATTRIBUTES]; local
200 pResData->noFallback=(UBool)(att&URES_ATT_NO_FALLBACK);
201 pResData->isPoolBundle=(UBool)((att&URES_ATT_IS_POOL_BUNDLE)!=0);
202 pResData->usesPoolBundle=(UBool)((att&URES_ATT_USES_POOL_BUNDLE)!=0);
    [all...]
  /external/libxml2/
SAX2.c 1385 const xmlChar *att; local
1541 const xmlChar *att; local
    [all...]
HTMLparser.c 3394 const xmlChar *att, *value; local
    [all...]
xpath.c 7866 xmlAttrPtr att = (xmlAttrPtr) ctxt->context->node; local
7991 xmlAttrPtr att = (xmlAttrPtr) ctxt->context->node; local
    [all...]
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_route.c 85 int att; /* Attenuated */ member in struct:snd_pcm_route_ttable_dst
245 /* sum_type att */
253 /* sum_type att shift */
325 add = add_labels[params->sum_idx * 2 + ttable->att];
326 norm = norm_labels[params->sum_idx * 8 + ttable->att * 4 + 4 - params->src_size];
727 if (d->att)
791 int att = 0; local
808 att = 1;
816 dptr->att = att;
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
EmailSyncAdapter.java 366 Attachment att = new Attachment(); local
367 att.mEncoding = "base64";
368 att.mSize = Long.parseLong(length);
369 att.mFileName = fileName;
370 att.mLocation = location;
371 att.mMimeType = getMimeTypeFromFileName(fileName);
372 atts.add(att);
    [all...]
  /packages/apps/Email/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 264 Attachment att = msg.mAttachments.get(0); local
266 assertEquals("invite.ics", att.mFileName);
268 att.mFlags & Attachment.FLAG_ICS_ALTERNATIVE_PART);
269 assertEquals("text/calendar; method=REPLY", att.mMimeType);
270 assertNotNull(att.mContentBytes);
271 assertEquals(att.mSize, att.mContentBytes.length);
303 Attachment att = msg.mAttachments.get(0); local
305 assertEquals("invite.ics", att.mFileName);
307 att.mFlags & Attachment.FLAG_ICS_ALTERNATIVE_PART)
365 Attachment att = msg.mAttachments.get(0); local
431 Attachment att = msg.mAttachments.get(0); local
513 Attachment att = msg.mAttachments.get(0); local
    [all...]
  /packages/apps/Email/src/com/android/exchange/
EasSyncService.java 892 Attachment att = req.mAttachment; local
    [all...]
  /external/icu4c/test/cintltst/
capitst.c 150 UColAttribute att; member in struct:attrTest
173 currAttr = attrs[i].att;
    [all...]
cmsccoll.c 3419 static const UColAttribute att[] = { UCOL_STRENGTH }; local
4225 UColAttribute att = UCOL_NUMERIC_COLLATION; local
4740 UColAttribute att[] = { UCOL_STRENGTH, UCOL_CASE_FIRST }; local
4749 UColAttribute att[] = { UCOL_STRENGTH, UCOL_CASE_LEVEL }; local
    [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 1661 Attachment att = new Attachment(); local
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
capitst.c 142 UColAttribute att; member in struct:attrTest
165 currAttr = attrs[i].att;
    [all...]
cmsccoll.c 3413 static const UColAttribute att[] = { UCOL_STRENGTH }; local
4212 UColAttribute att = UCOL_NUMERIC_COLLATION; local
4755 UColAttribute att[] = { UCOL_STRENGTH, UCOL_CASE_FIRST }; local
4764 UColAttribute att[] = { UCOL_STRENGTH, UCOL_CASE_LEVEL }; local
    [all...]
  /external/expat/lib/
xmlparse.c 5247 DEFAULT_ATTRIBUTE *att; local
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 932 milliseconds