HomeSort by relevance Sort by last modified time
    Searched refs:Tag (Results 51 - 75 of 1251) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/utils/TableGen/
ClangCommentHTMLTagsEmitter.cpp 1 //===--- ClangCommentHTMLTagsEmitter.cpp - Generate HTML tag list for Clang -=//
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
26 for (Record *Tag : Tags) {
27 Matches.emplace_back(Tag->getValueAsString("Spelling"), "return true;");
30 emitSourceFileHeader("HTML tag name matcher", OS);
40 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
43 for (Record *Tag : Tags) {
44 std::string Spelling = Tag->getValueAsString("Spelling");
46 if (Tag->getValueAsBit("EndTagOptional"))
48 if (Tag->getValueAsBit("EndTagForbidden")
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
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...]
  /system/keymaster/include/keymaster/
keymaster_tags.h 25 * example, it's an error to create a keymaster_param_t with tag == KM_TAG_PURPOSE and then to
32 * TypedTag and TypedEnumTag. These classes are templated on a tag type and a tag value, and in the
34 * keymaster tag, associating the tag type with the tag, and an instance of each specialization is
35 * created, and named the same as the keymaster tag, but with the KM_ prefix omitted. Because the
40 * particular tag. This enables template functions to be written that check that the correct
41 * parameter type is used for a given tag, and that use the correct union entry for the tag type.
    [all...]
authorization_set.h 186 * Returns the offset of the next entry that matches \p tag, starting from the element after \p
189 int find(keymaster_tag_t tag, int begin = -1) const;
218 * Returns true if the set contains at least one instance of \p tag
220 bool Contains(keymaster_tag_t tag) const {
221 return find(tag) != -1;
225 * Returns the number of \p tag entries.
227 size_t GetTagCount(keymaster_tag_t tag) const;
230 * Returns true if the set contains the specified tag and value.
232 template <keymaster_tag_t Tag, typename T>
233 bool Contains(TypedEnumTag<KM_ENUM_REP, Tag, T> tag, T val) const
    [all...]
  /system/security/keystore/
keymaster_enforcement.cpp 148 switch (auth_set[pos].tag) {
149 case Tag::NO_AUTH_REQUIRED:
150 case Tag::AUTH_TIMEOUT:
154 case Tag::USER_AUTH_TYPE:
197 switch (auth_set[pos].tag) {
198 case Tag::AUTH_TIMEOUT:
201 case Tag::USER_AUTH_TYPE:
204 case Tag::NO_AUTH_REQUIRED:
227 if (int32_t(param.tag) == KM_TAG_PADDING_OLD || int32_t(param.tag) == KM_TAG_DIGEST_OLD
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 90 void ARMAttributeParser::IntegerAttribute(AttrType Tag, const uint8_t *Data,
92 SW.printNumber(ARMBuildAttrs::AttrTypeAsString(Tag),
96 void ARMAttributeParser::StringAttribute(AttrType Tag, const uint8_t *Data,
98 StringRef TagName = ARMBuildAttrs::AttrTypeAsString(Tag, /*TagPrefix*/false);
101 SW.printNumber("Tag", Tag);
107 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value,
109 StringRef TagName = ARMBuildAttrs::AttrTypeAsString(Tag, /*TagPrefix*/false);
112 SW.printNumber("Tag", Tag);
    [all...]
  /external/llvm/include/llvm/Support/
GCOV.h 102 /// readFunctionTag - If cursor points to a function tag then increment the
105 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor + 4);
106 if (Tag.empty() || Tag[0] != '\0' || Tag[1] != '\0' || Tag[2] != '\0' ||
107 Tag[3] != '\1') {
114 /// readBlockTag - If cursor points to a block tag then increment the
117 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor + 4);
118 if (Tag.empty() || Tag[0] != '\0' || Tag[1] != '\0' || Tag[2] != '\x41' |
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ResolverTest.java 33 import org.yaml.snakeyaml.nodes.Tag;
43 yaml.addImplicitResolver(new Tag(Tag.PREFIX + "Phone"), regexp, "0123456789");
64 yaml.addImplicitResolver(new Tag(Tag.PREFIX + "Phone"), regexp, "\0");
67 yaml.addImplicitResolver(new Tag(Tag.PREFIX + "Point"), regexp2, null);
109 return representScalar(new Tag(Tag.PREFIX + "Phone"), value);
116 this.yamlConstructors.put(new Tag(Tag.PREFIX + "Phone"), new ConstructPhone())
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
Log.java 21 * All Camera logging using this class will use this tag prefix.
26 * adb shell setprop log.tag.CAM2PORT_ VERBOSE
27 * adb shell setprop log.tag.CAM2PORT_ ""
30 private static final Log.Tag TAG = new Log.Tag("Log");
33 * This class restricts the length of the log tag to be less than the
34 * framework limit and also prepends the common tag prefix defined by
37 public static final class Tag {
44 public Tag(String tag)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveIntervalUnion.h 66 unsigned Tag; // unique tag for current contents.
70 LiveIntervalUnion(unsigned r, Allocator &a) : RepReg(r), Tag(0), Segments(a)
85 /// getTag - Return an opaque tag representing the current state of the union.
86 unsigned getTag() const { return Tag; }
88 /// changedSince - Return true if the union change since getTag returned tag.
89 bool changedSince(unsigned tag) const { return tag != Tag; }
98 void clear() { Segments.clear(); ++Tag; }
    [all...]
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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues005Test.java 57 * JDWP tag with null value.
111 JDWPConstants.Tag.ARRAY_TAG,
112 JDWPConstants.Tag.ARRAY_TAG,
113 JDWPConstants.Tag.OBJECT_TAG,
114 JDWPConstants.Tag.STRING_TAG,
115 JDWPConstants.Tag.THREAD_TAG,
116 JDWPConstants.Tag.THREAD_GROUP_TAG,
117 JDWPConstants.Tag.CLASS_OBJECT_TAG,
118 JDWPConstants.Tag.CLASS_LOADER_TAG,
126 logWriter.println("=> Returned value tag = " + fieldTa
    [all...]
GetValues002Test.java 124 JDWPConstants.Tag.LONG_TAG,
125 JDWPConstants.Tag.INT_TAG,
126 JDWPConstants.Tag.OBJECT_TAG,
127 JDWPConstants.Tag.OBJECT_TAG,
128 JDWPConstants.Tag.BOOLEAN_TAG,
129 JDWPConstants.Tag.BYTE_TAG,
130 JDWPConstants.Tag.CHAR_TAG,
131 JDWPConstants.Tag.SHORT_TAG,
132 JDWPConstants.Tag.FLOAT_TAG,
133 JDWPConstants.Tag.DOUBLE_TAG
    [all...]
GetValuesTest.java 109 JDWPConstants.Tag.INT_TAG,
110 JDWPConstants.Tag.LONG_TAG,
111 JDWPConstants.Tag.OBJECT_TAG,
112 JDWPConstants.Tag.STRING_TAG,
113 JDWPConstants.Tag.ARRAY_TAG,
120 logWriter.println("=> Returned value tag = " + fieldTag
121 + "(" + JDWPConstants.Tag.getName(fieldTag) + ")");
123 assertEquals("Invalid value tag is returned,", expectedFieldTags[k], fieldTag
124 , JDWPConstants.Tag.getName(expectedFieldTags[k])
125 , JDWPConstants.Tag.getName(fieldTag))
    [all...]
  /external/llvm/utils/TableGen/
CTagsEmitter.cpp 29 class Tag {
34 Tag(const std::string &Name, const SMLoc Location)
36 int operator<(const Tag &B) const { return *Id < *B.Id; }
68 std::vector<Tag> Tags;
72 Tags.push_back(Tag(C.first, locate(C.second.get())));
74 Tags.push_back(Tag(D.first, locate(D.second.get())));
79 for (const Tag &T : Tags)
  /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/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ICUTagletAdapter.java 12 import com.sun.javadoc.Tag;
26 public abstract String toString(Tag tag);
28 public abstract String toString(Tag[] tags);
30 public Content getTagletOutput(Tag tag, TagletWriter writer)
34 String encodedText = toString(tag);
47 Tag[] tags = holder.tags(getName());
  /external/icu/icu4j/tools/build/src-pre8/com/ibm/icu/dev/tool/docs/
ICUTagletAdapter.java 12 import com.sun.javadoc.Tag;
25 public abstract String toString(Tag tag);
27 public abstract String toString(Tag[] tags);
29 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer)
33 out.setOutput(toString(tag));
41 Tag[] tags = holder.tags(getName());
  /external/llvm/include/llvm/CodeGen/
RegisterClassInfo.h 28 unsigned Tag;
36 : Tag(0), NumRegs(0), ProperSubClass(false), MinCost(0),
47 // Tag changes whenever cached information needs to be recomputed. An RCInfo
48 // entry is valid when its tag matches.
49 unsigned Tag;
72 if (Tag != RCI.Tag)
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Node.java 34 private Tag tag; field in class:Node
40 * true when the tag is assigned by the resolver
45 public Node(Tag tag, Mark startMark, Mark endMark) {
46 setTag(tag);
56 * Tag of this node.
58 * Every node has a tag assigned. The tag is either local or global.
60 * @return Tag of this node
    [all...]
  /packages/apps/Camera2/src/com/android/camera/debug/
Log.java 25 * All Camera logging using this class will use this tag prefix.
30 * adb shell setprop log.tag.CAM_ VERBOSE
31 * adb shell setprop log.tag.CAM_ ""
34 private static final Log.Tag TAG = new Log.Tag("Log");
39 * This class restricts the length of the log tag to be less than the
40 * framework limit and also prepends the common tag prefix defined by
43 public static final class Tag {
50 public Tag(String tag)
    [all...]
  /external/llvm/test/tools/llvm-readobj/ARM/
attribute-2.s 6 @CHECK-OBJ: Tag: 6
13 @CHECK-OBJ: Tag: 9
20 @CHECK-OBJ: Tag: 10
27 @CHECK-OBJ: Tag: 11
34 @CHECK-OBJ: Tag: 12
41 @CHECK-OBJ: Tag: 13
48 @CHECK-OBJ: Tag: 14
55 @CHECK-OBJ: Tag: 15
62 @CHECK-OBJ: Tag: 16
69 @CHECK-OBJ: Tag: 1
    [all...]
  /external/llvm/test/MC/ARM/
directive-eabi_attribute.s 13 @ CHECK-OBJ: Tag: 67
18 @ CHECK-OBJ: Tag: 4
23 @ CHECK-OBJ: Tag: 5
28 @ CHECK-OBJ: Tag: 6
34 @ CHECK-OBJ: Tag: 7
40 @ CHECK-OBJ: Tag: 8
46 @ CHECK-OBJ: Tag: 9
52 @ CHECK-OBJ: Tag: 10
58 @ CHECK-OBJ: Tag: 11
64 @ CHECK-OBJ: Tag: 1
    [all...]
  /frameworks/base/core/java/android/nfc/tech/
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...]

Completed in 1027 milliseconds

1 23 4 5 6 7 8 91011>>