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

1 2 3 4 5 6

  /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/chromium_org/media/formats/mp4/
es_descriptor.h 44 enum Tag {
  /external/chromium_org/ppapi/c/documentation/
doxy_cleanup.py 18 from BeautifulSoup import BeautifulSoup, Tag
39 - Putting the "name" attribute into the "id" attribute of the <tr> tag.
58 for tag in self.soup.findAll('tr'):
59 if tag.td and tag.td.h2 and tag.td.h2.a and tag.td.h2.a['name']:
60 #tag['id'] = tag.td.h2.a['name']
61 tag.string = tag.td.h2.a.nex
    [all...]
  /external/chromium_org/ppapi/cpp/documentation/
doxy_cleanup.py 17 from BeautifulSoup import BeautifulSoup, Tag
38 - Putting the "name" attribute into the "id" attribute of the <tr> tag.
57 for tag in self.soup.findAll('tr'):
58 if tag.td and tag.td.h2 and tag.td.h2.a and tag.td.h2.a['name']:
59 #tag['id'] = tag.td.h2.a['name']
60 tag.string = tag.td.h2.a.nex
    [all...]
  /external/clang/utils/TableGen/
ClangCommentCommandInfoEmitter.cpp 31 Record &Tag = *Tags[i];
33 << "\"" << Tag.getValueAsString("Name") << "\", "
34 << "\"" << Tag.getValueAsString("EndCommandName") << "\", "
36 << Tag.getValueAsInt("NumArgs") << ", "
37 << Tag.getValueAsBit("IsInlineCommand") << ", "
38 << Tag.getValueAsBit("IsBlockCommand") << ", "
39 << Tag.getValueAsBit("IsBriefCommand") << ", "
40 << Tag.getValueAsBit("IsReturnsCommand") << ", "
41 << Tag.getValueAsBit("IsParamCommand") << ", "
42 << Tag.getValueAsBit("IsTParamCommand") << ",
    [all...]
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 57 Record &Tag = **I;
58 std::string Spelling = Tag.getValueAsString("Spelling");
59 uint64_t CodePoint = Tag.getValueAsInt("CodePoint");
63 SrcMgr.PrintMessage(Tag.getLoc().front(),
  /external/llvm/lib/IR/
Use.cpp 98 unsigned Tag = (Current++)->Prev.getInt();
99 switch (Tag) {
108 unsigned Tag = Current->Prev.getInt();
109 switch (Tag) {
113 Offset = (Offset << 1) + Tag;
  /system/media/camera/docs/
metadata_validate.py 36 from bs4 import Tag
49 entry: a BeautifulSoup Tag corresponding to an <entry ...> XML node,
67 raise ValueError("Unsupported tag type '%s' for element '%s'" \
83 element: A BeautifulSoup Tag corresponding to an XML node
105 def find_all_child_tags(element, tag):
107 Finds all the children that are a Tag (as opposed to a NavigableString),
108 with a name of tag. This is useful to filter out the NavigableString out
112 element: A BeautifulSoup Tag corresponding to an XML node
113 tag: A string representing the name of the tag
    [all...]
  /external/chromium_org/native_client_sdk/src/doc/doxygen/
doxy_cleanup.py 18 from BeautifulSoup import BeautifulSoup, Tag
83 - Putting the "name" attribute into the "id" attribute of the <tr> tag.
102 for tag in self.soup.findAll('tr'):
103 if tag.td and tag.td.h2 and tag.td.h2.a and tag.td.h2.a['name']:
104 #tag['id'] = tag.td.h2.a['name']
105 tag.string = tag.td.h2.a.nex
    [all...]
  /external/fonttools/Lib/fontTools/misc/
py23.py 34 class Tag(str):
50 class Tag(str):
  /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/lldb/source/Plugins/SymbolFile/DWARF/
DWARFAbbreviationDeclaration.h 25 DWARFAbbreviationDeclaration(dw_tag_t tag, uint8_t has_children);
33 dw_tag_t Tag() const { return m_tag; }
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 22 uint32_t Tag;
36 uint32_t getTag() const { return Tag; }
  /external/llvm/utils/TableGen/
CTagsEmitter.cpp 31 class Tag {
36 Tag(const std::string &Name, const SMLoc Location)
38 int operator<(const Tag &B) const { return *Id < *B.Id; }
74 std::vector<Tag> Tags;
80 Tags.push_back(Tag(I->first, locate(I->second)));
84 Tags.push_back(Tag(I->first, locate(I->second)));
89 for (std::vector<Tag>::const_iterator I = Tags.begin(), E = Tags.end();
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeTypes.h 65 typedef uint32_t Tag;
  /external/chromium_org/third_party/leveldatabase/src/db/
version_edit.cc 12 // Tag numbers for serialized VersionEdit. These numbers are written to
14 enum Tag {
113 uint32_t tag; local
122 while (msg == NULL && GetVarint32(&input, &tag)) {
123 switch (tag) {
196 msg = "unknown tag";
202 msg = "invalid tag";
  /external/chromium_org/third_party/tcmalloc/chromium/src/
internal_logging.h 82 enum Tag {
89 Tag tag_;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
internal_logging.h 82 enum Tag {
89 Tag tag_;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 149 /// Return the tag associated with this visitor. This tag will be used
193 /// Return the tag associated with this visitor. This tag will be used
256 static int Tag = 0;
257 return static_cast<void *>(&Tag);
291 static int Tag = 0;
292 ID.AddPointer(&Tag);
324 /// Return the tag associated with this visitor. This tag will be use
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 50 /// A tag to id this checker.
51 static void *getTag() { static int Tag; return &Tag; }
  /external/clang/test/CodeGenCXX/
debug-info-enum-class.cpp 19 enum class Tag {
23 auto t = Tag::test;
25 Tag tag() const { return static_cast<Tag>(1); } function in class:A::B::PR14029::Test::Tag
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 66 /// \brief Pretty print a tag by replacing tag:yaml.org,2002: with !!.
68 std::string Tag = N->getVerbatimTag();
69 if (StringRef(Tag).startswith("tag:yaml.org,2002:")) {
71 Ret += StringRef(Tag).substr(18);
75 Ret += 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_;
  /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...]
  /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");
37 * This class restricts the length of the log tag to be less than the
38 * framework limit and also prepends the common tag prefix defined by
41 public static final class Tag {
48 public Tag(String tag)
    [all...]

Completed in 2582 milliseconds

1 2 3 4 5 6