| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | RecordOps.cpp | 41 assert(Field->getType()->isReferenceType() || in copyRecord() 47 } else if (Field->getType()->isReferenceType()) { in copyRecord() 90 assert(Field->getType()->isReferenceType() || in recordsEqual() 97 } else if (Field->getType()->isReferenceType()) { in recordsEqual()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | StorageLocation.h | 40 assert(Type.isNull() || !Type->isReferenceType()); in StorageLocation() 107 if (!Field->getType()->isReferenceType() && Loc == nullptr) in RecordStorageLocation() 163 assert(D.getType()->isReferenceType()); in setChild()
|
| H A D | DataflowEnvironment.h | 357 !getCurrentFunc()->getReturnType()->isReferenceType()); in getReturnValue() 369 getCurrentFunc()->getReturnType()->isReferenceType()); in getReturnStorageLocation() 379 !getCurrentFunc()->getReturnType()->isReferenceType()); in setReturnValue() 390 getCurrentFunc()->getReturnType()->isReferenceType()); in setReturnStorageLocation()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConv.h | 269 (FromTy->isReferenceType() ^ ToTy->isReferenceType())) { in fromCast() 513 Ty->isBlockPointerType() || Ty->isReferenceType()) { in getZeroExpr() 618 (LTy->isReferenceType() || RTy->isReferenceType())) { in doTypeConversion() 629 (LTy->isReferenceType() ^ RTy->isReferenceType())) { in doTypeConversion() 631 LTy->isReferenceType()) { in doTypeConversion()
|
| H A D | SValBuilder.h | 361 type->isReferenceType()) && in makeNullWithType() 367 type = type->isReferenceType() in makeNullWithType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CastValueChecker.cpp | 220 if (!CastFromTy->isReferenceType()) in addCastTransition() 284 if (MR && CastFromTy->isReferenceType()) in addInstanceOfTransition() 292 else if (CastFromTy->isReferenceType()) in addInstanceOfTransition() 485 !(ParamT->isReferenceType() && ResultT->isReferenceType())) { in evalCall()
|
| H A D | DereferenceChecker.cpp | 150 return DRE->getDecl()->getType()->isReferenceType(); in isDeclRefExprToReference() 295 if (!TVR->getValueType()->isReferenceType()) in checkBind()
|
| H A D | ReturnUndefChecker.cpp | 74 if (RT->isReferenceType()) { in checkPreStmt()
|
| H A D | CastToStructChecker.cpp | 83 if (!VD || VD->getType()->isReferenceType()) in VisitCastExpr()
|
| H A D | CallAndMessageChecker.cpp | 209 } else if (ParamDecl->getType()->isReferenceType()) { in uninitRefOrPointer() 648 if (ResTy->isReferenceType()) { in emitNilReceiverBug() 698 if (CanRetTy.getTypePtr()->isReferenceType()|| in HandleNilReceiver()
|
| H A D | NonNullParamChecker.cpp | 128 HasParam ? parms[idx]->getType()->isReferenceType() : false; in checkPreCall()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 183 assert(Ty->isReferenceType()); in makeReferenceCast() 358 if (!Callback->getType()->isReferenceType()) { in create_call_once() 362 if (!Flag->getType()->isReferenceType()) { in create_call_once() 451 if (!CallbackFunctionType->getParamType(ParamIdx - 2)->isReferenceType()) { in create_call_once() 859 if (!MD->getReturnType()->isReferenceType()) in createObjCPropertyGetter()
|
| H A D | Consumed.cpp | 144 if (QT->isPointerType() || QT->isReferenceType()) in isConsumableType() 154 if (QT->isPointerType() || QT->isReferenceType()) in isAutoCastType() 190 return ParamType->isPointerType() || ParamType->isReferenceType(); in isPointerOrRef() 687 if (RetType->isReferenceType()) in propagateReturnType() 868 else if (ParamType->isReferenceType() && in VisitParmVarDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | UncountedLambdaCapturesChecker.cpp | 87 assert(T->isReferenceType()); in reportBug()
|
| H A D | PtrTypesSemantics.cpp | 138 if (T->isPointerType() || T->isReferenceType()) { in isUncountedPtr()
|
| H A D | UncountedLocalVarsChecker.cpp | 64 if (T->isPointerType() || T->isReferenceType()) { in isRefcountedStringsHack()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | DynamicType.cpp | 70 while (Ty->isReferenceType() || Ty->isPointerType()) in unbox() 120 assert((CastToTy->isAnyPointerType() || CastToTy->isReferenceType()) && in setDynamicTypeAndCastInfo()
|
| H A D | SValBuilder.cpp | 707 if (CastTy->isPointerType() || CastTy->isReferenceType()) in VisitGotoLabel() 737 if (!Ty->isReferenceType()) in VisitMemRegionVal() 817 if (CastTy->isPointerType() || CastTy->isReferenceType()) { in VisitMemRegionVal() 829 CastTy->isReferenceType()); in VisitMemRegionVal() 919 CastTy->isReferenceType()); in VisitLocAsInteger()
|
| H A D | LoopUnrolling.cpp | 190 return FD->getType()->isReferenceType(); in isCapturedByReference() 210 (IsRefParamOrCapture && VD->getType()->isReferenceType())) in isPossiblyEscaped()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaSYCL.cpp | 111 NextTy->isReferenceType()) { in deepTypeCheckForSYCLDevice()
|
| H A D | SemaInit.cpp | 707 if (Field->getType()->isReferenceType()) { in FillInEmptyInitForField() 1347 } else if (DeclType->isReferenceType()) { in CheckListElementTypes() 1383 if (ElemType->isReferenceType()) in CheckSubElementType() 4547 if (DestType->isReferenceType()) { in TryListInitialization() 6205 if (DestType->isReferenceType()) { in InitializeFrom() 7691 if (!VD->getType()->isReferenceType()) { in visitLocalsRetainedByReferenceBinding() 7890 if (I->getType()->isReferenceType()) in visitLocalsRetainedByInitializer() 8326 << VD->getType()->isReferenceType() in checkInitializerLifetime() 9448 if (T->isReferenceType()) { in DiagnoseUninitializedReference() 9532 if (DestType->isReferenceType()) { in diagnoseListInit() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprClassification.cpp | 38 assert(!TR->isReferenceType() && "Expressions can't have reference type."); in ClassifyImpl() 478 islvalue = NTTParm->getType()->isReferenceType() || in ClassifyDecl() 534 if (Value->getType()->isReferenceType()) in ClassifyMemberExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/ |
| H A D | UninitializedObject.h | 331 return T->isAnyPointerType() || T->isReferenceType(); in isDereferencableType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenTBAA.cpp | 98 if (QTy->isReferenceType()) in isValidBaseType() 189 if (Ty->isPointerType() || Ty->isReferenceType()) in getTypeInfoHelper()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Context.cpp | 182 if (T->isReferenceType() || T->isPointerType()) in classify()
|