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

  /external/clang/lib/Frontend/
ASTUnit.cpp 283 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel)
284 | (1LL << CodeCompletionContext::CCC_ObjCIvarList)
285 | (1LL << CodeCompletionContext::CCC_ClassStructUnion)
286 | (1LL << CodeCompletionContext::CCC_Statement)
287 | (1LL << CodeCompletionContext::CCC_Type)
288 | (1LL << CodeCompletionContext::CCC_ParenthesizedExpression);
292 Contexts |= (1LL << CodeCompletionContext::CCC_Expression);
297 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver);
301 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName);
305 Contexts |= (1LL << CodeCompletionContext::CCC_EnumTag)
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 292 enum clang::CodeCompletionContext::Kind ContextKind;
353 enum CodeCompletionContext::Kind kind,
357 case CodeCompletionContext::CCC_OtherWithMacros: {
363 case CodeCompletionContext::CCC_TopLevel:
364 case CodeCompletionContext::CCC_ObjCIvarList:
365 case CodeCompletionContext::CCC_ClassStructUnion:
366 case CodeCompletionContext::CCC_Type: {
378 case CodeCompletionContext::CCC_Statement: {
391 case CodeCompletionContext::CCC_Expression: {
404 case CodeCompletionContext::CCC_ObjCMessageReceiver:
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 161 CodeCompletionContext CompletionContext;
174 const CodeCompletionContext &CompletionContext,
185 case CodeCompletionContext::CCC_Expression:
186 case CodeCompletionContext::CCC_ObjCMessageReceiver:
187 case CodeCompletionContext::CCC_ParenthesizedExpression:
188 case CodeCompletionContext::CCC_Statement:
189 case CodeCompletionContext::CCC_Recovery:
248 const CodeCompletionContext &getCompletionContext() const {
739 !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement ||
741 == CodeCompletionContext::CCC_ObjCMessageReceiver |
    [all...]
CodeCompleteConsumer.cpp 34 bool CodeCompletionContext::wantConstructorResults() const {
75 llvm_unreachable("Invalid CodeCompletionContext::Kind!");
436 CodeCompletionContext Context,
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 153 class CodeCompletionContext {
188 /// \c CodeCompletionContext::getType().
195 /// \c CodeCompletionContext::getType().
202 /// \c CodeCompletionContext::getType().
278 CodeCompletionContext(enum Kind Kind) : Kind(Kind), SelIdents(None) { }
281 CodeCompletionContext(enum Kind Kind, QualType T,
    [all...]

Completed in 50 milliseconds