Searched defs:Enum (Results 101 - 125 of 130) sorted by relevance

123456

/external/protobuf/src/google/protobuf/
H A Dtype.pb.h43 class Enum;
533 class LIBPROTOBUF_EXPORT Enum : public ::google::protobuf::Message { class in namespace:google::protobuf
535 Enum();
536 virtual ~Enum();
538 Enum(const Enum& from);
540 inline Enum& operator=(const Enum& from) {
546 static const Enum& default_instance();
548 void Swap(Enum* othe
[all...]
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVInternal.h391 SPIR::TypePrimitiveEnum Enum; member in struct:SPIRV::BuiltinArgTypeMangleInfo
395 Enum(SPIR::PRIMITIVE_NONE), Attr(0)
419 void setEnumArg(int Ndx, SPIR::TypePrimitiveEnum Enum) { argument
420 EnumArgs[Ndx] = Enum;}
437 bool isArgEnum(int Ndx, SPIR::TypePrimitiveEnum *Enum = nullptr) {
443 if (Enum)
444 *Enum = Loc->second;
464 Info.IsEnum = isArgEnum(Ndx, &Info.Enum);
/external/webrtc/webrtc/base/
H A Dhttpcommon.cc42 // Enum - TODO: expose globally later?
56 struct Enum { struct in namespace:rtc
72 inline Enum& operator=(E rhs) { val = rhs; return *this; }
76 inline Enum& operator=(const std::string& rhs) { assign(rhs); return *this; }
80 template<> const char** Enum<e>::Names = n; \
81 template<> size_t Enum<e>::Size = sizeof(n)/sizeof(n[0])
130 return Enum<HttpVersion>::Name(version);
134 return Enum<HttpVersion>::Parse(version, str);
138 return Enum<HttpVerb>::Name(verb);
142 return Enum<HttpVer
[all...]
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp8 enum Enum { EV }; enum
9 struct POD { Enum e; int i; float f; NonPOD* p; };
169 { int arr[T(__is_pod(Enum))]; }
260 { int arr[F(__is_class(Enum))]; }
278 { int arr[F(__is_union(Enum))]; }
287 typedef Enum EnumType;
291 { int arr[T(__is_enum(Enum))]; }
392 { int arr[F(__is_polymorphic(Enum))]; }
420 int t28[F(__is_integral(Enum))];
449 int t28[F(__is_floating_point(Enum))];
[all...]
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp3605 // return CppTL::Enum::any( CppTL::Enum::transform(
3606 // CppTL::Enum::keys( *(value_.map_), CppTL::Type<const CZString &>() ),
3617 // return CppTL::Enum::anyValues( *(value_.map_),
4792 enum Enum { enum in struct:Json::CommentStyle
4803 CommentStyle::Enum cs,
4829 CommentStyle::Enum cs_;
4840 CommentStyle::Enum cs,
5101 CommentStyle::Enum cs = CommentStyle::All;
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DDescriptor.cs1656 [pbr::OriginalName("TYPE_ENUM")] Enum = 14, enumerator in enum:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type
/external/clang/lib/AST/
H A DDecl.cpp3631 auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl, local
3633 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3634 C.getTypeDeclType(Enum, PrevDecl);
3635 return Enum;
3639 EnumDecl *Enum = local
3642 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules;
3643 return Enum;
H A DASTContext.cpp322 // Enum is instantiated from a member definition of a class template?
1747 case Type::Enum: {
2644 case Type::Enum:
3203 } else if (const EnumDecl *Enum = dyn_cast<EnumDecl>(Decl)) {
3204 assert(Enum->isFirstDecl() && "enum has previous declaration");
3205 return getEnumType(Enum);
5548 EnumDecl *Enum = ET->getDecl(); local
5551 if (!Enum->isFixed())
5555 const BuiltinType *BT = Enum->getIntegerType()->castAs<BuiltinType>();
5607 case Type::Enum
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp894 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(), local
907 Enum->setIntegerType(SemaRef.Context.IntTy);
909 Enum->setIntegerTypeSourceInfo(NewTI);
913 Enum->setIntegerType(D->getIntegerType());
917 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
919 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
920 Enum->setAccess(D->getAccess());
922 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D));
926 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Enum, DD);
930 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Enum, TN
965 InstantiateEnumDefinition( EnumDecl *Enum, EnumDecl *Pattern) argument
4838 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext()); local
[all...]
H A DSemaCodeComplete.cpp655 case Type::Enum:
3028 case Decl::Enum: return CXCursor_EnumDecl;
3859 EnumDecl *Enum = type->castAs<EnumType>()->getDecl(); local
3860 if (EnumDecl *Def = Enum->getDefinition())
3861 Enum = Def;
3906 Qualifier = getRequiredQualification(Context, CurContext, Enum);
3914 for (auto *E : Enum->enumerators()) {
H A DSemaTemplate.cpp1744 EnumDecl *Enum = EnumT->getDecl(); local
1747 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
5078 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
5079 IntegerType = Enum->getDecl()->getIntegerType();
5162 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
5163 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
H A DSemaChecking.cpp7005 EnumDecl *Enum = ET->getDecl(); local
7006 if (!Enum->isCompleteDefinition())
7009 unsigned NumPositive = Enum->getNumPositiveBits();
7010 unsigned NumNegative = Enum->getNumNegativeBits();
8398 EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext()); local
8399 SourceType = S.Context.getTypeDeclType(Enum);
10660 if (TC1 == Type::Enum) {
H A DSemaDecl.cpp3987 if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
3988 if (Enum->enumerator_begin() == Enum->enumerator_end() &&
3989 !Enum->getIdentifier() && !Enum->isInvalidDecl())
6511 /// Enum describing the %select options in diag::warn_decl_shadow.
14305 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum, argument
14321 if (Enum->isDependentType() || Val->isTypeDependent())
14325 if (getLangOpts().CPlusPlus11 && Enum->isFixed() &&
14330 EltTy = Enum
14576 ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) argument
14638 CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements, EnumDecl *Enum, QualType EnumType) argument
14779 EnumDecl *Enum = cast<EnumDecl>(EnumDeclX); local
15002 << ECD << Enum; local
[all...]
H A DTreeTransform.h830 /// \brief Build a new Enum type.
831 QualType RebuildEnumType(EnumDecl *Enum) { argument
832 return SemaRef.Context.getTypeDeclType(Enum);
5358 EnumDecl *Enum local
5361 if (!Enum)
5366 Enum != T->getDecl()) {
5367 Result = getDerived().RebuildEnumType(Enum);
/external/llvm/lib/IR/
H A DVerifier.cpp930 auto *Enum = dyn_cast_or_null<DICompositeType>(Op); local
931 AssertDI(Enum && Enum->getTag() == dwarf::DW_TAG_enumeration_type,
/external/python/cpython3/Lib/test/
H A Dtest_enum.py6 from enum import Enum, IntEnum, EnumMeta, Flag, IntFlag, unique, auto namespace
18 class Stooges(Enum):
26 class IntStooges(int, Enum):
34 class FloatStooges(float, Enum):
51 class StrEnum(str, Enum):
60 Question = Enum('Question', 'who what when where why', module=__name__)
65 Answer = Enum('Answer', 'him this then there because')
70 Theory = Enum('Theory', 'rule law supposition', qualname='spanish_inquisition')
76 class Fruit(Enum):
126 class Season(Enum)
[all...]
/external/v8/src/parsing/
H A Dpreparser.h64 static PreParserIdentifier Enum() { function in class:v8::internal::PreParserIdentifier
/external/llvm/test/tools/llvm-readobj/Inputs/
H A Drelocs.py85 Enum = EnumType('Enum', (), {}) variable
457 class Relocs_Elf_X86_64(Enum):
497 class Relocs_Elf_i386(Enum):
540 class Relocs_Elf_PPC32(Enum):
559 class Relocs_Elf_PPC64(Enum):
593 class Relocs_Elf_AArch64(Enum):
718 class Relocs_Elf_ARM(Enum):
852 class Relocs_Elf_Mips(Enum):
906 class Relocs_Elf_Hexagon(Enum)
[all...]
/external/pdfium/xfa/fxfa/
H A Dfxfa_basic.h932 Enum, member in class:XFA_AttributeType
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/annotation-tools/asmx/test/lib/
H A Dccl.jarMETA-INF/ META-INF/MANIFEST.MF ccl/ ccl/Main.class Main.java package ccl ...
H A Djd.xslt-1.5.5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sarvega/ javax/ javax/xml/ javax/xml/parsers/ javax/ ...
/external/libmtp/src/
H A Dptp.h1172 /* Property Describing Dataset, Enum Form */
1190 PTPPropDescEnumForm Enum; member in union:_PTPDevicePropDesc::__anon12022
1206 PTPPropDescEnumForm Enum; member in union:_PTPObjectPropDesc::__anon12023
/external/guice/extensions/struts2/lib/
H A Dxwork-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ...

Completed in 837 milliseconds

123456