/external/llvm/include/llvm/ADT/ |
D | BitmaskEnum.h | 91 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/ |
D | README | 37 The Underlying kernel needs to be built with the following options for filecaps testing:
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 824 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/ |
D | CodedOutputStream.cs | 471 #region Underlying writing primitives
|
D | CodedInputStream.cs | 686 #region Underlying reading primitives
|
/external/clang/lib/AST/ |
D | ASTDiagnostic.cpp | 141 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()
|
D | DeclCXX.cpp | 2150 redeclarable_base(C), Underlying(Target), in UsingShadowDecl() 2159 redeclarable_base(C), Underlying(), UsingOrNextShadow() {} in UsingShadowDecl()
|
D | ASTContext.cpp | 3373 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/ |
D | InstCombineCalls.cpp | 2404 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/ |
D | DeclCXX.h | 2839 NamedDecl *Underlying; variable 2889 NamedDecl *getTargetDecl() const { return Underlying; } in getTargetDecl() 2895 Underlying = ND; in setTargetDecl()
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 7337 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()
|
D | SemaStmt.cpp | 3685 QualType Underlying = HandlerCHT.underlying(); in ActOnCXXTryBlock() local 3686 if (auto *RD = Underlying->getAsCXXRecordDecl()) { in ActOnCXXTryBlock()
|
D | TreeTransform.h | 839 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()
|
D | SemaOverload.cpp | 1883 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/ |
D | CGDebugInfo.cpp | 3678 if (const NamespaceAliasDecl *Underlying = in EmitNamespaceAlias() local 3683 EmitNamespaceAlias(*Underlying), getLineNumber(NA.getLocation()), in EmitNamespaceAlias()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5649 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()
|