Home
last modified time | relevance | path

Searched refs:Completions (Results 1 – 14 of 14) sorted by relevance

/external/llvm/unittests/LineEditor/
DLineEditor.cpp44 std::vector<LineEditor::Completion> Completions; member
46 TestListCompleter(const std::vector<LineEditor::Completion> &Completions) in TestListCompleter()
47 : Completions(Completions) {} in TestListCompleter()
53 return Completions; in operator ()()
70 ASSERT_EQ(2u, CA.Completions.size()); in TEST_F()
71 ASSERT_EQ("int foo()", CA.Completions[0]); in TEST_F()
72 ASSERT_EQ("int bar()", CA.Completions[1]); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/LineEditor/
DLineEditor.cpp44 std::vector<LineEditor::Completion> Completions; member
46 TestListCompleter(const std::vector<LineEditor::Completion> &Completions) in TestListCompleter()
47 : Completions(Completions) {} in TestListCompleter()
53 return Completions; in operator ()()
70 ASSERT_EQ(2u, CA.Completions.size()); in TEST_F()
71 ASSERT_EQ("int foo()", CA.Completions[0]); in TEST_F()
72 ASSERT_EQ("int bar()", CA.Completions[1]); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LineEditor/
DLineEditor.cpp75 Action.Completions.push_back(I->DisplayText); in complete()
155 if (Action.Completions.empty()) { in ElCompletionFn()
174 for (std::vector<std::string>::iterator I = Action.Completions.begin(), in ElCompletionFn()
175 E = Action.Completions.end(); in ElCompletionFn()
/external/llvm/lib/LineEditor/
DLineEditor.cpp75 Action.Completions.push_back(I->DisplayText); in complete()
155 if (Action.Completions.empty()) { in ElCompletionFn()
174 for (std::vector<std::string>::iterator I = Action.Completions.begin(), in ElCompletionFn()
175 E = Action.Completions.end(); in ElCompletionFn()
/external/python/cpython2/Lib/idlelib/
Dhelp.txt49 Show Completions -- Open a scroll window allowing selection keywords
187 Completions:
189 Completions are supplied for functions, classes, and attributes of
190 classes, both built-in and user-defined. Completions are also provided
202 'Show Completions' will force open a completions window. In an empty
219 Completions and the 'Expand Word' facility can save a lot of typing!
221 Completions are currently limited to those in the namespaces. Names in
DREADME.txt158 Show Completions # AutoComplete extension and AutoCompleteWidow (&HP)
/external/clang/lib/ASTMatchers/Dynamic/
DParser.cpp443 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()), in addCompletion()
581 std::sort(P.Completions.begin(), P.Completions.end(), in completeExpression()
588 return P.Completions; in completeExpression()
DRegistry.cpp493 std::vector<MatcherCompletion> Completions; in getMatcherCompletions() local
563 Completions.emplace_back(TypedText, OS.str(), MaxSpecificity); in getMatcherCompletions()
567 return Completions; in getMatcherCompletions()
/external/llvm/include/llvm/LineEditor/
DLineEditor.h63 std::vector<std::string> Completions; member
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LineEditor/
DLineEditor.h63 std::vector<std::string> Completions; member
/external/python/cpython2/Doc/library/
Didle.rst139 Show Completions
141 Completions in the Tips sections below.
398 Completions section in Editing and navigation
401 Completions are supplied for functions, classes, and attributes of classes,
402 both built-in and user-defined. Completions are also provided for
413 'Show Completions' will force open a completions window, by default the
431 Completions and the 'Expand Word' facility can save a lot of typing!
433 Completions are currently limited to those in the namespaces. Names in
/external/clang/include/clang/ASTMatchers/Dynamic/
DParser.h250 std::vector<MatcherCompletion> Completions; variable
/external/python/cpython3/Doc/library/
Didle.rst147 Show Completions
149 :ref:`Completions <completions>` in the Editing and navigation section below.
472 Completions section in Editing and navigation
475 Completions are supplied for functions, classes, and attributes of classes,
476 both built-in and user-defined. Completions are also provided for
487 'Show Completions' will force open a completions window, by default the
505 Completions and the 'Expand Word' facility can save a lot of typing!
507 Completions are currently limited to those in the namespaces. Names in
/external/python/cpython3/Lib/idlelib/
DREADME.txt157 Show Completions # autocomplete extension and autocompleteWidow (&HP)