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

  /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/include/clang/Frontend/
ASTUnit.h 294 /// \brief Whether we should be caching code-completion results.
319 /// \brief A cached code-completion result, which may be introduced in one of
322 /// \brief The code-completion string corresponding to this completion
324 CodeCompletionString *Completion;
326 /// \brief A bitmask that indicates which code-completion contexts should
327 /// contain this completion result.
330 /// CodeCompleteContext::Kind. To map from a completion context kind to a
335 /// \brief The priority given to this code-completion result.
338 /// \brief The libclang cursor kind corresponding to this code-completion
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 262 /// \brief Determine the set of code-completion contexts in which this
362 CachedResult.Completion = R.CreateCodeCompletionString(
371 // Keep track of the type of this completion in an ASTContext-agnostic
421 // If there any contexts where this completion can be a
423 // nested-name-specifier completion.
425 CachedResult.Completion = R.CreateCodeCompletionString(
446 CachedResult.Completion = R.CreateCodeCompletionString(
    [all...]

Completed in 54 milliseconds