HomeSort by relevance Sort by last modified time
    Searched refs:Tags (Results 1 - 25 of 32) sorted by null

1 2

  /external/llvm/utils/TableGen/
CTagsEmitter.cpp 68 std::vector<Tag> Tags;
69 // Collect tags.
70 Tags.reserve(Classes.size() + Defs.size());
72 Tags.push_back(Tag(C.first, locate(C.second.get())));
74 Tags.push_back(Tag(D.first, locate(D.second.get())));
75 // Emit tags.
76 std::sort(Tags.begin(), Tags.end());
79 for (const Tag &T : Tags)
  /external/clang/utils/TableGen/
ClangCommentCommandInfoEmitter.cpp 29 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
30 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
31 Record &Tag = *Tags[i];
64 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
65 Record &Tag = *Tags[i];
117 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
118 for (size_t i = 0, e = Tags.size(); i != e; ++i) {
119 Record &Tag = *Tags[i];
ClangCommentHTMLTagsEmitter.cpp 10 // This tablegen backend emits efficient matchers for HTML tags that are used
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
26 for (Record *Tag : Tags) {
40 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
43 for (Record *Tag : Tags) {
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 52 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("NCR");
55 for (std::vector<Record *>::iterator I = Tags.begin(), E = Tags.end();
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.hpp 599 class Tags {
600 Tags(const Tags&);
601 Tags& operator=(const Tags&);
610 Tags(Segment*, long long payload_start, long long payload_size,
613 ~Tags();
642 friend class Tags;
970 const Tags* GetTags() const;
996 Tags* m_pTags
    [all...]
mkvmuxer.hpp 748 // Tags calls Clear and the destructor of Tag
749 friend class Tags;
751 // For storage of simple tags
782 // expanding a plain array of Tag objects (see Tags).
814 // Tags element
816 class Tags {
818 Tags();
819 ~Tags();
823 // Returns the number of tags that have been added.
826 // Output the Tags element to the writer. Returns true on success
    [all...]
mkvparser.cpp 998 Tags(this, pos, size, element_start, element_size);
3763 Tag* const tags = new (std::nothrow) Tag[size]; local
    [all...]
mkvmuxer.cpp 1731 Tag* const tags = new (std::nothrow) Tag[size]; \/\/ NOLINT local
    [all...]
  /external/libvpx/libwebm/mkvparser/
mkvparser.h 686 class Tags {
687 Tags(const Tags&);
688 Tags& operator=(const Tags&);
697 Tags(Segment*, long long payload_start, long long payload_size,
700 ~Tags();
729 friend class Tags;
1057 const Tags* GetTags() const;
1083 Tags* m_pTags
    [all...]
mkvparser.cc 997 Tags(this, pos, size, element_start, element_size);
3762 Tag* const tags = new (std::nothrow) Tag[size]; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
tagging.py 50 class Tags(list):
51 """A container for the tags associated with a bucket."""
bucket.py 40 from boto.s3.tagging import Tags
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.cpp 227 void LLVMContextImpl::getOperandBundleTags(SmallVectorImpl<StringRef> &Tags) const {
228 Tags.resize(BundleTagCache.size());
230 Tags[T.second] = T.first();
LLVMContext.cpp 300 void LLVMContext::getOperandBundleTags(SmallVectorImpl<StringRef> &Tags) const {
301 pImpl->getOperandBundleTags(Tags);
  /system/media/camera/docs/
html.mako 75 /* Entry tags flair */
175 <li><a href="#tag_index" class="toc_section_header">Tags</a></li>
206 <th class="th_tags">Tags</th>
229 <th class="th_tags">Tags</th>
346 % if next(prop.tags, None):
348 % for tag in prop.tags:
394 <div class="tags" id="tag_index">
395 <h2>Tags</h2>
397 % for tag in metadata.tags:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_bucket.py 41 from boto.s3.tagging import Tags, TagSet
163 """Create tags from python objects rather than raw xml."""
164 t = Tags()
  /external/skia/include/private/
SkRecords.h 178 enum Tags {
185 #define RECORD(T, tags, ...) \
188 static const int kTags = tags; \
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
foreign_content.js 141 //Tags that causes exit from foreign content
  /external/llvm/test/MC/ARM/
directive-eabi_attribute.s 217 @ CHECK-OBJ-NEXT: Description: Unspecified Tags UNDEFINED
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
GVN.cpp     [all...]
SROA.cpp     [all...]
  /external/skia/src/sfnt/
SkOTTable_OS_2_V3.h 188 Tags,
SkOTTable_OS_2_V4.h 188 Tags,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds2/
layer1.py 177 def add_tags_to_resource(self, resource_name, tags):
179 Adds metadata tags to an Amazon RDS resource. These tags can
188 :param resource_name: The Amazon RDS resource the tags will be added
193 :type tags: list
194 :param tags: The tags to be assigned to the Amazon RDS resource.
199 params, tags,
200 'Tags.member',
272 target_db_snapshot_identifier, tags=None)
    [all...]

Completed in 501 milliseconds

1 2