Home
last modified time | relevance | path

Searched refs:Completion (Results 1 – 25 of 35) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/LineEditor/
H A DLineEditor.h66 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()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.cpp44 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-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h41 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-14.2/contrib/llvm-project/clang/tools/clang-repl/
H A DClangRepl.cpp91 std::vector<llvm::LineEditor::Completion> operator()(llvm::StringRef Buffer,
93 std::vector<llvm::LineEditor::Completion>
97 std::vector<llvm::LineEditor::Completion>
106 std::vector<llvm::LineEditor::Completion>
109 std::vector<llvm::LineEditor::Completion> Comps; in operator ()()
135 llvm::LineEditor::Completion(c.substr(CC.Prefix.size()), c)); in operator ()()
/freebsd-14.2/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp37 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()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h192 enum class Completion { None, LLDBCommand, Expression }; enum
194 IOHandlerDelegate(Completion completion = Completion::None)
286 Completion m_completion; // Support for common builtin completions
296 Completion completion = Completion::None)
/freebsd-14.2/sys/contrib/device-tree/Bindings/scsi/
H A Dhisilicon-sas.txt24 - 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-14.2/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp737 const MatcherCompletion& Completion) { in addCompletion() argument
738 if (StringRef(Completion.TypedText).starts_with(CompToken.Text) && in addCompletion()
739 Completion.Specificity > 0) { in addCompletion()
740 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()), in addCompletion()
741 Completion.MatcherDecl, Completion.Specificity); in addCompletion()
774 for (const auto &Completion : S->getMatcherCompletions(AcceptedTypes)) { in addExpressionCompletions() local
775 addCompletion(CompToken, Completion); in addExpressionCompletions()
778 for (const auto &Completion : getNamedValueCompletions(AcceptedTypes)) { in addExpressionCompletions() local
779 addCompletion(CompToken, Completion); in addExpressionCompletions()
/freebsd-14.2/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp122 for (llvm::StringRef Completion : O.Completions) in emitOption() local
123 CompletionArgs.push_back("e" + Completion.str() + "Completion"); in emitOption()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td39 Completion<"DiskFile">,
47 Completion<"DiskFile">,
151 Completion<"Symbol">,
270 Completion<"DiskFile">,
278 Completion<"DiskFile">,
419 Completion<"Module">,
423 Completion<"Symbol">,
851 Completion<"Symbol">,
862 Completion<"Module">,
872 Completion<"Symbol">,
[all …]
H A DOptionsBase.td67 // - `Completion`: Gives the option a single completion kind.
69 // Completion<"DiskFile">;
169 class Completion<string completion> {
H A DCommandObjectWatchpointCommand.cpp40 IOHandlerDelegate::Completion::LLDBCommand) { in CommandObjectWatchpointCommandAdd()
H A DCommandObjectBreakpointCommand.cpp42 IOHandlerDelegate::Completion::LLDBCommand), in CommandObjectBreakpointCommandAdd()
H A DCommandObjectExpression.cpp259 IOHandlerDelegate(IOHandlerDelegate::Completion::Expression), in CommandObjectExpression()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp212 case Completion::None: in IOHandlerComplete()
214 case Completion::LLDBCommand: in IOHandlerComplete()
217 case Completion::Expression: in IOHandlerComplete()
/freebsd-14.2/tools/build/options/
H A DWITH_DIRDEPS_BUILD41 Completion would require leaf directories for building each kernel
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp390 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
453 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
474 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
2109 HiddenNames.count(C->Completion->getTypedText())) in ProcessCodeCompleteResults()
2114 CodeCompletionString *Completion = C->Completion; in ProcessCodeCompleteResults() local
2117 Priority = getMacroUsagePriority(C->Completion->getTypedText(), in ProcessCodeCompleteResults()
2146 Builder.AddTypedTextChunk(C->Completion->getTypedText()); in ProcessCodeCompleteResults()
2148 Completion = Builder.TakeString(); in ProcessCodeCompleteResults()
2151 AllResults.push_back(Result(Completion, Priority, C->Kind, in ProcessCodeCompleteResults()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h262 const MatcherCompletion &Completion);
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp936 llvm::ArrayRef<CompletionResult::Completion> results, in PrintCompletion()
938 for (const CompletionResult::Completion &c : results) { in PrintCompletion()
947 Editline &editline, llvm::ArrayRef<CompletionResult::Completion> results) { in DisplayCompletions()
1018 llvm::ArrayRef<CompletionResult::Completion> results = result.GetResults(); in TabCommand()
1027 CompletionResult::Completion completion = results.front(); in TabCommand()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h168 llvm::ArrayRef<CompletionResult::Completion> results);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp4593 if (Completion == AttributeCompletion::None) in CodeCompleteAttribute()
4641 if (Completion == AttributeCompletion::Scope) { in CodeCompleteAttribute()
4797 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local
4801 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion()
4820 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion()
4822 Completion.AddPlaceholderChunk("parameter"); in AddLambdaCompletion()
4823 Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); in AddLambdaCompletion()
4828 Completion.AddChunk(CodeCompletionString::CK_LeftBrace); in AddLambdaCompletion()
4830 Completion.AddPlaceholderChunk("body"); in AddLambdaCompletion()
4832 Completion.AddChunk(CodeCompletionString::CK_RightBrace); in AddLambdaCompletion()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp720 CompletionResult::Completion completion;
916 CompletionResult::Completion completion(CompletionSuggestion, Description, in getCompletionForResult()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTUnit.h273 CodeCompletionString *Completion; member
/freebsd-14.2/contrib/tcsh/
H A DFixes600 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-14.2/share/misc/
H A Dscsi_modes81 {Extended Self-Test Completion Time} i2

12