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

1 2

  /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/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; }
  /external/llvm/lib/VMCore/
Use.cpp 55 unsigned Tag = (Current++)->Prev.getInt();
56 switch (Tag) {
65 unsigned Tag = Current->Prev.getInt();
66 switch (Tag) {
70 Offset = (Offset << 1) + Tag;
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp 65 // TODO: The PP will be generated with the correct tag by the CheckerManager
67 const ProgramPointTag *Tag = 0;
68 ProgramPoint PP = PostCondition(Condition, Pred->getLocationContext(), 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...]
jhead.h 92 int FocalLength35mmEquiv; // Exif 2.2 tag - usually not present.
145 unsigned short Tag; // tag value, i.e. TAG_MODEL
149 int GpsTag; // bool - the tag is related to GPS info
154 unsigned short Tag;
208 int IsGpsTag(const char* tag);
209 int GpsTagToFormatType(unsigned short tag);
211 TagTable_t* GpsTagToTagTableEntry(unsigned short tag);
274 #define M_XMP 0x10E1 // Not a real tag (same value in file as Exif!)
  /external/llvm/lib/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)
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...]
InterferenceCache.h 30 BlockInterference() : Tag(0) {}
31 unsigned Tag;
42 /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions
44 unsigned Tag;
58 /// AliasTags - A LiveIntervalUnion pointer and tag for each alias of
74 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0) {}
102 if (Blocks[MBBNum].Tag != 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 62 if (const TagType *Tag = T->getAs<TagType>())
63 return Tag->getDecl();
150 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
151 assert(Tag && "Non-tag type in nested-name-specifier");
152 return Tag->getDecl();
213 if (TagDecl *tag = dyn_cast<TagDecl>(DC)) {
215 if (tag->isDependentContext())
220 QualType type = Context.getTypeDeclType(tag);
    [all...]
  /external/llvm/include/llvm/Support/
GCOV.h 61 /// readFunctionTag - If cursor points to a function tag then increment the
64 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
65 if (Tag.empty() ||
66 Tag[0] != '\0' || Tag[1] != '\0' ||
67 Tag[2] != '\0' || Tag[3] != '\1') {
74 /// readBlockTag - If cursor points to a block tag then increment the
77 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
78 if (Tag.empty() ||
    [all...]
  /frameworks/base/core/java/android/nfc/
Tag.java 39 * Represents an NFC tag that has been discovered.
41 * {@link Tag} is an immutable object that represents the state of a NFC tag at
47 * A new tag object is created every time a tag is discovered (comes into range), even
48 * if it is the same physical tag. If a tag is removed and then returned into range, then
49 * only the most recent tag object can be successfully used to create a {@link TagTechnology}.
51 * <h3>Tag Dispatch</h3>
52 * 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/clang/include/clang/Analysis/
ProgramPoint.h 63 const ProgramPointTag *Tag;
69 const ProgramPointTag *tag = 0)
70 : Data(P, static_cast<const void*>(NULL)), K(k), L(l), Tag(tag) {}
73 const ProgramPointTag *tag = 0)
74 : Data(P1, P2), K(k), L(l), Tag(tag) {}
82 /// except for using the specified tag value.
83 ProgramPoint withTag(const ProgramPointTag *tag) const {
84 return ProgramPoint(Data.first, Data.second, K, L, tag);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 55 /// Tag - Dwarf tag code.
57 unsigned Tag;
72 DIEAbbrev(unsigned T, unsigned C) : Tag(T), ChildrenFlag(C), Data() {}
75 unsigned getTag() const { return Tag; }
79 void setTag(unsigned T) { Tag = T; }
141 explicit DIE(unsigned Tag)
142 : Abbrev(Tag, dwarf::DW_CHILDREN_no), Offset(0),
155 void setTag(unsigned Tag) { Abbrev.setTag(Tag); }
    [all...]
DwarfCompileUnit.cpp 357 unsigned Tag = Ty.getTag();
362 if (Tag == dwarf::DW_TAG_pointer_type) {
684 unsigned Tag = DTy.getTag();
687 if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type;
689 Buffer.setTag(Tag);
714 unsigned Tag = CTy.getTag();
715 Buffer.setTag(Tag);
717 switch (Tag) {
828 if (Tag == dwarf::DW_TAG_class_type)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 295 const ProgramPointTag *Tag;
308 const ProgramPointTag *tag = 0,
314 Pred->getLocationContext(), tag ? tag : Tag);
321 const ProgramPointTag *tag = 0) {
322 return generateNode(S, St, Pred, PointKind, tag);
541 const ProgramPointTag *tag, bool asSink) {
542 return generateNodeImpl(state, pred, cast<PP_T>(pp).withTag(tag),
551 const ProgramPointTag *Tag;
    [all...]
SymbolManager.h 239 const void *Tag;
242 unsigned count, const void *tag)
243 : SymbolData(MetadataKind, sym), R(r), S(s), T(t), Count(count), Tag(tag) {}
248 const void *getTag() const { return Tag; }
256 const void *Tag) {
262 profile.AddPointer(Tag);
266 Profile(profile, R, S, T, Count, Tag);
  /external/llvm/lib/Analysis/
DebugInfo.cpp 133 /// isBasicType - Return true if the specified tag is legal for
146 /// isDerivedType - Return true if the specified tag is legal for DIDerivedType.
166 /// isCompositeType - Return true if the specified tag is legal for
184 /// isVariable - Return true if the specified tag is legal for DIVariable.
197 /// isType - Return true if the specified tag is legal for DIType.
202 /// isSubprogram - Return true if the specified tag is legal for
208 /// isGlobalVariable - Return true if the specified tag is legal for
215 /// isGlobal - Return true if the specified tag is legal for DIGlobal.
220 /// isUnspecifiedParmeter - Return true if the specified tag is
226 /// isScope - Return true if the specified tag is one of the scop
    [all...]
LazyValueInfo.cpp 75 LatticeValueTy Tag;
80 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
100 bool isUndefined() const { return Tag == undefined; }
101 bool isConstant() const { return Tag == constant; }
102 bool isNotConstant() const { return Tag == notconstant; }
103 bool isConstantRange() const { return Tag == constantrange; }
104 bool isOverdefined() const { return Tag == overdefined; }
126 Tag = overdefined;
141 Tag = constant;
159 Tag = notconstant
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 781 // If this is a tag type that has a definition or is currently
783 TagDecl *Tag = cast<TagDecl>(this);
784 assert(isa<TagType>(Tag->TypeForDecl) ||
785 isa<InjectedClassNameType>(Tag->TypeForDecl));
787 if (TagDecl *Def = Tag->getDefinition())
790 if (!isa<InjectedClassNameType>(Tag->TypeForDecl)) {
791 const TagType *TagTy = cast<TagType>(Tag->TypeForDecl);
798 return Tag;
    [all...]
  /external/icu4c/tools/gencnval/
gencnval.c 52 /* The combined tag and converter count can affect the number of lists
60 /* The maximum number of aliases that a standard tag/converter combination can have.
117 uint16_t tag; /* Index into tagStore */ member in struct:__anon6506
120 } Tag;
123 static Tag tags[MAX_TAG_COUNT];
181 getTagNumber(const char *tag, uint16_t tagLen);
184 addTaggedAlias(uint16_t tag, const char *alias, uint16_t converter);*/
298 /* write the table of aliases based on a tag/converter name combination */
321 /* Add the empty tag, which is for untagged aliases */
487 /* add the tag to the tag table *
488 uint16_t tag = getTagNumber(line + start, (uint16_t)(limit - start)); local
568 char *tag; local
    [all...]

Completed in 4006 milliseconds

1 2