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

1 2 3 4 5 6 7

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/
tag.py 24 class Tag(object):
26 A name/value tag on an AutoScalingGroup resource.
28 :ivar key: The key of the tag.
29 :ivar value: The value of the tag.
31 new tag will be applied to instances launched after the tag is created.
48 return 'Tag(%s=%s)' % (self.key, self.value)
71 to identify this Tag in a request.
group.py 27 from boto.ec2.autoscale.tag import Tag
154 :param tags: List of :class:`boto.ec2.autoscale.tag.Tag`s
227 self.tags = ResultSet([('member', Tag)])
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
tag.py 52 class Tag(object):
54 A Tag is used when creating or listing all tags related to
56 also the ID of the resource to which the tag is attached
69 return 'Tag:%s' % self.name
volume.py 28 from boto.ec2.tag import Tag
74 self.tags = ResultSet([('item', Tag)])
  /external/testng/src/main/java/org/testng/xml/dom/
Tag.java 10 public @interface Tag {
  /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-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/s3/
test_tagging.py 5 from boto.s3.tagging import Tag
15 <Tag>
18 </Tag>
19 <Tag>
22 </Tag>
31 # The outer list is a list of tag sets.
41 t1 = Tag('foo', 'bar')
42 t2 = Tag('foo', 'bar')
43 t3 = Tag('foo', 'baz')
44 t4 = Tag('baz', 'bar'
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
tagging.py 5 class Tag(object):
20 return '<Tag><Key>%s</Key><Value>%s</Value></Tag>' % (
29 if name == 'Tag':
30 tag = Tag()
31 self.append(tag)
32 return tag
39 tag = Tag(key, value
    [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/Analysis/
ModuleDebugInfoPrinter.cpp 115 if (const char *Tag = dwarf::TagString(T->getTag()))
116 O << Tag;
118 O << "unknown-tag(" << T->getTag() << ")";
  /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-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/autoscale/
test_connection.py 35 from boto.ec2.autoscale.tag import Tag
127 # now create a tag
128 tag = Tag(key='foo', value='bar', resource_id=group_name,
130 c.create_or_update_tags([tag])
134 for tag in tags:
135 if tag.resource_id == group_name and tag.key == 'foo':
140 c.delete_tags([tag])
    [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/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 32 uint32_t getTag() const { return Tag; }
54 uint32_t Tag;
  /external/llvm/lib/DebugInfo/DWARF/
SyntaxHighlighting.h 20 enum HighlightColor { Address, String, Tag, Attribute, Enumerator, Macro };
  /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)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudformation/
stack.py 34 self.tags = Tag()
238 class Tag(dict):
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 148 /// 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);
323 /// Return the tag associated with this visitor. This tag will be use
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 51 /// A tag to id this checker.
52 static void *getTag() { static int Tag; return &Tag; }
  /external/clang/test/CodeGenCXX/
debug-info-enum-class.cpp 12 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "A"
20 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "B"
28 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "C"
39 enum class Tag {
43 auto t = Tag::test;
45 Tag tag() const { return static_cast<Tag>(1); } function in class:A::B::PR14029::Test::Tag
52 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "E"
67 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "E
    [all...]
  /external/llvm/lib/ProfileData/
CoverageMappingWriter.cpp 82 /// Low 2 bits - Tag:
95 unsigned Tag = unsigned(C.getKind());
97 Tag += Expressions[C.getExpressionID()].Kind;
101 return Tag | (ID << Counter::EncodingTagBits);
157 // Mark an expansion region with a set bit that follows the counter tag,
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 71 /// \brief Pretty print a tag by replacing tag:yaml.org,2002: with !!.
73 std::string Tag = N->getVerbatimTag();
74 if (StringRef(Tag).startswith("tag:yaml.org,2002:")) {
76 Ret += StringRef(Tag).substr(18);
80 Ret += Tag;

Completed in 1712 milliseconds

1 2 3 4 5 6 7