HomeSort by: relevance | last modified time | path
    Searched refs:RefType (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
BinaryStreamRef.h 24 template <class RefType, class StreamType> class BinaryStreamRefBase {
61 RefType drop_front(uint32_t N) const {
63 return RefType();
66 RefType Result(static_cast<const RefType &>(*this));
79 RefType drop_back(uint32_t N) const {
81 return RefType();
83 RefType Result(static_cast<const RefType &>(*this));
99 RefType keep_front(uint32_t N) const
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exresolv.c 157 UINT8 RefType;
171 RefType = StackDesc->Reference.Class;
173 switch (RefType)
181 Status = AcpiDsMethodDataGetValue (RefType,
291 RefType, StackDesc));
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ExprMutationAnalyzer.cpp 569 if (const auto *RefType = ParmType->getAs<RValueReferenceType>()) {
570 if (!RefType->getPointeeType().getQualifiers() &&
571 RefType->getPointeeType()->getAs<TemplateTypeParmType>()) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CanonicalType.h 626 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
627 return RefType->getPointeeType();
Type.h 6624 if (const auto *RefType = (*this)->getAs<ReferenceType>())
6625 return RefType->getPointeeType();
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 3112 if (const auto *RefType = getTypePtr()->getAs<ReferenceType>())
3113 return RefType->getPointeeType();
Expr.cpp 3184 bool RefType = Field->getType()->isReferenceType();
3185 if (!Elt->isConstantInitializer(Ctx, RefType, Culprit))
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOverload.cpp 4639 const ReferenceType *RefType
4641 if (RefType && !RefType->getPointeeType()->isFunctionType())
4659 const ReferenceType *RefType =
4661 if (!RefType ||
4662 (!RefType->isLValueReferenceType() &&
4663 !RefType->getPointeeType()->isFunctionType()))
SemaDeclAttr.cpp 4851 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4852 Ty = RefType->getPointeeType();
4863 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4864 Ty = RefType->getPointeeType();
SemaDeclCXX.cpp 1257 QualType RefType =
1259 if (RefType.isNull())
1263 B->getDeclName().getAsIdentifierInfo(), RefType,
SemaExpr.cpp 3290 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) {
3291 type = reftype->getPointeeType();
17497 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){
17498 if (!RefType->getPointeeType()->isFunctionType())
17499 CaptureType = RefType->getPointeeType();

Completed in 120 milliseconds