HomeSort by relevance Sort by last modified time
    Searched refs:Completion (Results 1 - 10 of 10) sorted by null

  /external/llvm/unittests/LineEditor/
LineEditor.cpp 44 std::vector<LineEditor::Completion> Completions;
46 TestListCompleter(const std::vector<LineEditor::Completion> &Completions)
49 std::vector<LineEditor::Completion> operator()(StringRef Buffer,
58 std::vector<LineEditor::Completion> Comps;
60 Comps.push_back(LineEditor::Completion("foo", "int foo()"));
66 Comps.push_back(LineEditor::Completion("bar", "int bar()"));
75 Comps.push_back(LineEditor::Completion("fee", "int fee()"));
76 Comps.push_back(LineEditor::Completion("fi", "int fi()"));
77 Comps.push_back(LineEditor::Completion("foe", "int foe()"));
78 Comps.push_back(LineEditor::Completion("fum", "int fum()"))
    [all...]
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 47 /// The action to perform upon a completion request.
65 /// A possible completion at a given cursor position.
66 struct Completion {
67 Completion() {}
68 Completion(const std::string &TypedText, const std::string &DisplayText)
72 /// completion, this should only include the rest of the text.
75 /// A description of this completion. This may be the completion itself, or
91 /// position in the StringRef) and returns a std::vector<Completion>.
97 /// completion request. If the current completer is a list completer, thi
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 143 // A code completion location in/immediately after an identifier will
144 // cause the portion of the identifier before the code completion
145 // location to become a code completion token.
340 // Do not return here. We need to continue to give completion suggestions.
437 // If the prefix of this completion matches the completion token, add it to
440 const MatcherCompletion& Completion) {
441 if (StringRef(Completion.TypedText).startswith(CompToken.Text) &&
442 Completion.Specificity > 0) {
443 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size())
    [all...]
  /external/llvm/lib/LineEditor/
LineEditor.cpp 35 const std::vector<Completion> &Comps) {
39 for (std::vector<Completion>::const_iterator I = Comps.begin() + 1,
56 std::vector<Completion> Comps = getCompletions(Buffer, Pos);
65 // single completion, this will insert the full completion. If there is more
71 for (std::vector<Completion>::iterator I = Comps.begin(), E = Comps.end();
116 // Handles tab completion.
212 ::el_set(Data->EL, EL_ADDFN, "tab_complete", "Tab completion function",
  /libcore/luni/src/main/java/java/util/concurrent/
CompletableFuture.java 20 * completion.
35 * a completion method.
62 * completion. Method {@link #cancel cancel} has the same effect as
67 * <li>In case of exceptional completion with a CompletionException,
76 * <p>Arguments used to pass a completion result (that is, for
91 * A CompletableFuture may have dependent completion actions,
99 * exceptions. Using a single field makes completion simple to
109 * Dependent actions are represented by Completion objects linked
110 * as Treiber stacks headed by field "stack". There are Completion
116 * Completion extends ForkJoinTask to enable async executio
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 98 /// \brief Compute the list of completion types for \p Context.
104 /// the completion point in the argument list). An empty list requests
105 /// completion for the root matcher.
112 /// \param AcceptedTypes All types accepted for this completion.
237 const MatcherCompletion &Completion);
  /external/clang/lib/Frontend/
ASTUnit.cpp 263 /// \brief Determine the set of code-completion contexts in which this
364 CachedResult.Completion = R.CreateCodeCompletionString(
373 // Keep track of the type of this completion in an ASTContext-agnostic
423 // If there any contexts where this completion can be a
425 // nested-name-specifier completion.
427 CachedResult.Completion = R.CreateCodeCompletionString(
448 CachedResult.Completion = R.CreateCodeCompletionString(
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 296 /// \brief Whether we should be caching code-completion results.
321 /// \brief A cached code-completion result, which may be introduced in one of
324 /// \brief The code-completion string corresponding to this completion
326 CodeCompletionString *Completion;
328 /// \brief A bitmask that indicates which code-completion contexts should
329 /// contain this completion result.
332 /// CodeCompleteContext::Kind. To map from a completion context kind to a
337 /// \brief The priority given to this code-completion result.
340 /// \brief The libclang cursor kind corresponding to this code-completion
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 447 TEST_F(RegistryTest, Completion) {
  /frameworks/base/
compiled-classes-phone     [all...]

Completed in 146 milliseconds