/external/llvm/unittests/LineEditor/ |
D | LineEditor.cpp | 44 std::vector<LineEditor::Completion> Completions; 46 TestListCompleter(const std::vector<LineEditor::Completion> &Completions) in TestListCompleter() 49 std::vector<LineEditor::Completion> operator()(StringRef Buffer, in operator ()() 58 std::vector<LineEditor::Completion> Comps; in TEST_F() 60 Comps.push_back(LineEditor::Completion("foo", "int foo()")); in TEST_F() 66 Comps.push_back(LineEditor::Completion("bar", "int bar()")); in TEST_F() 75 Comps.push_back(LineEditor::Completion("fee", "int fee()")); in TEST_F() 76 Comps.push_back(LineEditor::Completion("fi", "int fi()")); in TEST_F() 77 Comps.push_back(LineEditor::Completion("foe", "int foe()")); in TEST_F() 78 Comps.push_back(LineEditor::Completion("fum", "int fum()")); in TEST_F()
|
/external/llvm/include/llvm/LineEditor/ |
D | LineEditor.h | 67 struct Completion { struct 68 Completion() {} in Completion() argument 69 Completion(const std::string &TypedText, const std::string &DisplayText) in Completion() function 125 static std::string getCommonPrefix(const std::vector<Completion> &Comps); 126 virtual std::vector<Completion> getCompletions(StringRef Buffer, 142 std::vector<Completion> getCompletions(StringRef Buffer, in getCompletions()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Parser.cpp | 440 const MatcherCompletion& Completion) { in addCompletion() argument 441 if (StringRef(Completion.TypedText).startswith(CompToken.Text) && in addCompletion() 442 Completion.Specificity > 0) { in addCompletion() 443 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()), in addCompletion() 444 Completion.MatcherDecl, Completion.Specificity); in addCompletion() 477 for (const auto &Completion : S->getMatcherCompletions(AcceptedTypes)) { in addExpressionCompletions() local 478 addCompletion(CompToken, Completion); in addExpressionCompletions() 481 for (const auto &Completion : getNamedValueCompletions(AcceptedTypes)) { in addExpressionCompletions() local 482 addCompletion(CompToken, Completion); in addExpressionCompletions()
|
/external/clang/test/Index/ |
D | complete-member-access.m | 48 // CHECK-CC1: Completion contexts: 56 // CHECK-CC2: Completion contexts: 66 // CHECK-CC3: Completion contexts:
|
D | rdar12316296-codecompletion.m | 4 // <rdar://12316296> clang Code Completion returns nothing but preprocessor macros
|
D | complete-natural.m | 14 // CHECK-CC1: Completion contexts:
|
D | complete-objc-message.m | 207 // CHECK-CC1: Completion contexts: 216 // CHECK-CC2: Completion contexts:
|
/external/llvm/lib/LineEditor/ |
D | LineEditor.cpp | 37 const std::vector<Completion> &Comps) { in getCommonPrefix() 41 for (std::vector<Completion>::const_iterator I = Comps.begin() + 1, in getCommonPrefix() 58 std::vector<Completion> Comps = getCompletions(Buffer, Pos); in complete() 73 for (std::vector<Completion>::iterator I = Comps.begin(), E = Comps.end(); in complete()
|
/external/ltp/testcases/open_posix_testsuite/Documentation/ |
D | COVERAGE.mqueues | 20 // Function Complete? Priority Est. Completion
|
D | HOWTO_Coverage | 16 Completion of POSIX Function Conformance Tests
|
/external/clang/lib/Frontend/ |
D | ASTUnit.cpp | 364 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults() 427 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults() 448 CachedResult.Completion = R.CreateCodeCompletionString( in CacheCodeCompletionResults() 2260 HiddenNames.count(C->Completion->getTypedText())) in ProcessCodeCompleteResults() 2265 CodeCompletionString *Completion = C->Completion; in ProcessCodeCompleteResults() local 2268 Priority = getMacroUsagePriority(C->Completion->getTypedText(), in ProcessCodeCompleteResults() 2297 Builder.AddTypedTextChunk(C->Completion->getTypedText()); in ProcessCodeCompleteResults() 2299 Completion = Builder.TakeString(); in ProcessCodeCompleteResults() 2302 AllResults.push_back(Result(Completion, Priority, C->Kind, in ProcessCodeCompleteResults()
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
D | Parser.h | 237 const MatcherCompletion &Completion);
|
/external/python/cpython2/Doc/library/ |
D | rlcompleter.rst | 1 :mod:`rlcompleter` --- Completion function for GNU readline
|
D | readline.rst | 193 Completion chapter
|
/external/lisa/ipynb/examples/utils/ |
D | executor_example.ipynb | 306 …"2016-12-07 10:18:14,664 INFO : perf_bench : PerfBench - Completion time: 0.010000, Perf… 333 …"2016-12-07 10:18:30,089 INFO : perf_bench : PerfBench - Completion time: 0.009000, Perf…
|
/external/clang/include/clang/Frontend/ |
D | ASTUnit.h | 326 CodeCompletionString *Completion; member
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
D | RegistryTest.cpp | 447 TEST_F(RegistryTest, Completion) { in TEST_F() argument
|
/external/lisa/ipynb/tutorial/ |
D | 04_ExecutorUsage.ipynb | 439 "05:01:44 INFO : PerfBench - Completion time: 0.012000, Performance 83.333333\n", 521 "05:02:23 INFO : PerfBench - Completion time: 0.080000, Performance 12.500000\n", 580 "05:02:56 INFO : PerfBench - Completion time: 0.083000, Performance 12.048193\n",
|
D | 03_WlGenUsage.ipynb | 1305 "01:08:32 INFO : PerfBench - Completion time: 0.126000, Performance 7.936508\n",
|
/external/fio/ |
D | HOWTO | 3047 Completion latency. Same names as slat, this denotes the time from 3170 Completion latency: min, max, mean, stdev (usec) 3171 Completion latency percentiles: 20 fields (see below) 3181 Completion latency: min, max, mean, stdev(usec) 3182 Completion latency percentiles: 20 fields (see below) 3217 Completion latency percentiles can be a grouping of up to 20 sets, so for the
|
/external/deqp/doc/testspecs/VK/ |
D | apitests.adoc | 398 ** Completion of first cmdbuf will reset fence and others won't do anything?
|
/external/brotli/tests/testdata/ |
D | lcet10.txt | 2040 Completion of all five Founding Fathers projects (i.e., retrievability
|
/external/libxml2/ |
D | ChangeLog | 3054 include/libxml/xmlerror.h: Completion of the schema graph.
|