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 279 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel)
280 | (1LL << CodeCompletionContext::CCC_ObjCIvarList)
281 | (1LL << CodeCompletionContext::CCC_ClassStructUnion)
282 | (1LL << CodeCompletionContext::CCC_Statement)
283 | (1LL << CodeCompletionContext::CCC_Type)
284 | (1LL << CodeCompletionContext::CCC_ParenthesizedExpression);
288 Contexts |= (1LL << CodeCompletionContext::CCC_Expression);
293 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver);
297 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName);
301 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 {
738 !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement ||
740 == CodeCompletionContext::CCC_ObjCMessageReceiver |
    [all...]
CodeCompleteConsumer.cpp 34 bool CodeCompletionContext::wantConstructorResults() const {
75 llvm_unreachable("Invalid CodeCompletionContext::Kind!");
433 CodeCompletionContext Context,
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 154 class CodeCompletionContext {
189 /// \c CodeCompletionContext::getType().
196 /// \c CodeCompletionContext::getType().
203 /// \c CodeCompletionContext::getType().
279 CodeCompletionContext(enum Kind Kind) : Kind(Kind), SelIdents(None) { }
282 CodeCompletionContext(enum Kind Kind, QualType T,
    [all...]

Completed in 33 milliseconds