HomeSort by relevance Sort by last modified time
    Searched defs:ENUM (Results 1 - 25 of 34) sorted by null

1 2

  /cts/tools/signature-tools/src/signature/model/
Kind.java 22 public enum Kind {
23 CLASS("class"), INTERFACE("interface"), ANNOTATION("@interface"), ENUM(
24 "enum"), UNINITIALIZED("UNINITIALIZED");
  /external/javassist/src/main/javassist/
Modifier.java 45 public static final int ENUM = AccessFlag.ENUM;
146 * Returns true if the modifiers include the <tt>enum</tt>
152 return (mod & ENUM) != 0;
  /external/javassist/src/main/javassist/bytecode/
AccessFlag.java 39 public static final int ENUM = 0x4000;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLAPISpecTest.java 49 assertEquals(argSpec.getDataType(), Type.ENUM);
54 assertEquals(argSpec.getDataType(), Type.ENUM);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 77 public enum JavaType {
85 ENUM(null),
107 public enum FieldType {
129 ENUM (JavaType.ENUM , WIRETYPE_VARINT ),
Descriptors.java 91 /** Get a list of top-level enum types declared in this file. */
141 * Find an enum type in the file by name. Does not find nested types.
144 * @return The enum type's descriptor, or {@code null} if not found.
499 /** Get a list of enum types nested within this one. */
556 * Finds a nested enum type by name.
802 /** For enum fields, gets the field's type. */
804 if (getJavaType() != JavaType.ENUM) {
806 "This field is not of enum type.");
844 public enum Type {
858 ENUM (JavaType.ENUM )
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
model.py 141 elif 'enum' in json and json_type == 'string':
142 self.property_type = PropertyType.ENUM
143 self.enum_values = [value for value in json['enum']]
342 """Superclass for enum types with a "name" field, setting up repr/eq/ne.
374 """Enum of different types of properties/parameters.
382 ENUM = _PropertyTypeInfo(False, "enum")
475 """Enum of the possible platforms.
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 77 public enum JavaType {
85 ENUM(null),
107 public enum FieldType {
129 ENUM (JavaType.ENUM , WIRETYPE_VARINT ),
Descriptors.java 81 /** Get a list of top-level enum types declared in this file. */
126 * Find an enum type in the file by name. Does not find nested types.
129 * @return The enum type's descriptor, or {@code null} if not found.
472 /** Get a list of enum types nested within this one. */
529 * Finds a nested enum type by name.
775 /** For enum fields, gets the field's type. */
777 if (getJavaType() != JavaType.ENUM) {
779 "This field is not of enum type.");
817 public enum Type {
831 ENUM (JavaType.ENUM )
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AccessFlags.java 33 public enum AccessFlags
51 ENUM(0x4000, "enum", true, false, true),
  /libcore/luni/src/main/java/java/lang/reflect/
Modifier.java 100 static final int ENUM = 0x4000;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 62 enum Type {
65 ENUM,
89 enum Constraint {
  /cts/tools/dasm/src/dasm/
sym.java 22 static final int ENUM = 52;
  /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/chromium_org/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/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_parser.h 39 enum yytokentype {
172 ENUM = 390,
373 #define ENUM 390
glsl_parser.cc 148 enum yytokentype {
281 ENUM = 390,
482 #define ENUM 390
    [all...]
  /external/doclava/src/com/google/doclava/
InfoBuilder.java 539 private enum ClassType {
540 ENUM, INTERFACE, ANNOTATION, ORDINARY
568 case ENUM:
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 102 "enum", // TYPE_ENUM
221 enum Type {
222 NULL_SYMBOL, MESSAGE, FIELD, ENUM, ENUM_VALUE, SERVICE, METHOD, PACKAGE
238 return type == MESSAGE || type == ENUM;
242 || type == ENUM || type == SERVICE;
253 CONSTRUCTOR(EnumDescriptor , ENUM , enum_descriptor )
265 case ENUM : return enum_descriptor ->file();
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc 104 "enum", // TYPE_ENUM
121 "enum", // CPPTYPE_ENUM
238 enum Type {
239 NULL_SYMBOL, MESSAGE, FIELD, ENUM, ENUM_VALUE, SERVICE, METHOD,
256 return type == MESSAGE || type == ENUM;
260 || type == ENUM || type == SERVICE;
271 CONSTRUCTOR(EnumDescriptor , ENUM , enum_descriptor )
283 case ENUM : return enum_descriptor ->file();
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 71 public static final int ENUM=43;
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp     [all...]
gltrace.pb.h 39 enum GLMessage_DataType_Type {
54 enum GLMessage_Function {
700 static const Type ENUM = GLMessage_DataType_Type_ENUM;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLProtoBuf.java 29 public enum Function
    [all...]
  /prebuilts/devtools/tools/lib/
rule-api.jar 

Completed in 917 milliseconds

1 2