HomeSort by relevance Sort by last modified time
    Searched refs:tag (Results 151 - 175 of 2147) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/javassist/src/main/javassist/bytecode/
DeprecatedAttribute.java 29 public static final String tag = "Deprecated"; field in class:DeprecatedAttribute
43 super(cp, tag, new byte[0]);
SyntheticAttribute.java 29 public static final String tag = "Synthetic"; field in class:SyntheticAttribute
43 super(cp, tag, new byte[0]);
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
JoinHeader.java 100 * <li> The "Tag" parameter - is used in the To and From header fields of SIP
108 * it contains a From tag only, providing "half" of the dialog ID. The dialog
112 * in the To header field. When a tag is generated by a User Agent for insertion into
118 * global uniqueness, the algorithm for generating a tag is implementation
124 * tag in such a way that a backup can recognize a request as part of a dialog
132 * <code>From: "Bob" sips:bob@biloxi.com ;tag=a48s<br>
133 * From: sip:+12125551212@phone2net.com;tag=887s<br>
134 * From: Anonymous sip:c8oqz84zk7z@privacy.org;tag=hyh8</code>
145 * Sets the tag parameter of the FromHeader. The tag in the From field of
    [all...]
ReplacesHeader.java 27 void setToTag(String tag) throws ParseException;
29 void setFromTag(String tag) throws ParseException;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
SerializedFragmentState.java 8 public final String tag; field in class:SerializedFragmentState
16 tag = fragment.getTag();
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKTextChecker.h 42 typedef void (*WKTextCheckerCloseSpellDocumentWithTag)(uint64_t tag, const void *clientInfo);
43 typedef void (*WKTextCheckerCheckSpellingOfString)(uint64_t tag, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void *clientInfo);
44 typedef void (*WKTextCheckerCheckGrammarOfString)(uint64_t tag, WKStringRef text, WKArrayRef* grammarDetails, int32_t* badGrammarLocation, int32_t* badGrammarLength, const void *clientInfo);
47 typedef void (*WKTextCheckerUpdateSpellingUIWithMisspelledWord)(uint64_t tag, WKStringRef misspelledWord, const void *clientInfo);
48 typedef void (*WKTextCheckerUpdateSpellingUIWithGrammarString)(uint64_t tag, WKStringRef badGrammarPhrase, WKGrammarDetailRef grammarDetail, const void *clientInfo);
49 typedef WKArrayRef (*WKTextCheckerGuessesForWord)(uint64_t tag, WKStringRef word, const void *clientInfo);
50 typedef void (*WKTextCheckerLearnWord)(uint64_t tag, WKStringRef word, const void *clientInfo);
51 typedef void (*WKTextCheckerIgnoreWord)(uint64_t tag, WKStringRef word, const void *clientInfo);
  /frameworks/base/core/java/android/nfc/tech/
