Home
last modified time | relevance | path

Searched refs:CFConstantStringTypeDecl (Results 1 – 3 of 3) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DASTContext.h240 mutable RecordDecl *CFConstantStringTypeDecl; variable
1270 if (CFConstantStringTypeDecl) in getRawCFConstantStringType()
1271 return getTagDeclType(CFConstantStringTypeDecl); in getRawCFConstantStringType()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DASTContext.cpp737 CFConstantStringTypeDecl(nullptr), ObjCInstanceTypeDecl(nullptr), in ASTContext()
4638 if (!CFConstantStringTypeDecl) { in getCFConstantStringType()
4639 CFConstantStringTypeDecl = buildImplicitRecord("NSConstantString"); in getCFConstantStringType()
4640 CFConstantStringTypeDecl->startDefinition(); in getCFConstantStringType()
4655 FieldDecl *Field = FieldDecl::Create(*this, CFConstantStringTypeDecl, in getCFConstantStringType()
4663 CFConstantStringTypeDecl->addDecl(Field); in getCFConstantStringType()
4666 CFConstantStringTypeDecl->completeDefinition(); in getCFConstantStringType()
4669 return getTagDeclType(CFConstantStringTypeDecl); in getCFConstantStringType()
4684 CFConstantStringTypeDecl = Rec->getDecl(); in setCFConstantStringType()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp3939 if (!Context.CFConstantStringTypeDecl) in InitializeContext()