Searched refs:Underlying (Results 1 - 22 of 22) sorted by relevance

/netbsd-current/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) {
94 static fallible_iterator end(Underlying I) {
106 template <typename T = Underlying>
113 template <typename T = Underlying>
195 fallible_iterator(Underlying I, Error *Err)
214 Underlying I;
220 template <typename Underlying>
221 fallible_iterator<Underlying> make_fallible_itr(Underlying
[all...]
H A DEnumeratedArray.h28 Underlying[IX] = V;
34 return Underlying[IX];
44 ValueType Underlying[Size]; member in class:llvm::EnumeratedArray
H A DBitmaskEnum.h90 template <typename E> std::underlying_type_t<E> Underlying(E Val) { function in namespace:llvm::BitmaskEnumDetail
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));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProfReader.cpp628 InstrProfReaderIndexBase &Underlying;
631 InstrProfReaderNullRemapper(InstrProfReaderIndexBase &Underlying)
632 : Underlying(Underlying) {}
636 return Underlying.getRecords(FuncName, Data);
648 InstrProfReaderIndex<HashTableImpl> &Underlying)
649 : RemapBuffer(std::move(RemapBuffer)), Underlying(Underlying) {
681 for (StringRef Name : Underlying.HashTable->keys()) {
706 Error E = Underlying
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp184 codeview::TypeIndex Underlying = Record->getUnderlyingType(); local
187 if (!Underlying.isSimple() ||
188 Underlying.getSimpleMode() != SimpleTypeMode::Direct) {
192 switch (Underlying.getSimpleKind()) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexTypeSourceInfo.cpp60 TagDecl *Underlying = ND->getUnderlyingType()->getAsTagDecl(); local
61 return IndexCtx.handleReference(Underlying, Loc, Parent,
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DODRHash.cpp1037 if (const TypedefType *Underlying =
1039 UnderlyingType = Underlying->getDecl()->getUnderlyingType();
1042 if (const ElaboratedType *Underlying =
1044 UnderlyingType = Underlying->getNamedType();
H A DASTDiagnostic.cpp144 QualType Underlying; local
153 Underlying = CTy->desugar(); \
166 if (isa<VectorType>(Underlying))
170 if (const TagType *UTT = Underlying->getAs<TagType>())
177 QT = Underlying;
H A DASTContext.cpp4523 QualType Underlying) const {
4526 if (Underlying.isNull())
4527 Underlying = Decl->getUnderlyingType();
4528 QualType Canonical = getCanonicalType(Underlying);
4530 TypedefType(Type::Typedef, Decl, Underlying, Canonical);
4676 QualType Underlying) const {
4679 QualType TST = getTemplateSpecializationType(Name, Args, Underlying);
4696 QualType Underlying) const {
4705 return getTemplateSpecializationType(Template, ArgVec, Underlying);
4721 QualType Underlying) cons
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2064 Value *Underlying = TrampMem->stripPointerCasts(); local
2065 if (Underlying != TrampMem &&
2066 (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem))
2068 if (!isa<AllocaInst>(Underlying))
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h3182 NamedDecl *Underlying = nullptr; member in class:clang::UsingShadowDecl
3240 NamedDecl *getTargetDecl() const { return Underlying; }
3246 Underlying = ND;
H A DASTContext.h1476 QualType Underlying = QualType()) const;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLookup.cpp3594 auto *Underlying = D;
3596 Underlying = USD->getTargetDecl();
3598 if (!isa<FunctionDecl>(Underlying) &&
3599 !isa<FunctionTemplateDecl>(Underlying))
3624 Result.insert(Underlying);
H A DSemaType.cpp8983 QualType Underlying = BaseType; local
8999 Underlying = ED->getIntegerType();
9000 assert(!Underlying.isNull());
9002 return Context.getUnaryTransformType(BaseType, Underlying,
H A DSemaStmt.cpp4479 QualType Underlying = HandlerCHT.underlying(); local
4480 if (auto *RD = Underlying->getAsCXXRecordDecl()) {
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) { argument
14379 return SemaRef.Context.getTypeOfType(Underlying);
H A DSemaOpenMP.cpp16019 auto *Underlying = D;
16021 Underlying = USD->getTargetDecl();
16023 if (!isa<OMPDeclareReductionDecl>(Underlying) &&
16024 !isa<OMPDeclareMapperDecl>(Underlying))
16032 Underlying = USD->getTargetDecl();
16035 Lookups.back().addDecl(Underlying);
H A DSemaOverload.cpp2116 QualType Underlying = FromEnumType->getDecl()->getIntegerType();
2117 return Context.hasSameUnqualifiedType(Underlying, ToType) ||
2118 IsIntegralPromotion(nullptr, Underlying, ToType);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1262 llvm::DIType *Underlying = local
1266 return Underlying;
1274 return DBuilder.createTypedef(Underlying, Ty->getDecl()->getName(),
5014 if (const auto *Underlying =
5019 EmitNamespaceAlias(*Underlying), getOrCreateFile(Loc),
/netbsd-current/external/apache2/llvm/dist/clang/tools/c-index-test/
H A Dc-index-test.c821 CXType Underlying = clang_getTypedefDeclUnderlyingType(Referenced); local
822 CXString S = clang_getTypeSpelling(Underlying);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1666 D->Underlying = readDeclAs<NamedDecl>();
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Dinterval.d21 $(TR $(TD Underlying ranges) $(TD

Completed in 700 milliseconds