| /openbsd-src/gnu/llvm/llvm/include/llvm/LineEditor/ |
| H A D | LineEditor.h | 66 struct Completion { struct 67 Completion() = default; 68 Completion(const std::string &TypedText, const std::string &DisplayText) in Completion() function 124 static std::string getCommonPrefix(const std::vector<Completion> &Comps); 125 virtual std::vector<Completion> getCompletions(StringRef Buffer, 141 std::vector<Completion> getCompletions(StringRef Buffer, in getCompletions()
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | CompletionRequest.cpp | 44 std::string CompletionResult::Completion::GetUniqueKey() const { in GetUniqueKey() 64 Completion r(completion, description, mode); in AddResult() 73 for (const Completion &completion : m_results) in GetMatches() 79 for (const Completion &completion : m_results) in GetDescriptions()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | CompletionRequest.h | 41 class Completion { 53 Completion(llvm::StringRef completion, llvm::StringRef description, in Completion() function 67 std::vector<Completion> m_results; 78 llvm::ArrayRef<Completion> GetResults() const { return m_results; } in GetResults()
|
| /openbsd-src/gnu/llvm/llvm/lib/LineEditor/ |
| H A D | LineEditor.cpp | 37 const std::vector<Completion> &Comps) { in getCommonPrefix() 41 for (const Completion &C : llvm::drop_begin(Comps)) { in getCommonPrefix() 56 std::vector<Completion> Comps = getCompletions(Buffer, Pos); in complete() 71 for (const Completion &Comp : Comps) in complete() 171 for (const std::string &Completion : Action.Completions) in ElCompletionFn() local 172 OS << Completion << "\n"; in ElCompletionFn()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 193 enum class Completion { None, LLDBCommand, Expression }; enum 195 IOHandlerDelegate(Completion completion = Completion::None) 289 Completion m_completion; // Support for common builtin completions 299 Completion completion = Completion::None)
|
| /openbsd-src/gnu/llvm/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Parser.cpp | 739 const MatcherCompletion& Completion) { in addCompletion() argument 740 if (StringRef(Completion.TypedText).startswith(CompToken.Text) && in addCompletion() 741 Completion.Specificity > 0) { in addCompletion() 742 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()), in addCompletion() 743 Completion.MatcherDecl, Completion.Specificity); in addCompletion() 776 for (const auto &Completion : S->getMatcherCompletions(AcceptedTypes)) { in addExpressionCompletions() local 777 addCompletion(CompToken, Completion); in addExpressionCompletions() 780 for (const auto &Completion : getNamedValueCompletions(AcceptedTypes)) { in addExpressionCompletions() local 781 addCompletion(CompToken, Completion); in addExpressionCompletions()
|
| /openbsd-src/gnu/llvm/lldb/utils/TableGen/ |
| H A D | LLDBOptionDefEmitter.cpp | 122 for (llvm::StringRef Completion : O.Completions) in emitOption() local 123 CompletionArgs.push_back("CommandCompletions::e" + Completion.str() + in emitOption()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | OptionsBase.td | 67 // - `Completion`: Gives the option a single completion kind. 69 // Completion<"DiskFile">; 169 class Completion<string completion> {
|
| H A D | Options.td | 32 Completion<"DiskFile">, 40 Completion<"DiskFile">, 110 Completion<"Module">, Groups<[1,2,3,4,5,6,7,8,9,11,12]>, // *not* in group 10 116 Completion<"SourceFile">, Groups<[1,3,4,5,6,7,8,9,11]>, 139 Completion<"Symbol">, Required, 144 Completion<"Symbol">, 148 Arg<"FullName">, Required, Completion<"Symbol">, 164 Arg<"FunctionName">, Required, Completion<"Symbol">, 207 Required, Completion<"SourceFile">, 219 Completion<"SourceFile">, [all …]
|
| H A D | CommandObjectWatchpointCommand.cpp | 40 IOHandlerDelegate::Completion::LLDBCommand) { in CommandObjectWatchpointCommandAdd()
|
| H A D | CommandObjectBreakpointCommand.cpp | 42 IOHandlerDelegate::Completion::LLDBCommand), in CommandObjectBreakpointCommandAdd()
|
| H A D | CommandObjectExpression.cpp | 191 IOHandlerDelegate(IOHandlerDelegate::Completion::Expression), in CommandObjectExpression()
|
| H A D | CommandObjectCommands.cpp | 798 IOHandlerDelegate::Completion::LLDBCommand) { in CommandObjectCommandsAddRegex()
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | IOHandler.cpp | 212 case Completion::None: in IOHandlerComplete() 214 case Completion::LLDBCommand: in IOHandlerComplete() 217 case Completion::Expression: in IOHandlerComplete()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 391 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults() 454 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults() 475 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults() 2091 HiddenNames.count(C->Completion->getTypedText())) in ProcessCodeCompleteResults() 2096 CodeCompletionString *Completion = C->Completion; in ProcessCodeCompleteResults() local 2099 Priority = getMacroUsagePriority(C->Completion->getTypedText(), in ProcessCodeCompleteResults() 2128 Builder.AddTypedTextChunk(C->Completion->getTypedText()); in ProcessCodeCompleteResults() 2130 Completion = Builder.TakeString(); in ProcessCodeCompleteResults() 2133 AllResults.push_back(Result(Completion, Priority, C->Kind, in ProcessCodeCompleteResults()
|
| /openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | Parser.h | 262 const MatcherCompletion &Completion);
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | Editline.cpp | 933 llvm::ArrayRef<CompletionResult::Completion> results, in PrintCompletion() 935 for (const CompletionResult::Completion &c : results) { in PrintCompletion() 945 llvm::ArrayRef<CompletionResult::Completion> results) { in DisplayCompletions() 1001 llvm::ArrayRef<CompletionResult::Completion> results = result.GetResults(); in TabCommand() 1010 CompletionResult::Completion completion = results.front(); in TabCommand()
|
| /openbsd-src/gnu/lib/libreadline/doc/ |
| H A D | rluser.texinfo | 62 * Programmable Completion:: How to specify the possible completions for 64 * Programmable Completion Builtins:: Builtin commands to specify how to 438 Completion characters will be inserted into the line as if they had 882 * Commands For Completion:: Getting Readline to do the typing for you. 1170 @node Commands For Completion 1474 @node Programmable Completion 1475 @section Programmable Completion 1480 using the @code{complete} builtin (@pxref{Programmable Completion Builtins}), 1494 described above (@pxref{Commands For Completion}) is performed. 1542 (@pxref{Programmable Completion Builtins}), to generate the matches. [all …]
|
| H A D | rltech.texinfo | 1367 * Completion Functions:: Functions provided by Readline. 1368 * Completion Variables:: Variables which control completion. 1369 * A Short Completion Example:: An example of writing completer subroutines. 1435 @node Completion Functions 1436 @subsection Completion Functions 1508 @node Completion Variables 1509 @subsection Completion Variables 1621 Completion occurs on the entire substring, and within the substring 1709 (@pxref{Completion Functions}) for the list of characters. 1717 @node A Short Completion Example [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 4510 AttributeCompletion Completion, in CodeCompleteAttribute() argument 4512 if (Completion == AttributeCompletion::None) in CodeCompleteAttribute() 4560 if (Completion == AttributeCompletion::Scope) { in CodeCompleteAttribute() 4716 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local 4719 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion() 4720 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion() 4721 Completion.AddChunk(CodeCompletionString::CK_RightBracket); in AddLambdaCompletion() 4723 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion() 4727 Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); in AddLambdaCompletion() 4739 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 737 CompletionResult::Completion completion; 933 CompletionResult::Completion completion(CompletionSuggestion, Description, in getCompletionForResult()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Frontend/ |
| H A D | ASTUnit.h | 270 CodeCompletionString *Completion; member
|
| /openbsd-src/gnu/usr.bin/texinfo/doc/ |
| H A D | userdoc.texi | 586 Completion is available while reading the menu label. 602 its node. Completion is available while reading the cross reference 1097 then sets the variable to that value. Completion is available when
|
| /openbsd-src/gnu/llvm/lldb/docs/ |
| H A D | lldb-for-gdb-users.txt | 85 names, file names, etc. Completion is initiated by a hitting a <TAB>.
|
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 4188 Sema::AttributeCompletion Completion, in TryParseCXX11AttributeIdentifier() argument 4205 Completion, Scope); in TryParseCXX11AttributeIdentifier()
|