| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LineEditor/ |
| H A D | LineEditor.h | 66 struct Completion { struct 67 Completion() {} in Completion() argument 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()
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/gpl3/gdb/dist/readline/readline/doc/ |
| H A D | readline.info | 446 Completion characters will be inserted into the line as if 981 * Commands For Completion:: Getting Readline to do the typing for you. 1313 File: readline.info, Node: Numeric Arguments, Next: Commands For Completion, Prev: Commands For … 1336 File: readline.info, Node: Commands For Completion, Next: Keyboard Macros, Prev: Numeric Argumen… 1381 …e: Keyboard Macros, Next: Miscellaneous Commands, Prev: Commands For Completion, Up: Bindable R… 3218 * Completion Functions:: Functions provided by Readline. 3219 * Completion Variables:: Variables which control completion. 3220 * A Short Completion Example:: An example of writing completer subroutines. 3223 File: readline.info, Node: How Completing Works, Next: Completion Functions, Up: Custom Complete… 3284 File: readline.info, Node: Completion Functions, Next: Completion Variables, Prev: How Completin… [all …]
|
| H A D | rluser.texi | 71 * Programmable Completion:: How to specify the possible completions for 73 * Programmable Completion Builtins:: Builtin commands to specify how to 75 * A Programmable Completion Example:: An example shell function for 515 Completion characters will be inserted into the line as if they had 1139 * Commands For Completion:: Getting Readline to do the typing for you. 1540 @node Commands For Completion 1866 @node Programmable Completion 1867 @section Programmable Completion 1872 using the @code{complete} builtin (@pxref{Programmable Completion Builtins}), 1894 described above (@pxref{Commands For Completion}) is performed. [all …]
|
| H A D | rltech.texi | 1832 * Completion Functions:: Functions provided by Readline. 1833 * Completion Variables:: Variables which control completion. 1834 * A Short Completion Example:: An example of writing completer subroutines. 1905 @node Completion Functions 1906 @subsection Completion Functions 1981 @node Completion Variables 1982 @subsection Completion Variables 2153 Completion occurs on the entire substring, and within the substring 2277 (@pxref{Completion Functions}) for the list of characters. 2295 @node A Short Completion Example [all …]
|
| H A D | rluserman.info | 444 Completion characters will be inserted into the line as if 979 * Commands For Completion:: Getting Readline to do the typing for you. 1311 File: rluserman.info, Node: Numeric Arguments, Next: Commands For Completion, Prev: Commands For… 1334 File: rluserman.info, Node: Commands For Completion, Next: Keyboard Macros, Prev: Numeric Argume… 1379 …e: Keyboard Macros, Next: Miscellaneous Commands, Prev: Commands For Completion, Up: Bindable R… 2020 Node: Commands For Completion56646
|
| /netbsd-src/external/apache2/llvm/dist/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() 2061 HiddenNames.count(C->Completion->getTypedText())) in ProcessCodeCompleteResults() 2066 CodeCompletionString *Completion = C->Completion; in ProcessCodeCompleteResults() local 2069 Priority = getMacroUsagePriority(C->Completion->getTypedText(), in ProcessCodeCompleteResults() 2098 Builder.AddTypedTextChunk(C->Completion->getTypedText()); in ProcessCodeCompleteResults() 2100 Completion = Builder.TakeString(); in ProcessCodeCompleteResults() 2103 AllResults.push_back(Result(Completion, Priority, C->Kind, in ProcessCodeCompleteResults()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | Parser.h | 262 const MatcherCompletion &Completion);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 4406 CodeCompletionBuilder Completion(Results.getAllocator(), in AddLambdaCompletion() local 4409 Completion.AddChunk(CodeCompletionString::CK_LeftBracket); in AddLambdaCompletion() 4410 Completion.AddPlaceholderChunk("="); in AddLambdaCompletion() 4411 Completion.AddChunk(CodeCompletionString::CK_RightBracket); in AddLambdaCompletion() 4413 Completion.AddChunk(CodeCompletionString::CK_LeftParen); in AddLambdaCompletion() 4417 Completion.AddChunk(CodeCompletionString::ChunkKind::CK_Comma); in AddLambdaCompletion() 4429 Completion.AddTextChunk(Completion.getAllocator().CopyString(Prefix)); in AddLambdaCompletion() 4430 Completion.AddChunk(CodeCompletionString::CK_HorizontalSpace); in AddLambdaCompletion() 4431 Completion.AddPlaceholderChunk("parameter"); in AddLambdaCompletion() 4432 Completion.AddTextChunk(Completion.getAllocator().CopyString(Suffix)); in AddLambdaCompletion() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/ |
| H A D | marvell-pj4.md | 32 ;; Completion ports
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/ |
| H A D | marvell-pj4.md | 32 ;; Completion ports
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nds32/ |
| H A D | nds32-n7.md | 40 ;; Load Data Completion
|
| H A D | nds32-e8.md | 34 ;; EXD - Psuedo Stage / Load Data Completion
|
| H A D | nds32-n8.md | 34 ;; EXD - Psuedo Stage / Load Data Completion
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/nds32/ |
| H A D | nds32-n7.md | 40 ;; Load Data Completion
|
| H A D | nds32-e8.md | 34 ;; EXD - Psuedo Stage / Load Data Completion
|
| H A D | nds32-n8.md | 34 ;; EXD - Psuedo Stage / Load Data Completion
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| H A D | ASTUnit.h | 271 CodeCompletionString *Completion; member
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| H A D | mm-viet.pot | 3671 msgid "Word Completion Plugin" 3675 msgid "Configure the Word Completion Plugin" 3687 msgid "Pop Up Completion List" 3691 msgid "Shell Completion" 3695 msgid "Automatic Completion Popup"
|
| H A D | mm-viet.out | 4050 msgid "Word Completion Plugin" 4055 msgid "Configure the Word Completion Plugin" 4068 msgid "Pop Up Completion List" 4073 msgid "Shell Completion" 4078 msgid "Automatic Completion Popup"
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
| H A D | executor | 1584 // Completion token for asynchronous operations initiated with use_future. 1669 // Completion handler for asynchronous operations initiated with use_future.
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
| H A D | executor | 1618 // Completion token for asynchronous operations initiated with use_future. 1703 // Completion handler for asynchronous operations initiated with use_future.
|
| /netbsd-src/external/gpl2/texinfo/dist/doc/ |
| H A D | info-stnd.texi | 1145 Completion is available while reading the menu label. @xref{The Echo 1166 its node. Completion is available while reading the cross reference 1805 then set the variable to that value. Completion is available when
|
| /netbsd-src/external/mpl/bind/dist/tests/dns/testdata/dst/ |
| H A D | test2.data | 113 6.5. Completion queries and responses 42 2331 6.5. Completion queries and responses 2990 Completion 42
|