MifareUltralight.java 20 import android.nfc.Tag;
31 * Provides access to MIFARE Ultralight properties and I/O operations on a {@link Tag}.
36 * The primary operations on an Ultralight tag are {@link #readPages} and
53 * {@link MifareUltralight} will never be enumerated in {@link Tag#getTechList}.
55 * In either case, {@link NfcA} will also be enumerated on the tag,
62 private static final String TAG = "NFC";
64 /** A MIFARE Ultralight compatible tag of unknown type */
66 /** A MIFARE Ultralight tag */
68 /** A MIFARE Ultralight C tag */
83 * Get an instance of {@link MifareUltralight} for the given tag
    [all...]
IsoDep.java 20 import android.nfc.Tag;
28 * Provides access to ISO-DEP (ISO 14443-4) properties and I/O operations on a {@link Tag}.
33 * <p>Tags that enumerate the {@link IsoDep} technology in {@link Tag#getTechList}
41 private static final String TAG = "NFC";
52 * Get an instance of {@link IsoDep} for the given tag.
54 * <p>Returns null if {@link IsoDep} was not enumerated in {@link Tag#getTechList}.
55 * This indicates the tag does not support ISO-DEP.
57 * @param tag an ISO-DEP compatible tag
60 public static IsoDep get(Tag tag)
    [all...]
NfcA.java 20 import android.nfc.Tag;
28 * Provides access to NFC-A (ISO 14443-3A) properties and I/O operations on a {@link Tag}.
38 private static final String TAG = "NFC";
49 * Get an instance of {@link NfcA} for the given tag.
50 * <p>Returns null if {@link NfcA} was not enumerated in {@link Tag#getTechList}.
51 * This indicates the tag does not support NFC-A.
54 * @param tag an NFC-A compatible tag
57 public static NfcA get(Tag tag) {
    [all...]
NfcF.java 20 import android.nfc.Tag;
28 * Provides access to NFC-F (JIS 6319-4) properties and I/O operations on a {@link Tag}.
38 private static final String TAG = "NFC";
49 * Get an instance of {@link NfcF} for the given tag.
50 * <p>Returns null if {@link NfcF} was not enumerated in {@link Tag#getTechList}.
51 * This indicates the tag does not support NFC-F.
54 * @param tag an NFC-F compatible tag
57 public static NfcF get(Tag tag) {
    [all...]
  /frameworks/native/libs/utils/
Log.cpp 24 LogIfSlow::LogIfSlow(const char* tag, android_LogPriority priority,
26 mTag(tag), mPriority(priority), mTimeoutMillis(timeoutMillis), mMessage(message),
  /system/core/include/cutils/
logd.h 41 int __android_log_bwrite(int32_t tag, const void *payload, size_t len);
42 int __android_log_btwrite(int32_t tag, char type, const void *payload,
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifParser.java 46 * ExifTag tag = parser.getTag();
47 * if (!tag.hasValue()) {
48 * parser.registerForTagValue(tag);
50 * processTag(tag);
54 * tag = parser.getTag();
55 * if (tag.getDataType() != ExifTag.TYPE_UNDEFINED) {
56 * processTag(tag);
64 * void processTag(ExifTag tag) {
65 * // process the tag as you like.
71 private static final String TAG = "ExifParser"
548 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, local
901 ExifTag tag; field in class:ExifParser.ExifTagEvent
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera3.h 106 /** Tag query methods */
107 virtual const char *getVendorSectionName(uint32_t tag);
109 virtual const char *getVendorTagName(uint32_t tag);
111 virtual int getVendorTagType(uint32_t tag);
151 uint32_t tag);
154 uint32_t tag);
157 uint32_t tag);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERGenerator.java 38 int tag)
41 _out.write(tag);
46 int tag)
56 writeHdr(tag);
60 if ((tag & BERTags.CONSTRUCTED) != 0)
72 writeHdr(tag);
94 if (_tagged && _isExplicit) // write extra end for tag header
  /external/chromium/chrome/browser/
spellcheck_message_filter.cc 39 int tag,
41 *correct = SpellCheckerPlatform::CheckSpelling(word, tag);
50 void SpellCheckMessageFilter::OnGetDocumentTag(int* tag) {
51 *tag = SpellCheckerPlatform::GetDocumentTag();
54 void SpellCheckMessageFilter::OnDocumentWithTagClosed(int tag) {
55 SpellCheckerPlatform::CloseDocumentWithTag(tag);
  /external/elfutils/backends/
ppc64_symbol.c 61 ppc64_dynamic_tag_name (int64_t tag, char *buf __attribute__ ((unused)),
64 switch (tag)
80 ppc64_dynamic_tag_check (int64_t tag)
82 return (tag == DT_PPC64_GLINK
83 || tag == DT_PPC64_OPD
84 || tag == DT_PPC64_OPDSZ);
  /external/harfbuzz_ng/src/hb-icu-le/
FontTableCache.cpp 18 LETag tag; member in struct:FontTableCacheEntry
33 fTableCache[i].tag = 0;
43 fTableCache[i].tag = 0;
60 if (fTableCache[i].tag == tableTag) {
80 fTableCache[i].tag = 0;
87 fTableCache[fTableCacheCurr].tag = tableTag;
  /external/icu4c/samples/layout/
FontTableCache.cpp 17 LETag tag; member in struct:FontTableCacheEntry
32 fTableCache[i].tag = 0;
42 fTableCache[i].tag = 0;
60 if (fTableCache[i].tag == tableTag) {
80 fTableCache[i].tag = 0;
87 fTableCache[fTableCacheCurr].tag = tableTag;
  /external/icu4c/test/letest/
FontTableCache.cpp 18 LETag tag; member in struct:FontTableCacheEntry
33 fTableCache[i].tag = 0;
43 fTableCache[i].tag = 0;
60 if (fTableCache[i].tag == tableTag) {
80 fTableCache[i].tag = 0;
87 fTableCache[fTableCacheCurr].tag = tableTag;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BaseDescriptor.java 25 abstract aligned(8) expandable(228-1) class BaseDescriptor : bit(8) tag=0 {
40 int tag; field in class:BaseDescriptor
48 return tag;
53 + 1//1 for the tag
65 public final void parse(int tag, ByteBuffer bb) throws IOException {
66 this.tag = tag;
94 sb.append("{tag=").append(tag);
  /external/oprofile/libutil++/
xml_output.cpp 22 string tag_name(tag_t tag)
25 out << xml_tag_name(tag);
30 string open_element(tag_t tag, bool with_attrs)
35 open_xml_element(tag, with_attrs, buf, MAX_XML_BUF);
41 string close_element(tag_t tag, bool has_nested)
46 close_xml_element(tag, has_nested, buf, MAX_XML_BUF);
  /packages/apps/Mms/src/com/android/mms/model/
RegionMediaModel.java 29 public RegionMediaModel(Context context, String tag, Uri uri,
31 this(context, tag, null, null, uri, region);
34 public RegionMediaModel(Context context, String tag, String contentType,
36 super(context, tag, contentType, src, uri);
40 public RegionMediaModel(Context context, String tag, String contentType,
42 super(context, tag, contentType, src, data);
  /bootable/recovery/tools/ota/
add-property-tag.c 26 * Append a tag to a property value in a .prop file if it isn't already there.
30 // Return nonzero if the tag should be added to this line.
45 int remove_tag(char *line, const char *tag) {
46 char *pos = strstr(line, tag);
50 int num = strtoul(pos + strlen(tag), &end, 10);
55 // Write line to output with the tag added, adding a number (if >0)
56 void write_tagged(FILE *out, const char *line, const char *tag, int number) {
60 fprintf(out, "%.*s%s%d%s", end - line, line, tag, number, end);
62 fprintf(out, "%.*s%s%s", end - line, line, tag, end);
69 const char *tag = NULL local
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerProcessErrorStateInfoTest.java 44 String tag = "tag"; local
52 mErrorStateInfo.tag = tag;
66 assertEquals(tag, values.tag);
78 String tag = "tag"; local
86 mErrorStateInfo.tag = tag;
    [all...]

Completed in 1575 milliseconds

1 2 3 4 5 67 8 91011>>