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

1 2 3

  /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"))
  /build/tools/
event_log_tags.py 20 class Tag(object):
79 tag = None
82 tag = int(parts[0])
84 self.AddError("\"%s\" isn't an integer tag or '?'" % (parts[0],))
98 self.AddError("tag \"%s\" has unparseable description" % (tagname,))
101 self.tags.append(Tag(tag, tagname, description,
  /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; }
DWARFDebugInfoEntry.cpp 218 return true; // NULL debug tag entry
238 uint16_t tag = AbbrevDecl->getTag(); local
240 bool isCompileUnitTag = tag == DW_TAG_compile_unit;
360 return true; // NULL debug tag entry
372 uint32_t Tag = getTag();
373 return Tag == DW_TAG_subprogram ||
374 Tag == DW_TAG_inlined_subroutine;
558 // Append current DIE to inlined chain only if it has correct tag
  /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;
  /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 67 int IsGpsTag(const char* tag) {
68 return strstr(tag, "GPS") == tag;
71 TagTable_t* GpsTagToTagTableEntry(unsigned short tag)
75 if (GpsTags[i].Tag == tag) {
76 printf("found tag %d", tag);
79 printf("tag %s format not defined", GpsTags[i].Desc);
85 printf("tag %d NOT FOUND", tag)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 241 static int Tag = 0;
242 ID.AddPointer(&Tag);
  /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)
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
BCHeaderField.h 25 // Also contains the list of known Tag IDs.
38 } Tag;
41 BCHeaderField(Tag ID, size_t len, uint8_t* data) :
72 ID_ = static_cast<Tag>(field);
95 Tag getID() const {
113 Tag ID_;
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 50 /// A tag to id this checker.
51 static void *getTag() { static int Tag; return &Tag; }
GenericTaintChecker.cpp 33 static void *getTag() { static int Tag; return &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...]
  /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/clang/lib/Sema/
SemaCXXScopeSpec.cpp 63 if (const TagType *Tag = T->getAs<TagType>())
64 return Tag->getDecl();
151 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
152 assert(Tag && "Non-tag type in nested-name-specifier");
153 return Tag->getDecl();
213 TagDecl *tag = dyn_cast<TagDecl>(DC); local
216 if (!tag || tag->isDependentContext())
221 QualType type = Context.getTypeDeclType(tag);
    [all...]
  /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/llvm/lib/CodeGen/
InterferenceCache.h 32 BlockInterference() : Tag(0) {}
33 unsigned Tag;
44 /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions
46 unsigned Tag;
71 /// Tag of the LIU last time we looked.
96 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0), LIS(0) {}
125 if (Blocks[MBBNum].Tag != Tag)
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...]
  /frameworks/base/core/java/android/nfc/
Tag.java 40 * Represents an NFC tag that has been discovered.
42 * {@link Tag} is an immutable object that represents the state of a NFC tag at
48 * A new tag object is created every time a tag is discovered (comes into range), even
49 * if it is the same physical tag. If a tag is removed and then returned into range, then
50 * only the most recent tag object can be successfully used to create a {@link TagTechnology}.
52 * <h3>Tag Dispatch</h3>
53 * When a tag is discovered, a {@link Tag} object is created and passed to
    [all...]
  /external/chromium/third_party/libevent/
event_rpcgen.py 33 if self._tags.has_key(entry.Tag()):
34 print >>sys.stderr, ( 'Entry "%s" duplicates tag number '
36 entry.Name(), entry.Tag(),
37 self._tags[entry.Tag()], line_count)
40 self._tags[entry.Tag()] = entry.Name()
58 """Prints the tag definitions for a structure."""
59 print >>file, '/* Tag definition for %s */' % self._name
63 entry.Tag())
212 ' ev_uint32_t tag;\n'
214 ' if (evtag_peek(evbuf, &tag) == -1)\n
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 55 /// Tag - Dwarf tag code.
57 uint16_t Tag;
72 DIEAbbrev(uint16_t T, uint16_t C) : Tag(T), ChildrenFlag(C), Data() {}
75 uint16_t getTag() const { return Tag; }
79 void setTag(uint16_t T) { Tag = T; }
141 explicit DIE(unsigned Tag)
142 : Offset(0), Size(0), Abbrev(Tag, dwarf::DW_CHILDREN_no), Parent(0),
155 void setTag(unsigned Tag) { Abbrev.setTag(Tag); }
    [all...]
  /external/clang/include/clang/Analysis/
ProgramPoint.h 72 llvm::PointerIntPair<const ProgramPointTag *, 2, unsigned> Tag;
80 const ProgramPointTag *tag = 0)
84 Tag(tag, (((unsigned) k) >> 4) & 0x3) {
94 const ProgramPointTag *tag = 0)
98 Tag(tag, (((unsigned) k) >> 4) & 0x3) {}
107 /// except for using the specified tag value.
108 ProgramPoint withTag(const ProgramPointTag *tag) const {
110 getLocationContext(), tag);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 275 const void *Tag;
278 unsigned count, const void *tag)
279 : SymbolData(MetadataKind, sym), R(r), S(s), T(t), Count(count), Tag(tag) {}
284 const void *getTag() const { return Tag; }
292 const void *Tag) {
298 profile.AddPointer(Tag);
302 Profile(profile, R, S, T, Count, Tag);

Completed in 2183 milliseconds

1 2 3