| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LineEditor/ |
| H A D | LineEditor.h | 66 struct Completion { struct 67 Completion() {} in Completion() function 68 Completion(const std::string &TypedText, const std::string &DisplayText) in Completion() argument 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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 197 enum class Completion { None, LLDBCommand, Expression }; enum 199 IOHandlerDelegate(Completion completion = Completion::None) 293 Completion m_completion; // Support for common builtin completions 303 Completion completion = Completion::None)
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/scsi/ |
| H A D | hisilicon-sas.txt | 24 - Completion queue interrupts 32 Completion queue interrupts : each completion queue has 1 42 - Completion queue interrupts 49 Completion queue interrupts : each completion queue has 1
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/LineEditor/ |
| H A D | LineEditor.cpp | 36 const std::vector<Completion> &Comps) { in getCommonPrefix() 40 for (std::vector<Completion>::const_iterator I = Comps.begin() + 1, in getCommonPrefix() 57 std::vector<Completion> Comps = getCompletions(Buffer, Pos); in complete() 72 for (std::vector<Completion>::iterator I = Comps.begin(), E = Comps.end(); in complete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/utils/TableGen/ |
| H A D | LLDBOptionDefEmitter.cpp | 126 for (llvm::StringRef Completion : O.Completions) in emitOption() local 127 CompletionArgs.push_back("CommandCompletions::e" + Completion.str() + in emitOption()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | Options.td | 22 Completion<"DiskFile">, 30 Completion<"DiskFile">, 38 Completion<"DiskFile">, 142 Completion<"Symbol">, 261 Completion<"DiskFile">, 395 Completion<"Module">, 399 Completion<"Symbol">, 793 Completion<"Symbol">, 804 Completion<"Module">, 814 Completion<"Symbol">, [all …]
|
| H A D | OptionsBase.td | 67 // - `Completion`: Gives the option a single completion kind. 69 // Completion<"DiskFile">; 171 class Completion<string completion> {
|
| H A D | CommandObjectWatchpointCommand.cpp | 69 IOHandlerDelegate::Completion::LLDBCommand), in CommandObjectWatchpointCommandAdd()
|
| H A D | CommandObjectBreakpointCommand.cpp | 71 IOHandlerDelegate::Completion::LLDBCommand), in CommandObjectBreakpointCommandAdd()
|
| H A D | CommandObjectExpression.cpp | 202 IOHandlerDelegate(IOHandlerDelegate::Completion::Expression), in CommandObjectExpression()
|
| H A D | CommandObjectCommands.cpp | 751 IOHandlerDelegate::Completion::LLDBCommand), in CommandObjectCommandsAddRegex()
|
| H A D | CommandObjectTarget.cpp | 4507 IOHandlerDelegate::Completion::LLDBCommand), in CommandObjectTargetStopHookAdd()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandler.cpp | 210 case Completion::None: in IOHandlerComplete() 212 case Completion::LLDBCommand: in IOHandlerComplete() 215 case Completion::Expression: in IOHandlerComplete()
|
| /freebsd-13.1/contrib/llvm-project/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() 2062 HiddenNames.count(C->Completion->getTypedText())) in ProcessCodeCompleteResults() 2067 CodeCompletionString *Completion = C->Completion; in ProcessCodeCompleteResults() local 2070 Priority = getMacroUsagePriority(C->Completion->getTypedText(), in ProcessCodeCompleteResults() 2099 Builder.AddTypedTextChunk(C->Completion->getTypedText()); in ProcessCodeCompleteResults() 2101 Completion = Builder.TakeString(); in ProcessCodeCompleteResults() 2104 AllResults.push_back(Result(Completion, Priority, C->Kind, in ProcessCodeCompleteResults()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | Parser.h | 262 const MatcherCompletion &Completion);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Editline.cpp | 928 llvm::ArrayRef<CompletionResult::Completion> results, in PrintCompletion() 930 for (const CompletionResult::Completion &c : results) { in PrintCompletion() 940 llvm::ArrayRef<CompletionResult::Completion> results) { in DisplayCompletions() 996 llvm::ArrayRef<CompletionResult::Completion> results = result.GetResults(); in TabCommand() 1005 CompletionResult::Completion completion = results.front(); in TabCommand()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 4409 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local 4412 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion() 4413 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion() 4416 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion() 4432 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion() 4434 Completion.AddPlaceholderChunk("parameter"); in AddLambdaCompletion() 4435 Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); in AddLambdaCompletion() 4440 Completion.AddChunk(CodeCompletionString::CK_LeftBrace); in AddLambdaCompletion() 4442 Completion.AddPlaceholderChunk("body"); in AddLambdaCompletion() 4444 Completion.AddChunk(CodeCompletionString::CK_RightBrace); in AddLambdaCompletion() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | ASTUnit.h | 271 CodeCompletionString *Completion; member
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 747 CompletionResult::Completion completion; 943 CompletionResult::Completion completion(CompletionSuggestion, Description, in getCompletionForResult()
|
| /freebsd-13.1/contrib/tcsh/ |
| H A D | Fixes | 600 47. Completion fixes from FreeBSD (Mark Peek) 617 32. Completion updates (Tom Warzeka) 655 39. Completion fixes (Tom Warzeka) 699 56. Completion fixes (Tom Warzeka) 1033 84. Completion Fixes from Tom 1152 111. Completion fixes from Bruce. 1189 82. Completion pathname(p) changes: Completion 'C' -> 'X'. 1716 13. Completion builtin, new tw* files. 2091 12. Completion/spelling works with quoted things.
|
| /freebsd-13.1/share/misc/ |
| H A D | scsi_modes | 82 {Extended Self-Test Completion Time} i2
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 122 IOHandlerDelegate(IOHandlerDelegate::Completion::LLDBCommand), in CommandInterpreter()
|