Home
last modified time | relevance | path

Searched refs:Underlying (Results 1 – 16 of 16) sorted by relevance

/external/llvm/include/llvm/ADT/
DBitmaskEnum.h91 template <typename E> typename std::underlying_type<E>::type Underlying(E Val) {
101 return static_cast<E>(~Underlying(Val) & Mask<E>());
107 return static_cast<E>(Underlying(LHS) | Underlying(RHS));
113 return static_cast<E>(Underlying(LHS) & Underlying(RHS));
119 return static_cast<E>(Underlying(LHS) ^ Underlying(RHS));
/external/ltp/testcases/kernel/security/filecaps/
DREADME37 The Underlying kernel needs to be built with the following options for filecaps testing:
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCalls.cpp824 Value *Underlying = TrampMem->stripPointerCasts(); in FindInitTrampolineFromAlloca() local
825 if (Underlying != TrampMem && in FindInitTrampolineFromAlloca()
826 (!Underlying->hasOneUse() || *Underlying->use_begin() != TrampMem)) in FindInitTrampolineFromAlloca()
828 if (!isa<AllocaInst>(Underlying)) in FindInitTrampolineFromAlloca()
/external/protobuf/csharp/src/Google.Protobuf/
DCodedOutputStream.cs471 #region Underlying writing primitives
DCodedInputStream.cs686 #region Underlying reading primitives
/external/clang/lib/AST/
DASTDiagnostic.cpp141 QualType Underlying; in Desugar() local
150 Underlying = CTy->desugar(); \ in Desugar()
163 if (isa<VectorType>(Underlying)) in Desugar()
167 if (const TagType *UTT = Underlying->getAs<TagType>()) in Desugar()
174 QT = Underlying; in Desugar()
DDeclCXX.cpp2150 redeclarable_base(C), Underlying(Target), in UsingShadowDecl()
2159 redeclarable_base(C), Underlying(), UsingOrNextShadow() {} in UsingShadowDecl()
DASTContext.cpp3373 QualType Underlying) const { in getTemplateSpecializationTypeInfo()
3376 QualType TST = getTemplateSpecializationType(Name, Args, Underlying); in getTemplateSpecializationTypeInfo()
3393 QualType Underlying) const { in getTemplateSpecializationType()
3402 return getTemplateSpecializationType(Template, ArgVec, Underlying); in getTemplateSpecializationType()
3418 QualType Underlying) const { in getTemplateSpecializationType()
3429 if (!Underlying.isNull()) in getTemplateSpecializationType()
3430 CanonType = getCanonicalType(Underlying); in getTemplateSpecializationType()
3449 IsTypeAlias ? Underlying : QualType()); in getTemplateSpecializationType()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp2404 Value *Underlying = TrampMem->stripPointerCasts(); in findInitTrampolineFromAlloca() local
2405 if (Underlying != TrampMem && in findInitTrampolineFromAlloca()
2406 (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem)) in findInitTrampolineFromAlloca()
2408 if (!isa<AllocaInst>(Underlying)) in findInitTrampolineFromAlloca()
/external/clang/include/clang/AST/
DDeclCXX.h2839 NamedDecl *Underlying; variable
2889 NamedDecl *getTargetDecl() const { return Underlying; } in getTargetDecl()
2895 Underlying = ND; in setTargetDecl()
/external/clang/lib/Sema/
DSemaType.cpp7337 QualType Underlying = BaseType; in BuildUnaryTransformType() local
7353 Underlying = ED->getIntegerType(); in BuildUnaryTransformType()
7354 assert(!Underlying.isNull()); in BuildUnaryTransformType()
7356 return Context.getUnaryTransformType(BaseType, Underlying, in BuildUnaryTransformType()
DSemaStmt.cpp3685 QualType Underlying = HandlerCHT.underlying(); in ActOnCXXTryBlock() local
3686 if (auto *RD = Underlying->getAsCXXRecordDecl()) { in ActOnCXXTryBlock()
DTreeTransform.h839 QualType RebuildTypeOfExprType(Expr *Underlying, SourceLocation Loc);
844 QualType RebuildTypeOfType(QualType Underlying);
855 QualType RebuildDecltypeType(Expr *Underlying, SourceLocation Loc);
11656 QualType TreeTransform<Derived>::RebuildTypeOfType(QualType Underlying) { in RebuildTypeOfType() argument
11657 return SemaRef.Context.getTypeOfType(Underlying); in RebuildTypeOfType()
DSemaOverload.cpp1883 QualType Underlying = FromEnumType->getDecl()->getIntegerType(); in IsIntegralPromotion() local
1884 return Context.hasSameUnqualifiedType(Underlying, ToType) || in IsIntegralPromotion()
1885 IsIntegralPromotion(nullptr, Underlying, ToType); in IsIntegralPromotion()
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp3678 if (const NamespaceAliasDecl *Underlying = in EmitNamespaceAlias() local
3683 EmitNamespaceAlias(*Underlying), getLineNumber(NA.getLocation()), in EmitNamespaceAlias()
/external/clang/lib/Serialization/
DASTReader.cpp5649 QualType Underlying = readType(*Loc.F, Record, Idx); in readTypeRecord() local
5651 if (Underlying.isNull()) in readTypeRecord()
5654 T = Context.getTemplateSpecializationType(Name, Args, Underlying); in readTypeRecord()