Searched defs:Tag (Results 1 - 25 of 57) sorted by relevance

123

/external/clang/utils/TableGen/
H A DClangCommentCommandInfoEmitter.cpp29 Record &Tag = *Tags[i]; local
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
56 Record &Tag = *Tags[i]; local
[all...]
H A DClangCommentHTMLTagsEmitter.cpp23 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
27 Record &Tag = **I; local
28 std::string Spelling = Tag.getValueAsString("Spelling");
42 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
47 Record &Tag = **I; local
48 std::string Spelling = Tag.getValueAsString("Spelling");
50 if (Tag.getValueAsBit("EndTagOptional"))
52 if (Tag.getValueAsBit("EndTagForbidden"))
/external/clang/include/clang/ASTMatchers/
H A DASTTypeTraits.h59 return BaseConverter<T>::get(Tag, Storage.buffer);
78 } Tag; member in class:clang::ast_type_traits::DynTypedNode
90 static const T *get(NodeTypeTag Tag, const char Storage[]) { argument
91 if (Tag == NT_Decl)
97 Result.Tag = NT_Decl;
104 static const T *get(NodeTypeTag Tag, const char Storage[]) { argument
105 if (Tag == NT_Stmt)
111 Result.Tag = NT_Stmt;
117 static const QualType *get(NodeTypeTag Tag, const char Storage[]) { argument
118 if (Tag
134 get(NodeTypeTag Tag, const char Storage[]) argument
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.h23 uint32_t Tag; member in class:llvm::DWARFAbbreviationDeclaration
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
32 uint32_t getTag() const { return Tag; }
45 bool isValid() const { return Code != 0 && Tag != 0; }
H A DDWARFDebugInfoEntry.cpp372 uint32_t Tag = getTag(); local
373 return Tag == DW_TAG_subprogram ||
374 Tag == DW_TAG_inlined_subroutine;
/external/llvm/lib/VMCore/
H A DUse.cpp56 unsigned Tag = (Current++)->Prev.getInt(); local
57 switch (Tag) {
66 unsigned Tag = Current->Prev.getInt(); local
67 switch (Tag) {
71 Offset = (Offset << 1) + Tag;
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitor.h241 static int Tag = 0; local
242 ID.AddPointer(&Tag);
/external/jhead/
H A Dmakernote.c38 int Tag, Format, Components; local
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);
82 printf(" Canon maker tag %04x Value = ", Tag);
119 if (Tag == 1 && Components > 16){
126 if (Tag == 4 && Format == FMT_USHORT){
H A Dgpsinfo.c75 if (GpsTags[i].Tag == tag) {
93 if (GpsTags[i].Tag == tag) {
112 printf("found GPS tag %s val %d", GpsTags[i].Desc, GpsTags[i].Tag);
113 return GpsTags[i].Tag;
143 unsigned Tag, Format, Components; local
155 Tag = Get16u(DirEntry);
161 ErrNonfatal("Illegal number format %d for tag %04x", Format, Tag);
169 printf("GPS tag %x format %s #components %d componentsize %d bytecount %d", Tag, formatStr(Format), Components, ComponentSize,
179 ErrNonfatal("Illegal value pointer for tag %04x", Tag,0);
188 switch(Tag){
[all...]
/external/llvm/include/llvm/CodeGen/
H A DRegisterClassInfo.h29 unsigned Tag; member in struct:llvm::RegisterClassInfo::RCInfo
34 RCInfo() : Tag(0), NumRegs(0), ProperSubClass(false) {}
43 // Tag changes whenever cached information needs to be recomputed. An RCInfo
45 unsigned Tag; member in class:llvm::RegisterClassInfo
66 if (Tag != RCI.Tag)
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp51 static void *getTag() { static int Tag; return &Tag; } local
H A DGenericTaintChecker.cpp33 static void *getTag() { static int Tag; return &Tag; } local
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DTag.java7 * $Id: Tag.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
18 abstract class Tag implements IContent class in inherits: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 H
58 Tag () {} method in class:Tag
[all...]
/external/llvm/lib/Support/
H A DDwarf.cpp20 const char *llvm::dwarf::TagString(unsigned Tag) { argument
21 switch (Tag) {
/external/llvm/include/llvm/Support/
H A DGCOV.h66 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4); local
67 if (Tag.empty() ||
68 Tag[0] != '\0' || Tag[1] != '\0' ||
69 Tag[2] != '\0' || Tag[3] != '\1') {
79 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4); local
80 if (Tag.empty() ||
81 Tag[0] != '\0' || Tag[
92 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4); local
105 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4); local
118 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4); local
[all...]
H A DYAMLParser.h16 // * Tag resolution.
502 void handleTagDirective(const Token &Tag) { argument
/external/llvm/lib/CodeGen/
H A DInterferenceCache.h32 BlockInterference() : Tag(0) {}
33 unsigned Tag; member in struct:llvm::InterferenceCache::BlockInterference
44 /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions
46 unsigned Tag; member in class:llvm::InterferenceCache::Entry
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)
H A DLiveIntervalUnion.h63 unsigned Tag; // unique tag for current contents. member in class:llvm::LiveIntervalUnion
67 explicit LiveIntervalUnion(Allocator &a) : Tag(0), Segments(a) {}
82 unsigned getTag() const { return Tag; }
85 bool changedSince(unsigned tag) const { return tag != Tag; }
94 void clear() { Segments.clear(); ++Tag; }
115 unsigned Tag, UserTag; member in class:llvm::LiveIntervalUnion::Query
118 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
132 Tag = 0;
139 LiveUnion == LIU && !LIU->changedSince(Tag)) {
146 Tag
[all...]
/external/clang/lib/Frontend/
H A DChainedIncludesSource.cpp199 void ChainedIncludesSource::CompleteType(TagDecl *Tag) { argument
200 return getFinalReader().CompleteType(Tag);
/external/chromium/third_party/libevent/
H A Devent_rpcgen.py33 if self._tags.has_key(entry.Tag()):
36 entry.Name(), entry.Tag(),
37 self._tags[entry.Tag()], line_count)
40 self._tags[entry.Tag()] = entry.Name()
59 print >>file, '/* Tag definition for %s */' % self._name
63 entry.Tag())
335 def Tag(self): member in class:Entry
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp63 if (const TagType *Tag = T->getAs<TagType>())
64 return Tag->getDecl();
151 const TagType *Tag = NNS->getAsType()->getAs<TagType>(); local
152 assert(Tag && "Non-tag type in nested-name-specifier");
153 return Tag->getDecl();
/external/clang/include/clang/AST/
H A DExternalASTSource.h172 virtual void CompleteType(TagDecl *Tag) {} argument
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp140 static int Tag = 0; local
141 ID.AddPointer(&Tag);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h55 /// Tag - Dwarf tag code.
57 uint16_t Tag; member in class:llvm::DIEAbbrev
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) argument
142 : Offset(0), Size(0), Abbrev(Tag, dwarf::DW_CHILDREN_no), Parent(0),
155 void setTag(unsigned Tag) { Abbrev.setTag(Tag); } argument
/external/clang/include/clang/Analysis/
H A DProgramPoint.h72 llvm::PointerIntPair<const ProgramPointTag *, 2, unsigned> Tag; member in class:clang::ProgramPoint
84 Tag(tag, (((unsigned) k) >> 4) & 0x3) {
98 Tag(tag, (((unsigned) k) >> 4) & 0x3) {}
114 unsigned x = Tag.getInt();
130 const ProgramPointTag *getTag() const { return Tag.getPointer(); }
149 Tag == RHS.Tag;
156 Tag != RHS.Tag;
423 const LocationContext *L, const ProgramPointTag *Tag)
422 ImplicitCallPoint(const Decl *D, SourceLocation Loc, Kind K, const LocationContext *L, const ProgramPointTag *Tag) argument
[all...]

Completed in 407 milliseconds

123