HomeSort by: relevance | last modified time | path
    Searched defs:Tags (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangCommentHTMLTagsEmitter.cpp 9 // This tablegen backend emits efficient matchers for HTML tags that are used
23 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
25 for (Record *Tag : Tags) {
40 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
43 for (Record *Tag : Tags) {
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];
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 51 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("NCR");
54 for (std::vector<Record *>::iterator I = Tags.begin(), E = Tags.end();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-elfabi/
ErrorCollector.h 68 std::vector<std::string> Tags;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CTagsEmitter.cpp 67 std::vector<Tag> Tags;
68 // Collect tags.
69 Tags.reserve(Classes.size() + Defs.size());
71 Tags.push_back(Tag(C.first, locate(C.second.get())));
73 Tags.push_back(Tag(D.first, locate(D.second.get())));
74 // Emit tags.
75 llvm::sort(Tags);
78 for (const Tag &T : Tags)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Waymarking.h 10 // backtrace to work, we use "Waymarks", which are special tags embedded into
32 // Tags:
52 // Tags:
130 // The number of pre-computed tags (for fast fill).
146 // Start adding tags while calculating the next Count, which is actually the
147 // number of already calculated tags (equivalent to the position in the
172 // The array of ordered pre-computed Tags.
188 typedef typename GenOffset<NUM_STATIC_TAGS>::Xdata Tags;
219 /// Sets up the waymarking algorithm's tags for a given range [Begin, End).
221 /// \param Begin The beginning of the range to mark with tags (inclusive)
    [all...]
  /src/sys/arch/mac68k/obio/
iwmreg.h 92 u_int8_t Tags[IWM_TAG_SIZE];
  /src/external/apache2/llvm/dist/clang/lib/Sema/
CodeCompleteConsumer.cpp 554 std::vector<std::string> Tags;
556 Tags.push_back("Hidden");
558 Tags.push_back("InBase");
561 Tags.push_back("Inaccessible");
562 if (!Tags.empty())
563 OS << " (" << llvm::join(Tags, ",") << ")";
SemaDeclAttr.cpp 6420 SmallVector<StringRef, 4> Tags;
6425 Tags.push_back(Tag);
6438 Tags.push_back(NS->getName());
6442 // Store tags sorted and without duplicates.
6443 llvm::sort(Tags);
6444 Tags.erase(std::unique(Tags.begin(), Tags.end()), Tags.end());
6447 AbiTagAttr(S.Context, AL, Tags.data(), Tags.size()))
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 766 std::vector<std::unique_ptr<NoteTag>> Tags;
773 Tags.push_back(std::move(T));
774 return Tags.back().get();
  /src/external/apache2/llvm/dist/clang/lib/APINotes/
APINotesYAMLCompiler.cpp 504 TagsSeq Tags;
517 IO.mapOptional("Tags", TLI.Tags);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 2283 const std::pair<const ProgramPointTag *, const ProgramPointTag *> &Tags =
2297 if (PreviousNodeTag == Tags.first || PreviousNodeTag == Tags.second)
2307 if (CurrentNodeTag != Tags.first && CurrentNodeTag != Tags.second)
2310 bool TookTrue = CurrentNodeTag == Tags.first;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GVN.cpp 1215 // Transfer the old load's AA tags to the new load.
1216 AAMDNodes Tags;
1217 Load->getAAMetadata(Tags);
1218 if (Tags)
1219 NewLoad->setAAMetadata(Tags);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 2356 SmallVector<StringRef, 8> Tags;
2357 M.getOperandBundleTags(Tags);
2359 if (Tags.empty())
2366 for (auto Tag : Tags) {

Completed in 34 milliseconds