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

1 2 3

  /frameworks/base/core/java/android/nfc/
Tag.aidl 19 parcelable Tag
Tag.java 37 * Represents an NFC tag that has been discovered.
39 * {@link Tag} is an immutable object that represents the state of a NFC tag at
45 * A new tag object is created every time a tag is discovered (comes into range), even
46 * if it is the same physical tag. If a tag is removed and then returned into range, then
47 * only the most recent tag object can be successfully used to create a {@link TagTechnology}.
49 * <h3>Tag Dispatch</h3>
50 * When a tag is discovered, a {@link Tag} object is created and passed to
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 7 * $Id: Tag.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
18 abstract class Tag implements IContent
22 public static final Tag HTML = new TagImpl ("HTML");
23 public static final Tag HEAD = new TagImpl ("HEAD");
24 public static final Tag BODY = new TagImpl ("BODY");
25 public static final Tag META = new TagImpl ("META");
26 public static final Tag STYLE = new TagImpl ("STYLE");
28 public static final Tag TITLE = new TagImpl ("TITLE");
29 public static final Tag H1 = new TagImpl ("H1");
30 public static final Tag H2 = new TagImpl ("H2")
    [all...]
ISimpleElement.java 22 Tag getTag ();
28 public static ISimpleElement create (final Tag tag)
30 return new SimpleElementImpl (tag, AttributeSet.create ());
33 public static ISimpleElement create (final Tag tag, final AttributeSet attrs)
35 return new SimpleElementImpl (tag, attrs);
45 public Tag getTag ()
79 SimpleElementImpl (final Tag tag, final AttributeSet attrs
    [all...]
HTMLDocument.java 30 super (Tag.HTML, AttributeSet.create ());
32 super.add (m_head = IElement.Factory.create (Tag.HEAD));
33 super.add (m_body = IElement.Factory.create (Tag.BODY));
38 final ISimpleElement meta = ISimpleElement.Factory.create (Tag.META);
52 final IElement titleElement = IElement.Factory.create (Tag.TITLE).setText (title, false);
120 final IElement style = IElement.Factory.create (Tag.STYLE);
140 final ISimpleElement link = ISimpleElement.Factory.create (Tag.LINK);
153 final Tag Hl = Tag.Hs [level];
164 final Tag Hl = Tag.Hs [level]
    [all...]
HTMLTable.java 34 super (Tag.TABLE, AttributeSet.create ());
48 m_caption = IElement.Factory.create (Tag.CAPTION);
97 Cell (Tag tag)
99 super (tag, AttributeSet.create ());
110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD);
118 super (Tag.TR, AttributeSet.create ());
HyperRef.java 21 super (Tag.A, AttributeSet.create ());
IElement.java 28 public static IElement create (final Tag tag)
30 return new ElementImpl (tag, AttributeSet.create ());
33 public static IElement create (final Tag tag, final AttributeSet attrs)
35 return new ElementImpl (tag, attrs);
110 ElementImpl (final Tag tag, final AttributeSet attrs)
112 super (tag, attrs);
  /frameworks/base/core/java/android/nfc/tech/
