OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Completions
(Results
1 - 7
of
7
) sorted by null
/external/llvm/unittests/LineEditor/
LineEditor.cpp
44
std::vector<LineEditor::Completion>
Completions
;
46
TestListCompleter(const std::vector<LineEditor::Completion> &
Completions
)
47
:
Completions
(
Completions
) {}
53
return
Completions
;
70
ASSERT_EQ(2u, CA.
Completions
.size());
71
ASSERT_EQ("int foo()", CA.
Completions
[0]);
72
ASSERT_EQ("int bar()", CA.
Completions
[1]);
/external/llvm/lib/LineEditor/
LineEditor.cpp
67
// not the user can also hit tab again to see the
completions
because the
73
Action.
Completions
.push_back(I->DisplayText);
151
if (Action.
Completions
.empty()) {
169
// Emit the
completions
.
170
for (std::vector<std::string>::iterator I = Action.
Completions
.begin(),
171
E = Action.
Completions
.end();
/external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp
438
//
Completions
minus the prefix.
443
Completions
.emplace_back(Completion.TypedText.substr(CompToken.Text.size()),
581
std::sort(P.
Completions
.begin(), P.
Completions
.end(),
588
return P.
Completions
;
Registry.cpp
451
std::vector<MatcherCompletion>
Completions
;
521
Completions
.emplace_back(TypedText, OS.str(), MaxSpecificity);
525
return
Completions
;
/external/llvm/include/llvm/LineEditor/
LineEditor.h
52
/// Show
Completions
, or beep if the list is empty.
61
/// The list of
completions
to show.
62
std::vector<std::string>
Completions
;
/external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h
109
/// \brief Compute the list of
completions
that match any of
114
/// \return All
completions
for the specified types.
115
///
Completions
should be valid when used in \c lookupMatcherCtor().
208
/// \return The list of
completions
, which may be empty if there are no
209
/// available
completions
or if an error occurred.
250
std::vector<MatcherCompletion>
Completions
;
/external/v8/test/unittests/compiler/
instruction-sequence-unittest.h
230
typedef std::vector<BlockCompletion>
Completions
;
240
Completions
completions_;
Completed in 284 milliseconds