Home
last modified time | relevance | path

Searched refs:RefType (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamRef.h61 RefType drop_front(uint32_t N) const { in drop_front()
63 return RefType(); in drop_front()
66 RefType Result(static_cast<const RefType &>(*this)); in drop_front()
79 RefType drop_back(uint32_t N) const { in drop_back()
81 return RefType(); in drop_back()
83 RefType Result(static_cast<const RefType &>(*this)); in drop_back()
99 RefType keep_front(uint32_t N) const { in keep_front()
105 RefType keep_back(uint32_t N) const { in keep_back()
112 RefType drop_symmetric(uint32_t N) const { in drop_symmetric()
118 RefType slice(uint32_t Offset, uint32_t Len) const { in slice()
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/components/executer/
H A Dexresolv.c265 UINT8 RefType; in AcpiExResolveObjectToValue() local
279 RefType = StackDesc->Reference.Class; in AcpiExResolveObjectToValue()
281 switch (RefType) in AcpiExResolveObjectToValue()
289 Status = AcpiDsMethodDataGetValue (RefType, in AcpiExResolveObjectToValue()
399 RefType, StackDesc)); in AcpiExResolveObjectToValue()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp569 if (const auto *RefType = ParmType->getAs<RValueReferenceType>()) { in findFunctionArgMutation() local
570 if (!RefType->getPointeeType().getQualifiers() && in findFunctionArgMutation()
571 RefType->getPointeeType()->getAs<TemplateTypeParmType>()) { in findFunctionArgMutation()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h626 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
627 return RefType->getPointeeType();
H A DType.h6624 if (const auto *RefType = (*this)->getAs<ReferenceType>())
6625 return RefType->getPointeeType();
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3115 if (const auto *RefType = getTypePtr()->getAs<ReferenceType>()) in getNonLValueExprType() local
3116 return RefType->getPointeeType(); in getNonLValueExprType()
H A DExpr.cpp3256 bool RefType = Field->getType()->isReferenceType(); in isConstantInitializer() local
3257 if (!Elt->isConstantInitializer(Ctx, RefType, Culprit)) in isConstantInitializer()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp4639 const ReferenceType *RefType in FindConversionForRefInit() local
4641 if (RefType && !RefType->getPointeeType()->isFunctionType()) in FindConversionForRefInit()
4659 const ReferenceType *RefType = in FindConversionForRefInit() local
4661 if (!RefType || in FindConversionForRefInit()
4662 (!RefType->isLValueReferenceType() && in FindConversionForRefInit()
4663 !RefType->getPointeeType()->isFunctionType())) in FindConversionForRefInit()
H A DSemaDeclAttr.cpp4948 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) { in isValidSwiftIndirectResultType() local
4949 Ty = RefType->getPointeeType(); in isValidSwiftIndirectResultType()
4960 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) { in isValidSwiftErrorResultType() local
4961 Ty = RefType->getPointeeType(); in isValidSwiftErrorResultType()
H A DSemaDeclCXX.cpp1255 QualType RefType = in checkTupleLikeDecomposition() local
1257 if (RefType.isNull()) in checkTupleLikeDecomposition()
1261 B->getDeclName().getAsIdentifierInfo(), RefType, in checkTupleLikeDecomposition()
H A DSemaExpr.cpp17663 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ in captureInLambda() local
17664 if (!RefType->getPointeeType()->isFunctionType()) in captureInLambda()
17665 CaptureType = RefType->getPointeeType(); in captureInLambda()