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

1 2 3 4 5 6 7 8

  /frameworks/base/core/java/android/nfc/
Tag.aidl 19 parcelable Tag
INfcAdapter.aidl 22 import android.nfc.Tag;
47 void dispatch(in Tag tag);
INfcTag.aidl 20 import android.nfc.Tag;
41 Tag rediscover(int nativehandle);
  /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/utils/TableGen/
ClangCommentCommandInfoEmitter.cpp 29 Record &Tag = *Tags[i];
31 << "\"" << Tag.getValueAsString("Name") << "\", "
32 << "\"" << Tag.getValueAsString("EndCommandName") << "\", "
34 << Tag.getValueAsInt("NumArgs") << ", "
35 << Tag.getValueAsBit("IsInlineCommand") << ", "
36 << Tag.getValueAsBit("IsBlockCommand") << ", "
37 << Tag.getValueAsBit("IsBriefCommand") << ", "
38 << Tag.getValueAsBit("IsReturnsCommand") << ", "
39 << Tag.getValueAsBit("IsParamCommand") << ", "
40 << Tag.getValueAsBit("IsTParamCommand") << ",
    [all...]
ClangCommentHTMLTagsEmitter.cpp 1 //===--- ClangCommentHTMLTagsEmitter.cpp - Generate HTML tag list for Clang -=//
23 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
27 Record &Tag = **I;
28 std::string Spelling = Tag.getValueAsString("Spelling");
42 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
47 Record &Tag = **I;
48 std::string Spelling = Tag.getValueAsString("Spelling");
50 if (Tag.getValueAsBit("EndTagOptional"))
52 if (Tag.getValueAsBit("EndTagForbidden"))
  /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/ASTMatchers/
ASTTypeTraits.h 59 return BaseConverter<T>::get(Tag, Storage.buffer);
78 } Tag;
90 static const T *get(NodeTypeTag Tag, const char Storage[]) {
91 if (Tag == NT_Decl)
97 Result.Tag = NT_Decl;
104 static const T *get(NodeTypeTag Tag, const char Storage[]) {
105 if (Tag == NT_Stmt)
111 Result.Tag = NT_Stmt;
117 static const QualType *get(NodeTypeTag Tag, const char Storage[]) {
118 if (Tag == NT_QualType
    [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}.
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.
160 * Get the {@link Tag} object backing this {@link TagTechnology} object.
161 * @return the {@link Tag} backing this {@link TagTechnology} object.
163 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/lib/CodeGen/
LiveIntervalUnion.h 63 unsigned Tag; // unique tag for current contents.
67 explicit LiveIntervalUnion(Allocator &a) : Tag(0), Segments(a) {}
81 /// getTag - Return an opaque tag representing the current state of the union.
82 unsigned getTag() const { return Tag; }
84 /// changedSince - Return true if the union change since getTag returned tag.
85 bool changedSince(unsigned tag) const { return tag != Tag; }
94 void clear() { Segments.clear(); ++Tag; }
    [all...]
  /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/llvm/include/llvm/CodeGen/
RegisterClassInfo.h 29 unsigned Tag;
34 RCInfo() : Tag(0), NumRegs(0), ProperSubClass(false) {}
43 // Tag changes whenever cached information needs to be recomputed. An RCInfo
44 // entry is valid when its tag matches.
45 unsigned Tag;
66 if (Tag != RCI.Tag)
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 157 /// will not be changed, but the new node will have the checker's tag.
158 /// @param Tag The tag is used to uniquely identify the creation site. If no
159 /// tag is specified, a default tag, unique to the given checker,
163 const ProgramPointTag *Tag = 0) {
164 return addTransitionImpl(State ? State : getState(), false, 0, Tag);
173 /// @param Tag The tag to uniquely identify the creation site.
176 const ProgramPointTag *Tag = 0)
    [all...]
  /external/llvm/lib/VMCore/
Use.cpp 56 unsigned Tag = (Current++)->Prev.getInt();
57 switch (Tag) {
66 unsigned Tag = Current->Prev.getInt();
67 switch (Tag) {
71 Offset = (Offset << 1) + Tag;

Completed in 585 milliseconds

1 2 3 4 5 6 7 8