HomeSort by: relevance | last modified time | path
    Searched refs:EnumType (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-as-string.c 18 enum EnumType {
25 static enum EnumType __attribute__ ((used)) enum_valid = ENUM_VALUE_B;
26 static enum EnumType __attribute__ ((used)) enum_invalid = (enum EnumType) 20;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-as-string.c 18 enum EnumType {
25 static enum EnumType __attribute__ ((used)) enum_valid = ENUM_VALUE_B;
26 static enum EnumType __attribute__ ((used)) enum_invalid = (enum EnumType) 20;
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
CartesianBenchmarks.h 94 template <class Derived, class EnumType, size_t NumLabels>
96 decltype(internal::makeEnumValueTuple<Derived, EnumType>(
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
EnumCastOutOfRangeChecker.cpp 128 const EnumDecl *ED = T->castAs<EnumType>()->getDecl();
  /src/external/mit/isl/dist/interface/
generator.cc 228 const EnumType *enum_type = return_type->getAs<EnumType>();
283 const EnumType *enum_type;
296 enum_type = param->getType()->getAs<EnumType>();
353 if (param->getType()->getAs<EnumType>())
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp 731 if (const EnumType *EnumTy = Ty->getAs<EnumType>())
754 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
975 } else if (const EnumType *EnumTy = Ty->getAs<EnumType>()) {
1008 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
1551 if (const EnumType *EnumTy = RetTy->getAs<EnumType>())
    [all...]
CodeGenTBAA.cpp 198 if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) {
CGDebugInfo.h 212 llvm::DIType *CreateEnumType(const EnumType *Ty);
213 llvm::DIType *CreateTypeDefinition(const EnumType *Ty);
CodeGenTypes.cpp 735 const EnumDecl *ED = cast<EnumType>(Ty)->getDecl();
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 81 ND = ty->castAs<EnumType>()->getDecl();
613 if (const auto *ET = getAs<EnumType>())
1922 if (const auto *ET = dyn_cast<EnumType>(CanonicalType))
1940 if (const auto *ET = dyn_cast<EnumType>(CanonicalType))
2009 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {
2028 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) {
2056 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) {
2075 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)) {
2120 if (const auto *ET = dyn_cast<EnumType>(CanonicalType)
    [all...]
FormatString.cpp 346 if (const EnumType *ETy = argTy->getAs<EnumType>()) {
369 if (const EnumType *ETy = argTy->getAs<EnumType>()) {
ScanfFormatString.cpp 426 if (const EnumType *ETy = PT->getAs<EnumType>()) {
TemplateBase.cpp 61 if (const EnumType *ET = T->getAs<EnumType>()) {
PrintfFormatString.cpp 727 if (const EnumType *ETy = QT->getAs<EnumType>())
ASTContext.cpp 2281 if (const auto *ET = dyn_cast<EnumType>(TT)) {
2481 if (const auto *ET = T->getAs<EnumType>())
4556 auto *newType = new (*this, TypeAlignment) EnumType(Decl);
6398 if (const auto *ET = Promotable->getAs<EnumType>())
6456 static const Type *getIntegerTypeForEnum(const EnumType *ET) {
6472 if (const auto *ET = dyn_cast<EnumType>(LHSC))
6474 if (const auto *ET = dyn_cast<EnumType>(RHSC))
7318 static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) {
7363 if (const auto *ET = T->getAs<EnumType>())
7421 S += ObjCEncodingForEnumType(this, cast<EnumType>(CT))
    [all...]
ODRHash.cpp 1014 void VisitEnumType(const EnumType *T) { VisitTagType(T); }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CanonicalType.h 563 struct CanProxyAdaptor<EnumType> : public CanProxyBase<EnumType> {
Type.h 4641 class EnumType : public TagType {
4644 explicit EnumType(const EnumDecl *D)
6770 return isa<EnumType>(CanonicalType);
6990 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {
7045 if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType))
7064 if (const auto *ET = dyn_cast<EnumType>(CanonicalType))
  /src/external/apache2/llvm/dist/clang/utils/ABITest/
TypeGen.py 59 class EnumType(Type):
279 return EnumType(n, enumerators)
ABITestGen.py 216 elif isinstance(t, EnumType):
292 elif isinstance(t, EnumType):
322 elif isinstance(t, EnumType):
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 1131 QualType EnumType = S.Context.getTypeDeclType(ED);
1133 S.Context.hasSameUnqualifiedType(EnumType, VarType))
1155 const EnumType *CondEnumType = CondType->getAs<EnumType>();
1156 const EnumType *CaseEnumType = CaseType->getAs<EnumType>();
1460 const EnumType *ET = CondTypeBeforePromotion->getAs<EnumType>();
1595 if (const EnumType *ET = DstType->getAs<EnumType>())
    [all...]
SemaLambda.cpp 574 /// EnumType::getDecl() (i.e. the definition).
628 if (const EnumType *ET = E->getType()->getAs<EnumType>()) {
SemaCXXScopeSpec.cpp 736 } else if (isa<EnumType>(T)) {
SemaCast.cpp 1323 if (const EnumType *Enum = SrcType->getAs<EnumType>()) {
1355 const EnumType *Enum = DestType->getAs<EnumType>();
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
conv.d 3039 enum EnumType : bool { a = true, b = false, c = a }
3042 assert(parse!EnumType(str) == EnumType.a);
3044 assert(parse!(EnumType, string, No.doCount)(str2) == EnumType.a);
3046 assert(parse!(EnumType, string, Yes.doCount)(str3) == tuple(EnumType.a, 1));

Completed in 83 milliseconds

1 2 3