HomeSort by relevance Sort by last modified time
    Searched refs:Enum (Results 26 - 50 of 120) sorted by null

12 3 4 5

  /external/clang/test/SemaTemplate/
current-instantiation.cpp 171 enum anonymous_enum { value = b };
223 enum Enum { Yes, No };
224 template<Enum> void foo();
225 template<Enum> class Inner;
229 template<typename X<XT>::Enum>
235 template<typename X<XT>::Enum>
temp_arg_nontype.cpp 15 enum E { Enumerator = 17 };
138 enum E { k };
276 typename Enum,
277 Enum Size
282 typename Enum,
283 Enum Size
302 enum type
  /libcore/luni/src/main/java/java/util/
MiniEnumSet.java 24 final class MiniEnumSet<E extends Enum<E>> extends EnumSet<E> {
146 Enum<E> element = (Enum<E>) object;
221 Enum<E> element = (Enum<E>) object;
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 49 enum EnumFixed : int { // expected-warning {{enumeration types with a fixed underlying type are incompatible with C++98}}
52 enum class EnumScoped { // expected-warning {{scoped enumerations are incompatible with C++98}}
165 enum Enum { enum_val = 0 };
167 friend enum ::Enum; // expected-warning {{befriending enumeration type 'enum ::Enum' is incompatible with C++98}}
expression-traits.cpp 58 enum Enum { Enumerator };
62 Enum ReturnEnum();
74 extern Enum& ReturnEnumReference();
207 enum Enum { Enumerator };
functional-cast.cpp 87 enum Enum { En1, En2 };
88 enum Onom { On1, On2 };
193 // Enum conversions
196 (void)Enum(1);
197 (void)Enum(1.0);
202 (void)Enum((int*)0); // expected-error {{functional-style cast from 'int *' to 'Enum' is not allowed}}
228 enum test { testval = 1 };
type-traits.cpp 8 enum Enum { EV };
9 struct POD { Enum e; int i; float f; NonPOD* p; };
102 { int arr[T(__is_pod(Enum))]; }
192 { int arr[F(__is_class(Enum))]; }
210 { int arr[F(__is_union(Enum))]; }
219 typedef Enum EnumType;
223 { int arr[T(__is_enum(Enum))]; }
253 { int arr[F(__is_polymorphic(Enum))]; }
281 int t28[F(__is_integral(Enum))];
    [all...]
  /external/proguard/examples/
library.pro 53 -keepclassmembers class * extends java.lang.Enum {
  /external/clang/test/PCH/
exprs.h 5 enum Enum { Enumerator = 18 };
  /external/clang/test/Sema/
conditional-expr.c 31 enum {xxx,yyy,zzz} e, *ee;
53 enum Enum { EVal };
  /external/guava/src/com/google/common/collect/
ImmutableEnumSet.java 34 final class ImmutableEnumSet<E /*extends Enum<E>*/> extends ImmutableSet<E> {
36 * Notes on EnumSet and <E extends Enum<E>>:
44 * <E extends Enum<E>> (as is necessary to declare a field of type
45 * EnumSet<E>), GWT generates serializers for every available enum. This
100 // All callers of the constructor are restricted to <E extends Enum<E>>.
109 private static class EnumSerializedForm<E extends Enum<E>>
Sets.java 65 * Returns an immutable set instance containing the given enum elements.
68 * <p>The iteration order of the returned set follows the enum's iteration
77 public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet(
83 * Returns an immutable set instance containing the given enum elements.
86 * <p>The iteration order of the returned set follows the enum's iteration
89 * @param elements the elements, all of the same {@code enum} type, that the
95 public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet(
119 public static <E extends Enum<E>> EnumSet<E> newEnumSet(Iterable<E> iterable,
124 * it passes in Class.class instead of an enum type. This means that, when
129 * Class<E> where E extends Enum. Until that happens (if ever), leav
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 57 // Enum - TODO: expose globally later?
71 struct Enum {
87 inline Enum& operator=(E rhs) { val = rhs; return *this; }
91 inline Enum& operator=(const std::string& rhs) { assign(rhs); return *this; }
94 #define ENUM(e,n) \
95 template<> const char** Enum<e>::Names = n; \
96 template<> size_t Enum<e>::Size = sizeof(n)/sizeof(n[0])
105 ENUM(HttpVersion, kHttpVersions);
110 ENUM(HttpVerb, kHttpVerbs);
142 ENUM(HttpHeader, kHttpHeaders)
    [all...]
  /external/bluetooth/glib/gobject/
glib-mkenums.in 6 my $option_underscore_name; # Overriden underscore variant of the enum name
11 # one that we guess. For instance, when an enum
19 my $enumindex = 0; # Global enum counter
144 print " --eprod <text> Per enum text (produced prior to value itarations)\n";
145 print " --vhead <text> Value header, produced before iterating over enum values\n";
146 print " --vprod <text> Value text, produced for each enum value\n";
147 print " --vtail <text> Value tail, produced after iterating over enum values\n";
159 print " \@type\@ either enum or flags\n";
160 print " \@Type\@ either Enum or Flags\n";
161 print " \@TYPE\@ either ENUM or FLAGS\n"
    [all...]
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 83 HANDLE_TYPE(ENUM , Enum );
108 HANDLE_TYPE(ENUM , Enum );
extension_set_heavy.cc 269 HANDLE_TYPE( ENUM, enum);
356 HANDLE_TYPE( ENUM, Enum, enum);
391 HANDLE_TYPE( ENUM, Enum, enum);
420 HANDLE_TYPE( ENUM, Enum, enum_value)
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/data/
mock_android.jar 
  /prebuilt/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /external/clang/tools/libclang/
CXType.cpp 81 TKCASE(Enum);
257 case Type::Enum:
288 CXString clang_getTypeKindSpelling(enum CXTypeKind K) {
328 TKIND(Enum);
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneStateIntentReceiver.java 180 mPhoneState = (Phone.State) Enum.valueOf(
  /external/clang/lib/Frontend/
ASTConsumers.cpp 124 case Decl::Enum: {
127 Out << "[enum] ";
129 Out << "<enum> ";
303 case Decl::Enum:
347 Out << "<enum constant> " << *ECD << '\n';
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 604 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
614 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
619 if (!Enum->getIntegerTypeSourceInfo())
620 Enum->setIntegerType(SemaRef.Context.IntTy);
625 Enum->setIntegerType(D->getIntegerType());
629 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
631 Enum->setInstantiationOfMemberEnum(D);
632 Enum->setAccess(D->getAccess());
633 if (SubstQualifier(D, Enum)) return 0;
634 Owner->addDecl(Enum);
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumMapTest.java 33 enum Size {
37 enum Color {
41 enum Empty {
686 Enum enumKey = (Enum) iter.next();
688 enumKey = (Enum) iter.next();
705 enumKey = (Enum) iter.next();
721 enumKey = (Enum) iter.next();
736 enumKey = (Enum) iter.next();
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
EnumMapTest.java 35 enum Size {
39 enum Color {
43 enum Empty {
688 Enum enumKey = (Enum) iter.next();
690 enumKey = (Enum) iter.next();
707 enumKey = (Enum) iter.next();
723 enumKey = (Enum) iter.next();
738 enumKey = (Enum) iter.next();
    [all...]

Completed in 2191 milliseconds

12 3 4 5