Home
last modified time | relevance | path

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

12

/freebsd/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() 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/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/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;
71 /// \see CompletionResult::Completion::GetUniqueKey
78 llvm::ArrayRef<Completion> GetResults() const { return m_results; } in GetResults()
183 // argument never makes sense. Completion modes are always hardcoded, so
/freebsd/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/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/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/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/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td67 // - `Completion`: Gives the option a single completion kind.
69 // Completion<"DiskFile">;
169 class Completion<string completion> {
H A DOptions.td39 Completion<"DiskFile">,
47 Completion<"DiskFile">,
117 Completion<"Module">, Groups<[1,2,3,4,5,6,7,8,9,11,12]>, // *not* in group 10
123 Completion<"SourceFile">, Groups<[1,3,4,5,6,7,8,9,11]>,
146 Completion<"Symbol">, Required,
151 Completion<"Symbol">,
155 Arg<"FullName">, Required, Completion<"Symbol">,
171 Arg<"FunctionName">, Required, Completion<"Symbol">,
214 Required, Completion<"SourceFile">,
226 Completion<"SourceFile">,
[all …]
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()
H A DCommandObjectCommands.cpp749 IOHandlerDelegate::Completion::LLDBCommand) { in CommandObjectCommandsAddRegex()
/freebsd/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/tools/build/options/
H A DWITH_DIRDEPS_BUILD41 Completion would require leaf directories for building each kernel
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp391 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
454 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
475 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults()
2122 HiddenNames.count(C->Completion->getTypedText())) in ProcessCodeCompleteResults()
2127 CodeCompletionString *Completion = C->Completion; in ProcessCodeCompleteResults() local
2130 Priority = getMacroUsagePriority(C->Completion->getTypedText(), in ProcessCodeCompleteResults()
2159 Builder.AddTypedTextChunk(C->Completion->getTypedText()); in ProcessCodeCompleteResults()
2161 Completion = Builder.TakeString(); in ProcessCodeCompleteResults()
2164 AllResults.push_back(Result(Completion, Priority, C->Kind, in ProcessCodeCompleteResults()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp922 llvm::ArrayRef<CompletionResult::Completion> results, in PrintCompletion()
924 for (const CompletionResult::Completion &c : results) { in PrintCompletion()
933 Editline &editline, llvm::ArrayRef<CompletionResult::Completion> results) { in DisplayCompletions()
1004 llvm::ArrayRef<CompletionResult::Completion> results = result.GetResults(); in TabCommand()
1013 CompletionResult::Completion completion = results.front(); in TabCommand()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h262 const MatcherCompletion &Completion);
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaCodeCompletion.h124 AttributeCompletion Completion = AttributeCompletion::Attribute,
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h168 llvm::ArrayRef<CompletionResult::Completion> results);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp4600 AttributeCommonInfo::Syntax Syntax, AttributeCompletion Completion, in CodeCompleteAttribute() argument
4602 if (Completion == AttributeCompletion::None) in CodeCompleteAttribute()
4651 if (Completion == AttributeCompletion::Scope) { in CodeCompleteAttribute()
4808 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local
4811 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion()
4812 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion()
4813 Completion.AddChunk(CodeCompletionString::CK_RightBracket); in AddLambdaCompletion()
4815 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion()
4819 Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); in AddLambdaCompletion()
4831 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp723 CompletionResult::Completion completion;
919 CompletionResult::Completion completion(CompletionSuggestion, Description, in getCompletionForResult()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTUnit.h273 CodeCompletionString *Completion; member
/freebsd/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/share/misc/
H A Dscsi_modes81 {Extended Self-Test Completion Time} i2

12