Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DBinaryStreamRef.h24 template <class RefType, class StreamType> class BinaryStreamRefBase {
61 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()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/executer/
H A Dexresolv.c157 UINT8 RefType; in AcpiExResolveObjectToValue() local
171 RefType = StackDesc->Reference.Class; in AcpiExResolveObjectToValue()
173 switch (RefType) in AcpiExResolveObjectToValue()
181 Status = AcpiDsMethodDataGetValue (RefType, in AcpiExResolveObjectToValue()
291 RefType, StackDesc)); in AcpiExResolveObjectToValue()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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();
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DType.cpp3112 if (const auto *RefType = getTypePtr()->getAs<ReferenceType>()) in getNonLValueExprType() local
3113 return RefType->getPointeeType(); in getNonLValueExprType()
H A DExpr.cpp3184 bool RefType = Field->getType()->isReferenceType(); in isConstantInitializer() local
3185 if (!Elt->isConstantInitializer(Ctx, RefType, Culprit)) in isConstantInitializer()
/netbsd-src/external/apache2/llvm/dist/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.cpp4851 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) { in isValidSwiftIndirectResultType() local
4852 Ty = RefType->getPointeeType(); in isValidSwiftIndirectResultType()
4863 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) { in isValidSwiftErrorResultType() local
4864 Ty = RefType->getPointeeType(); in isValidSwiftErrorResultType()
H A DSemaDeclCXX.cpp1257 QualType RefType = in checkTupleLikeDecomposition() local
1259 if (RefType.isNull()) in checkTupleLikeDecomposition()
1263 B->getDeclName().getAsIdentifierInfo(), RefType, in checkTupleLikeDecomposition()
H A DSemaExpr.cpp17497 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ in captureInLambda() local
17498 if (!RefType->getPointeeType()->isFunctionType()) in captureInLambda()
17499 CaptureType = RefType->getPointeeType(); in captureInLambda()