Home
last modified time | relevance | path

Searched refs:PseudoObject (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprObjC.h653 assert(t->isSpecificPlaceholderType(BuiltinType::PseudoObject)); in ObjCPropertyRefExpr()
662 assert(t->isSpecificPlaceholderType(BuiltinType::PseudoObject)); in ObjCPropertyRefExpr()
672 assert(T->isSpecificPlaceholderType(BuiltinType::PseudoObject)); in ObjCPropertyRefExpr()
683 assert(T->isSpecificPlaceholderType(BuiltinType::PseudoObject)); in ObjCPropertyRefExpr()
694 assert(T->isSpecificPlaceholderType(BuiltinType::PseudoObject)); in ObjCPropertyRefExpr()
H A DBuiltinTypes.def307 PLACEHOLDER_TYPE(PseudoObject, PseudoObjectTy)
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.cpp195 case BuiltinType::PseudoObject: in TypeIdxFromBuiltin()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DNSAPI.cpp467 case BuiltinType::PseudoObject: in getNSNumberFactoryMethodKind()
H A DTypeLoc.cpp407 case BuiltinType::PseudoObject: in getWrittenTypeSpec()
H A DType.cpp3501 case PseudoObject: in getName()
4995 case BuiltinType::PseudoObject: in canHaveNullability()
H A DASTContext.cpp1398 InitBuiltinType(PseudoObjectTy, BuiltinType::PseudoObject); in InitBuiltinTypes()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp1588 assert(syntax->hasPlaceholderType(BuiltinType::PseudoObject)); in recreateSyntacticForm()
H A DSemaExpr.cpp6246 case BuiltinType::PseudoObject: in isPlaceholderToRemoveAsArg()
13747 assert(!E->hasPlaceholderType(BuiltinType::PseudoObject)); in CheckForModifiableLvalue()
13923 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject)); in CheckAssignmentOperands()
15508 if (pty->getKind() == BuiltinType::PseudoObject && in BuildBinOp()
15510 return PseudoObject().checkAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr); in BuildBinOp()
15929 if (pty->getKind() == BuiltinType::PseudoObject && in BuildUnaryOp()
15931 return PseudoObject().checkIncDec(S, OpLoc, Opc, Input); in BuildUnaryOp()
21301 case BuiltinType::PseudoObject: in CheckPlaceholderExpr()
21302 return PseudoObject().checkRValue(E); in CheckPlaceholderExpr()
H A DTreeTransform.h13161 Expr *newSyntacticForm = SemaRef.PseudoObject().recreateSyntacticForm(E); in TransformPseudoObjectExpr()
13168 if (result.get()->hasPlaceholderType(BuiltinType::PseudoObject)) in TransformPseudoObjectExpr()
13169 result = SemaRef.PseudoObject().checkRValue(result.get()); in TransformPseudoObjectExpr()
17492 return SemaRef.PseudoObject().checkAssignment(/*Scope=*/nullptr, OpLoc, in RebuildCXXOperatorCallExpr()
H A DSemaChecking.cpp760 case BuiltinType::PseudoObject: in BuiltinDumpStruct()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp5009 case clang::BuiltinType::Kind::PseudoObject: in GetEncoding()
6097 case clang::BuiltinType::PseudoObject: in GetNumPointeeChildren()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1499 SemaPseudoObject &PseudoObject() { in PseudoObject() function