TagTechnology.java 19 import android.nfc.Tag;
25 * {@link TagTechnology} is an interface to a technology in a {@link Tag}.
49 * Android device will never enumerate that class via {@link Tag#getTechList}.
54 * is capable of formatting. Proprietary knowledge is often required to format a tag
62 * properties of the tag, as determined at discovery time. These methods will never
64 * They also never update, for example if a property is changed by an I/O operation with a tag
65 * then the cached getter will still return the result from tag discovery time.
151 * Get the {@link Tag} object backing this {@link TagTechnology} object.
152 * @return the {@link Tag} backing this {@link TagTechnology} object.
154 public Tag getTag()
    [all...]
NfcA.java 19 import android.nfc.Tag;
26 * Provides access to NFC-A (ISO 14443-3A) properties and I/O operations on a {@link Tag}.
45 * Get an instance of {@link NfcA} for the given tag.
46 * <p>Returns null if {@link NfcA} was not enumerated in {@link Tag#getTechList}.
47 * This indicates the tag does not support NFC-A.
50 * @param tag an NFC-A compatible tag
53 public static NfcA get(Tag tag) {
54 if (!tag.hasTech(TagTechnology.NFC_A)) return null
    [all...]
NfcB.java 19 import android.nfc.Tag;
26 * Provides access to NFC-B (ISO 14443-3B) properties and I/O operations on a {@link Tag}.
45 * Get an instance of {@link NfcB} for the given tag.
46 * <p>Returns null if {@link NfcB} was not enumerated in {@link Tag#getTechList}.
47 * This indicates the tag does not support NFC-B.
50 * @param tag an NFC-B compatible tag
53 public static NfcB get(Tag tag) {
54 if (!tag.hasTech(TagTechnology.NFC_B)) return null
    [all...]
NfcF.java 19 import android.nfc.Tag;
26 * Provides access to NFC-F (JIS 6319-4) properties and I/O operations on a {@link Tag}.
45 * Get an instance of {@link NfcF} for the given tag.
46 * <p>Returns null if {@link NfcF} was not enumerated in {@link Tag#getTechList}.
47 * This indicates the tag does not support NFC-F.
50 * @param tag an NFC-F compatible tag
53 public static NfcF get(Tag tag) {
54 if (!tag.hasTech(TagTechnology.NFC_F)) return null
    [all...]
NfcV.java 19 import android.nfc.Tag;
26 * Provides access to NFC-V (ISO 15693) properties and I/O operations on a {@link Tag}.
46 * Get an instance of {@link NfcV} for the given tag.
47 * <p>Returns null if {@link NfcV} was not enumerated in {@link Tag#getTechList}.
48 * This indicates the tag does not support NFC-V.
51 * @param tag an NFC-V compatible tag
54 public static NfcV get(Tag tag) {
55 if (!tag.hasTech(TagTechnology.NFC_V)) return null
    [all...]
IsoDep.java 19 import android.nfc.Tag;
27 * Provides access to ISO-DEP (ISO 14443-4) properties and I/O operations on a {@link Tag}.
32 * <p>Tags that enumerate the {@link IsoDep} technology in {@link Tag#getTechList}
40 private static final String TAG = "NFC";
51 * Get an instance of {@link IsoDep} for the given tag.
53 * <p>Returns null if {@link IsoDep} was not enumerated in {@link Tag#getTechList}.
54 * This indicates the tag does not support ISO-DEP.
56 * @param tag an ISO-DEP compatible tag
59 public static IsoDep get(Tag tag)
    [all...]
MifareUltralight.java 19 import android.nfc.Tag;
28 * Provides access to MIFARE Ultralight properties and I/O operations on a {@link Tag}.
33 * The primary operations on an Ultralight tag are {@link #readPages} and
50 * {@link MifareUltralight} will never be enumerated in {@link Tag#getTechList}.
52 * In either case, {@link NfcA} will also be enumerated on the tag,
59 /** A MIFARE Ultralight compatible tag of unknown type */
61 /** A MIFARE Ultralight tag */
63 /** A MIFARE Ultralight C tag */
75 * Get an instance of {@link MifareUltralight} for the given tag.
77 * {@link Tag#getTechList} - this indicates the tag is not MIFAR
    [all...]
NdefFormatable.java 24 import android.nfc.Tag;
32 * Provide access to NDEF format operations on a {@link Tag}.
48 private static final String TAG = "NFC";
51 * Get an instance of {@link NdefFormatable} for the given tag.
53 * <p>Returns null if {@link NdefFormatable} was not enumerated in {@link Tag#getTechList}.
54 * This indicates the tag is not NDEF formatable by this Android device.
56 * @param tag an NDEF formatable tag
59 public static NdefFormatable get(Tag tag) {
    [all...]
BasicTagTechnology.java 20 import android.nfc.Tag;
29 * A base class for tag technologies that are built on top of transceive().
32 private static final String TAG = "NFC";
34 /*package*/ final Tag mTag;
38 BasicTagTechnology(Tag tag, int tech) throws RemoteException {
39 mTag = tag;
44 public Tag getTag() {
65 Log.e(TAG, "NFC service dead", e);
77 // Store this in the tag objec
    [all...]
  /external/jhead/
makernote.c 38 int Tag, Format, Components;
44 Tag = Get16u(DirEntry);
50 ErrNonfatal("Illegal number format %d for tag %04x", Format, Tag);
55 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag);
67 ErrNonfatal("Illegal value pointer for tag %04x", Tag,0);
73 printf("Map: %05d-%05d: Data for makernote tag %04x\n",OffsetVal, OffsetVal+ByteCount, Tag);
    [all...]
gpsinfo.c 69 int IsGpsTag(const char* tag) {
70 return strstr(tag, "GPS") == tag;
73 TagTable_t* GpsTagToTagTableEntry(unsigned short tag)
77 if (GpsTags[i].Tag == tag) {
78 printf("found tag %d", tag);
81 printf("tag %s format not defined", GpsTags[i].Desc);
87 printf("tag %d NOT FOUND", tag)
    [all...]
exif.c 82 // Describes tag values
306 printf("found tag %s val %d", TagTable[i].Desc, TagTable[i].Tag);
307 return TagTable[i].Tag;
310 printf("tag %s NOT FOUND", tagName);
509 int Tag, Format, Components;
515 Tag = Get16u(DirEntry);
521 ErrNonfatal("Illegal number format %d for tag %04x", Format, Tag);
526 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag)
    [all...]
  /packages/apps/Tag/tests/
Android.mk 12 LOCAL_INSTRUMENTATION_FOR := Tag
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/basic_tree_policy/
traits.hpp 61 class Tag,
73 class Tag,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/
priority_queue.hpp 53 typename Tag = pairing_heap_tag,
56 : public detail::priority_queue_base_dispatch<Value_Type,Cmp_Fn,Tag,Allocator>::type
59 typedef typename detail::priority_queue_base_dispatch<Value_Type,Cmp_Fn,Tag,Allocator>::type base_type;
64 typedef Tag container_category;
assoc_container.hpp 53 detail::container_base_dispatch<Key, Mapped, Tag, Policy_Tl, Allocator>::type
58 typename Tag,
67 typedef Tag container_category;
115 container_base<Key, Mapped, Tag, typename __gnu_cxx::typelist::append< \
125 typename Tag,
456 container_base<Key, Mapped, Tag, Policy_Tl, Allocator>
459 template<typename Key, typename Mapped, typename Tag,
482 detail::tree_traits<Key, Mapped,Cmp_Fn,Node_Update,Tag, Allocator>
485 basic_tree<Key,Mapped,Tag,typename PB_DS_TREE_NODE_AND_IT_TRAITS_C_DEC::node_update, \
490 typename Tag = rb_tree_tag
    [all...]
  /packages/apps/Tag/
Android.mk 11 LOCAL_PACKAGE_NAME := Tag

Completed in 109 milliseconds

1 2 3