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

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/android/nfc/
Tag.aidl 19 parcelable Tag
  /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 ());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
TagTester.java 19 import android.nfc.Tag;
21 /** Tag tester that writes data to the tag and returns a way to confirm a successful write. */
24 /** @return true if the tag is testable by this {@link TagTester} */
25 boolean isTestableTag(Tag tag);
27 /** Writes some data to the tag and returns a {@link TagVerifier} to confirm it. */
28 TagVerifier writeTag(Tag tag) throws Exception;
TagVerifier.java 20 import android.nfc.Tag;
24 /** Tag verifier for checking that the {@link Tag} has some expected value. */
27 /** @return true if the tag has the expected value */
28 Result verifyTag(Tag tag) throws FormatException, IOException;
30 /** Class with info necessary to show the user what was written and read from a tag. */
45 /** @return {@link CharSequence} representation of the data written to the tag */
50 /** @return {@link CharSequence} representation of the data read back from the tag */
55 /** @return whether or not the expected content matched the actual content of the tag */
    [all...]
MifareUltralightTagTester.java 19 import android.nfc.Tag;
28 * tag's first user page and verifies that it matches when scanned later.
37 public boolean isTestableTag(Tag tag) {
38 if (tag != null) {
39 for (String tech : tag.getTechList()) {
49 public TagVerifier writeTag(Tag tag) throws IOException {
51 MifareUltralight ultralight = MifareUltralight.get(tag);
66 public Result verifyTag(Tag tag) throws IOException
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-enum-class.cpp 20 enum class Tag {
24 auto t = Tag::test;
26 Tag tag() const { return static_cast<Tag>(1); } function in class:A::B::PR14029::Test::Tag
  /external/clang/utils/TableGen/
ClangCommentCommandInfoEmitter.cpp 31 Record &Tag = *Tags[i];
33 << "\"" << Tag.getValueAsString("Name") << "\", "
34 << "\"" << Tag.getValueAsString("EndCommandName") << "\", "
36 << Tag.getValueAsInt("NumArgs") << ", "
37 << Tag.getValueAsBit("IsInlineCommand") << ", "
38 << Tag.getValueAsBit("IsBlockCommand") << ", "
39 << Tag.getValueAsBit("IsBriefCommand") << ", "
40 << Tag.getValueAsBit("IsReturnsCommand") << ", "
41 << Tag.getValueAsBit("IsParamCommand") << ", "
42 << Tag.getValueAsBit("IsTParamCommand") << ",
    [all...]
ClangCommentHTMLTagsEmitter.cpp 1 //===--- ClangCommentHTMLTagsEmitter.cpp - Generate HTML tag list for Clang -=//
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
28 Record &Tag = **I;
29 std::string Spelling = Tag.getValueAsString("Spelling");
33 emitSourceFileHeader("HTML tag name matcher", OS);
43 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
48 Record &Tag = **I;
49 std::string Spelling = Tag.getValueAsString("Spelling");
51 if (Tag.getValueAsBit("EndTagOptional"))
53 if (Tag.getValueAsBit("EndTagForbidden")
    [all...]
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 57 Record &Tag = **I;
58 std::string Spelling = Tag.getValueAsString("Spelling");
59 uint64_t CodePoint = Tag.getValueAsInt("CodePoint");
63 SrcMgr.PrintMessage(Tag.getLoc().front(),
  /external/llvm/include/llvm/Support/
GCOV.h 63 /// readFunctionTag - If cursor points to a function tag then increment the
66 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
67 if (Tag.empty() ||
68 Tag[0] != '\0' || Tag[1] != '\0' ||
69 Tag[2] != '\0' || Tag[3] != '\1') {
76 /// readBlockTag - If cursor points to a block tag then increment the
79 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
80 if (Tag.empty() ||
    [all...]
  /external/clang/include/clang/AST/
ASTTypeTraits.h 60 return BaseConverter<T>::get(Tag, Storage.buffer);
83 } Tag;
99 static const T *get(NodeTypeTag Tag, const char Storage[]) {
100 if (Tag == NT_Decl)
106 Result.Tag = NT_Decl;
113 static const T *get(NodeTypeTag Tag, const char Storage[]) {
114 if (Tag == NT_Stmt)
120 Result.Tag = NT_Stmt;
127 static const T *get(NodeTypeTag Tag, const char Storage[]) {
128 if (Tag == NT_Type
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 23 uint32_t Tag;
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
32 uint32_t getTag() const { return Tag; }
45 bool isValid() const { return Code != 0 && Tag != 0; }
  /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}.
55 * is capable of formatting. Proprietary knowledge is often required to format a tag
63 * properties of the tag, as determined at discovery time. These methods will never
65 * They also never update, for example if a property is changed by an I/O operation with a tag
66 * then the cached getter will still return the result from tag discovery time.
161 * Get the {@link Tag} object backing this {@link TagTechnology} object.
162 * @return the {@link Tag} backing this {@link TagTechnology} object.
164 public Tag getTag()
    [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...]
NfcBarcode.java 19 import android.nfc.Tag;
41 * Get an instance of {@link NfcBarcode} for the given tag.
43 * <p>Returns null if {@link NfcBarcode} was not enumerated in {@link Tag#getTechList}.
47 * @param tag an NfcBarcode compatible tag
50 public static NfcBarcode get(Tag tag) {
51 if (!tag.hasTech(TagTechnology.NFC_BARCODE)) return null;
53 return new NfcBarcode(tag);
63 public NfcBarcode(Tag tag) throws RemoteException
    [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...]
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 62 unsigned Tag; // unique tag for current contents.
66 explicit LiveIntervalUnion(Allocator &a) : Tag(0), Segments(a) {}
80 /// getTag - Return an opaque tag representing the current state of the union.
81 unsigned getTag() const { return Tag; }
83 /// changedSince - Return true if the union change since getTag returned tag.
84 bool changedSince(unsigned tag) const { return tag != Tag; }
93 void clear() { Segments.clear(); ++Tag; }
    [all...]
RegisterClassInfo.h 29 unsigned Tag;
37 : Tag(0), NumRegs(0), ProperSubClass(false), MinCost(0),
48 // Tag changes whenever cached information needs to be recomputed. An RCInfo
49 // entry is valid when its tag matches.
50 unsigned Tag;
71 if (Tag != RCI.Tag)
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprof.java 62 public static enum Tag {
79 public final byte tag; field in class:BinaryHprof.Tag
91 private Tag(int tag, int size) {
92 this.tag = (byte) tag;
104 private static final Map<Byte, Tag> BYTE_TO_TAG
105 = new HashMap<Byte, Tag>();
108 for (Tag v : Tag.values())
    [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...]
  /external/harfbuzz_ng/src/
hb-ot-hmtx-table.hh 53 static const hb_tag_t Tag = HB_OT_TAG_hmtx;
hb-ot-maxp-table.hh 44 static const hb_tag_t Tag = HB_OT_TAG_maxp;

Completed in 848 milliseconds

1 2 3 4 5 6 7 8 910