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

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SnippetFile.cpp 44 void HandleComment(SMLoc Loc, StringRef CommentText) override {
45 CommentText = CommentText.trim();
46 if (!CommentText.consume_front("LLVM-EXEGESIS-"))
48 if (CommentText.consume_front("DEFREG")) {
52 CommentText.split(Parts, ' ', /*unlimited splits*/ -1,
55 errs() << "invalid comment 'LLVM-EXEGESIS-DEFREG " << CommentText
62 << "' in 'LLVM-EXEGESIS-DEFREG " << CommentText << "'\n";
72 if (CommentText.consume_front("LIVEIN")) {
74 const auto RegName = CommentText.ltrim()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp 359 const StringRef CommentText = Comment->getRawText(SM);
360 if (!CommentText.contains("LINT.IfChange") &&
361 !CommentText.contains("LINT.ThenChange"))
  /src/external/apache2/llvm/dist/clang/lib/AST/
RawCommentList.cpp 361 llvm::StringRef CommentText = getRawText(SourceMgr);
362 if (CommentText.empty())
371 CommentText.begin(), CommentText.end(),
  /src/external/apache2/llvm/dist/clang/lib/Format/
SortJavaScriptImports.cpp 362 StringRef CommentText = Current->TokenText.trim();
363 if (CommentText == "// clang-format off") {
365 } else if (CommentText == "// clang-format on") {

Completed in 27 milliseconds