Home
last modified time | relevance | path

Searched refs:CommandInfo (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentCommandTraits.cpp33 const CommandInfo *CommandTraits::getCommandInfoOrNULL(StringRef Name) const { in getCommandInfoOrNULL()
34 if (const CommandInfo *Info = getBuiltinCommandInfo(Name)) in getCommandInfoOrNULL()
39 const CommandInfo *CommandTraits::getCommandInfo(unsigned CommandID) const { in getCommandInfo()
40 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID)) in getCommandInfo()
45 const CommandInfo *
56 SmallVector<const CommandInfo *, 2> BestCommand; in getTypoCorrectCommandInfo()
58 auto ConsiderCorrection = [&](const CommandInfo *Command) { in getTypoCorrectCommandInfo()
83 CommandInfo *CommandTraits::createCommandInfoWithName(StringRef CommandName) { in createCommandInfoWithName()
89 CommandInfo *Info = new (Allocator) CommandInfo(); in createCommandInfoWithName()
93 assert((NextID < (1 << CommandInfo::NumCommandIDBits)) in createCommandInfoWithName()
[all …]
H A DCommentBriefParser.cpp71 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in Parse()
H A DCommentParser.cpp478 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in parseBlockCommand()
572 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in parseInlineCommand()
733 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in parseParagraphOrBlockCommand()
848 const CommandInfo *Info = Traits.getCommandInfo(Tok.getVerbatimBlockID()); in parseVerbatimBlock()
H A DCommentSema.cpp99 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkFunctionDeclVerbatimLine()
132 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDeclVerbatimLine()
174 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDecl()
603 const CommandInfo *Info = Traits.getCommandInfo(Command->getCommandID()); in checkBlockCommandDuplicate()
H A DCommentLexer.cpp411 const CommandInfo *Info = Traits.getCommandInfoOrNULL(CommandName); in lexCommentText()
470 char Marker, const CommandInfo *Info) { in setupAndLexVerbatimBlock()
554 const CommandInfo *Info) { in setupAndLexVerbatimLine()
H A DJSONNodeDumper.cpp1736 if (const comments::CommandInfo *Info = in getCommentCommandName()
H A DTextNodeDumper.cpp1110 const comments::CommandInfo *Info = in getCommandName()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentCommandTraits.h32 struct CommandInfo { struct
165 const CommandInfo *getCommandInfoOrNULL(StringRef Name) const;
167 const CommandInfo *getCommandInfo(StringRef Name) const { in getCommandInfo()
168 if (const CommandInfo *Info = getCommandInfoOrNULL(Name)) in getCommandInfo()
173 const CommandInfo *getTypoCorrectCommandInfo(StringRef Typo) const;
175 const CommandInfo *getCommandInfo(unsigned CommandID) const;
177 const CommandInfo *registerUnknownCommand(StringRef CommandName);
179 const CommandInfo *registerBlockCommand(StringRef CommandName);
183 static const CommandInfo *getBuiltinCommandInfo(StringRef Name);
187 static const CommandInfo *getBuiltinCommandInfo(unsigned CommandID);
[all …]
H A DCommentLexer.h28 struct CommandInfo;
330 const CommandInfo *Info);
337 const CommandInfo *Info);
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DTelemetry.h67 static const llvm::telemetry::KindType CommandInfo = 0b11010000; member
119 struct CommandInfo : public LLDBBaseTelemetryInfo { struct
142 CommandInfo() = default; argument
145 return LLDBEntryKind::CommandInfo; in getKind() argument
149 return (T->getKind() & LLDBEntryKind::CommandInfo) == in classof() argument
150 LLDBEntryKind::CommandInfo; in classof()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DTelemetry.cpp63 void CommandInfo::serialize(Serializer &serializer) const { in serialize()
79 std::atomic<uint64_t> CommandInfo::g_command_id_seed = 1;
80 uint64_t CommandInfo::GetNextID() { return g_command_id_seed.fetch_add(1); } in GetNextID()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp122 const CommandInfo *Info = Traits.getCommandInfo(BCC->getCommandID()); in FullCommentParts()
173 const CommandInfo *Info = Traits.getCommandInfo(VLC->getCommandID()); in FullCommentParts()
334 const CommandInfo *Info = Traits.getCommandInfo(C->getCommandID()); in visitBlockCommandComment()
715 const CommandInfo *Info = Traits.getCommandInfo(CommandID); in visitBlockCommandComment()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1947 telemetry::ScopedDispatcher<telemetry::CommandInfo> helper(&m_debugger); in HandleCommand()
1952 const int command_id = telemetry::CommandInfo::GetNextID(); in HandleCommand()
1958 helper.DispatchNow([&](lldb_private::telemetry::CommandInfo *info) { in HandleCommand()
1974 lldb_private::telemetry::CommandInfo *info) { in HandleCommand()