Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A Dfallible_iterator.h68 template <typename Underlying> class fallible_iterator {
84 static fallible_iterator itr(Underlying I, Error &Err) { in itr()
94 static fallible_iterator end(Underlying I) { in end()
106 template <typename T = Underlying>
113 template <typename T = Underlying>
195 fallible_iterator(Underlying I, Error *Err) in fallible_iterator()
214 Underlying I;
220 template <typename Underlying>
221 fallible_iterator<Underlying> make_fallible_itr(Underlying I, Error &Err) { in make_fallible_itr()
222 return fallible_iterator<Underlying>::itr(std::move(I), Err); in make_fallible_itr()
[all …]
H A DBitmaskEnum.h90 template <typename E> std::underlying_type_t<E> Underlying(E Val) {
103 return static_cast<E>(~Underlying(Val) & Mask<E>());
108 return static_cast<E>(Underlying(LHS) | Underlying(RHS));
113 return static_cast<E>(Underlying(LHS) & Underlying(RHS));
118 return static_cast<E>(Underlying(LHS) ^ Underlying(RHS));
H A DEnumeratedArray.h28 Underlying[IX] = V; in EnumeratedArray()
34 return Underlying[IX];
44 ValueType Underlying[Size];
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProfReader.cpp628 InstrProfReaderIndexBase &Underlying; member in __anonae19aa6f0211::InstrProfReaderNullRemapper
631 InstrProfReaderNullRemapper(InstrProfReaderIndexBase &Underlying) in InstrProfReaderNullRemapper() argument
632 : Underlying(Underlying) {} in InstrProfReaderNullRemapper()
636 return Underlying.getRecords(FuncName, Data); in getRecords()
648 InstrProfReaderIndex<HashTableImpl> &Underlying) in InstrProfReaderItaniumRemapper() argument
649 : RemapBuffer(std::move(RemapBuffer)), Underlying(Underlying) { in InstrProfReaderItaniumRemapper()
681 for (StringRef Name : Underlying.HashTable->keys()) { in populateRemappings()
706 Error E = Underlying.getRecords(Reconstituted, Data); in getRecords()
722 return Underlying.getRecords(FuncName, Data); in getRecords()
740 InstrProfReaderIndex<HashTableImpl> &Underlying; member in llvm::InstrProfReaderItaniumRemapper
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp184 codeview::TypeIndex Underlying = Record->getUnderlyingType(); in getBuiltinType() local
187 if (!Underlying.isSimple() || in getBuiltinType()
188 Underlying.getSimpleMode() != SimpleTypeMode::Direct) { in getBuiltinType()
192 switch (Underlying.getSimpleKind()) { in getBuiltinType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexTypeSourceInfo.cpp60 TagDecl *Underlying = ND->getUnderlyingType()->getAsTagDecl(); in VisitTypedefTypeLoc() local
61 return IndexCtx.handleReference(Underlying, Loc, Parent, in VisitTypedefTypeLoc()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DODRHash.cpp1037 if (const TypedefType *Underlying = in VisitTypedefType() local
1039 UnderlyingType = Underlying->getDecl()->getUnderlyingType(); in VisitTypedefType()
1042 if (const ElaboratedType *Underlying = in VisitTypedefType() local
1044 UnderlyingType = Underlying->getNamedType(); in VisitTypedefType()
H A DASTDiagnostic.cpp144 QualType Underlying; in Desugar() local
153 Underlying = CTy->desugar(); \ in Desugar()
166 if (isa<VectorType>(Underlying)) in Desugar()
170 if (const TagType *UTT = Underlying->getAs<TagType>()) in Desugar()
177 QT = Underlying; in Desugar()
H A DASTContext.cpp4523 QualType Underlying) const { in getTypedefType()
4526 if (Underlying.isNull()) in getTypedefType()
4527 Underlying = Decl->getUnderlyingType(); in getTypedefType()
4528 QualType Canonical = getCanonicalType(Underlying); in getTypedefType()
4530 TypedefType(Type::Typedef, Decl, Underlying, Canonical); in getTypedefType()
4676 QualType Underlying) const { in getTemplateSpecializationTypeInfo()
4679 QualType TST = getTemplateSpecializationType(Name, Args, Underlying); in getTemplateSpecializationTypeInfo()
4696 QualType Underlying) const { in getTemplateSpecializationType()
4705 return getTemplateSpecializationType(Template, ArgVec, Underlying); in getTemplateSpecializationType()
4721 QualType Underlying) const { in getTemplateSpecializationType()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2064 Value *Underlying = TrampMem->stripPointerCasts(); in findInitTrampolineFromAlloca() local
2065 if (Underlying != TrampMem && in findInitTrampolineFromAlloca()
2066 (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem)) in findInitTrampolineFromAlloca()
2068 if (!isa<AllocaInst>(Underlying)) in findInitTrampolineFromAlloca()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dsstream444 return __pptr; // Underlying sequence is [pbase, pptr).
446 return __egptr; // Underlying sequence is [pbase, egptr).
448 return 0; // Underlying character sequence is just _M_string.
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h3182 NamedDecl *Underlying = nullptr; variable
3240 NamedDecl *getTargetDecl() const { return Underlying; } in getTargetDecl()
3246 Underlying = ND; in setTargetDecl()
H A DASTContext.h1476 QualType Underlying = QualType()) const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLookup.cpp3594 auto *Underlying = D; in ArgumentDependentLookup() local
3596 Underlying = USD->getTargetDecl(); in ArgumentDependentLookup()
3598 if (!isa<FunctionDecl>(Underlying) && in ArgumentDependentLookup()
3599 !isa<FunctionTemplateDecl>(Underlying)) in ArgumentDependentLookup()
3624 Result.insert(Underlying); in ArgumentDependentLookup()
H A DSemaType.cpp8983 QualType Underlying = BaseType; in BuildUnaryTransformType() local
8999 Underlying = ED->getIntegerType(); in BuildUnaryTransformType()
9000 assert(!Underlying.isNull()); in BuildUnaryTransformType()
9002 return Context.getUnaryTransformType(BaseType, Underlying, in BuildUnaryTransformType()
H A DSemaStmt.cpp4479 QualType Underlying = HandlerCHT.underlying(); in ActOnCXXTryBlock() local
4480 if (auto *RD = Underlying->getAsCXXRecordDecl()) { in ActOnCXXTryBlock()
H A DTreeTransform.h961 QualType RebuildTypeOfExprType(Expr *Underlying, SourceLocation Loc);
966 QualType RebuildTypeOfType(QualType Underlying);
977 QualType RebuildDecltypeType(Expr *Underlying, SourceLocation Loc);
14378 QualType TreeTransform<Derived>::RebuildTypeOfType(QualType Underlying) { in RebuildTypeOfType() argument
14379 return SemaRef.Context.getTypeOfType(Underlying); in RebuildTypeOfType()
H A DSemaOpenMP.cpp16019 auto *Underlying = D; in argumentDependentLookup() local
16021 Underlying = USD->getTargetDecl(); in argumentDependentLookup()
16023 if (!isa<OMPDeclareReductionDecl>(Underlying) && in argumentDependentLookup()
16024 !isa<OMPDeclareMapperDecl>(Underlying)) in argumentDependentLookup()
16032 Underlying = USD->getTargetDecl(); in argumentDependentLookup()
16035 Lookups.back().addDecl(Underlying); in argumentDependentLookup()
H A DSemaOverload.cpp2116 QualType Underlying = FromEnumType->getDecl()->getIntegerType(); in IsIntegralPromotion() local
2117 return Context.hasSameUnqualifiedType(Underlying, ToType) || in IsIntegralPromotion()
2118 IsIntegralPromotion(nullptr, Underlying, ToType); in IsIntegralPromotion()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1262 llvm::DIType *Underlying = in CreateType() local
1266 return Underlying; in CreateType()
1274 return DBuilder.createTypedef(Underlying, Ty->getDecl()->getName(), in CreateType()
5014 if (const auto *Underlying = in EmitNamespaceAlias() local
5019 EmitNamespaceAlias(*Underlying), getOrCreateFile(Loc), in EmitNamespaceAlias()
/netbsd-src/external/apache2/llvm/dist/clang/tools/c-index-test/
H A Dc-index-test.c821 CXType Underlying = clang_getTypedefDeclUnderlyingType(Referenced); in PrintCursor() local
822 CXString S = clang_getTypeSpelling(Underlying); in PrintCursor()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1666 D->Underlying = readDeclAs<NamedDecl>(); in VisitUsingShadowDecl()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Dinterval.d21 $(TR $(TD Underlying ranges) $(TD
/netbsd-src/external/gpl2/texinfo/dist/doc/
H A Dtexinfo.txi8652 Underlying causes.
8665 Underlying causes.
/netbsd-src/games/fortune/datfiles/
H A Dfortunes14409 Underlying Principle of Socio-Genetics:

12