/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
DexBuilder.java | 238 case ValueType.ENUM:
|
/frameworks/rs/api/ |
GenerateHeaderFiles.cpp | 144 case ENUM: { 145 *file << "enum" << attribute << " ";
|
GenerateStubsWhiteList.cpp | 83 case ENUM:
|
GenerateDocumentation.cpp | 240 enum DeprecatedSelector { 366 case ENUM: { 367 *file << "<p>An enum with the following values: \n";
|
Specification.h | 41 enum NumberKind { SIGNED_INTEGER, UNSIGNED_INTEGER, FLOATING_POINT }; 279 enum TypeKind { 283 ENUM, 304 // If mKind is ENUM: 305 std::string mEnumName; // The name found after the enum keyword 306 std::vector<std::string> mValues; // One entry per enum value 307 std::vector<std::string> mValueComments; // One entry per enum value
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DescriptorsTest.java | 225 assertEquals(FieldDescriptor.Type.ENUM, enumField.getType()); 226 assertEquals(FieldDescriptor.JavaType.ENUM, enumField.getJavaType()); 404 * Test that the FieldDescriptor.Type enum is the same as the 405 * WireFormat.FieldType enum. 419 * Test that the FieldDescriptor.JavaType enum is the same as the 420 * WireFormat.JavaType enum. 675 assertTrue(field.getType() == FieldDescriptor.Type.ENUM); 713 .setName("Enum") 723 .setTypeName("Enum")
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateHandlerTest.java | 370 if (parameter.type == Parameter.Type.ENUM) { 482 if (parameter.type == Parameter.Type.ENUM) { 566 if (parameter.type == Parameter.Type.ENUM) { [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
messages.py | 21 Enum: Represents an enumerated type. 58 'Enum', 147 # may not be used by either Enum or Message class definitions. 162 # All enum values must be less than or equal to this value. 178 The Enum and Message definition classes share some basic functionality. 281 """Meta-class used for defining the Enum base class. 283 Meta-class enables very specific behavior for any defined Enum 284 class. All attributes defined on an Enum sub-class must be integers. 285 Each attribute defined on an Enum sub-class is translated 288 that only one level of Enum class hierarchy is possible. In othe [all...] |
definition_test.py | 49 """Test defining an empty enum.""" 61 """Test defining an enum.""" 195 """Test defining an enum field.""" 200 field_descriptor.variant = descriptor.FieldDescriptor.Variant.ENUM 211 self.assertEquals(descriptor.FieldDescriptor.Variant.ENUM, field.variant) 359 class NestedEnum(messages.Enum): 394 class NestedEnum(messages.Enum):
|
/cts/tools/dasm/src/dasm/ |
parser.cup | 75 ANNOTATION, ENUM, BRIDGE, VARARGS, STRICT, SYNTHETIC, 227 ENUM {: access_val |= com.android.dx.rop.code.AccessFlags.ACC_ENUM; :} 474 Word:w {: RESULT.variant_val = w.str_val; :} // for enum
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
DynamicMessage.java | 489 // FieldSet.setField() permits Integer value for enum fields probably 492 if (field.getType() == FieldDescriptor.Type.ENUM) { 581 /** Verifies that the value is EnumValueDescriptor and matches Enum Type. */ 589 "DynamicMessage should use EnumValueDescriptor to set Enum Value."); 593 "EnumValueDescriptor doesn't much Enum Field."); 597 /** Verifies the value for an enum field. */
|
MessageReflection.java | 226 enum ContainerType { 247 * enum fields, the EnumValueDescriptor for the value is returned. For 752 if (field.getLiteType() == WireFormat.FieldType.ENUM) { 758 // enum, drop it (don't even add it to unknownFields). 784 case ENUM: 787 // If the number isn't recognized as a valid value for this enum,
|
/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 {
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/ |
protorpc.js | 81 * @enum {string} 365 case ProtoRpc.Variant.ENUM:
|
/libcore/ojluni/src/main/java/java/lang/ |
Class.java | 80 * interfaces in a running Java application. An enum is a kind of 264 private static final int ENUM = 0x00004000; [all...] |
/external/protobuf/src/google/protobuf/ |
descriptor.cc | 107 "enum", // TYPE_ENUM 124 "enum", // CPPTYPE_ENUM 245 enum Type { 246 NULL_SYMBOL, MESSAGE, FIELD, ONEOF, ENUM, ENUM_VALUE, SERVICE, METHOD, 264 return type == MESSAGE || type == ENUM; 268 || type == ENUM || type == SERVICE; 280 CONSTRUCTOR(EnumDescriptor , ENUM , enum_descriptor ) 293 case ENUM : return enum_descriptor ->file(); [all...] |
dynamic_message.cc | 420 HANDLE_TYPE( ENUM, int);
|
/external/doclava/src/com/google/doclava/ |
InfoBuilder.java | 540 private enum ClassType { 541 ENUM, INTERFACE, ANNOTATION, ORDINARY 569 case ENUM: [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/ |
encoding_test.py | 44 class ThisEnum(messages.Enum): 63 class ThisEnum(messages.Enum): 94 class SomeEnum(messages.Enum): 262 self.assertEqual(('VALUE_OEN', messages.Variant.ENUM),
|
/prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/ |
libprotobuf-java-lite-2.3.0.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/ |
AttributeInfoTest.java | 219 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.ENUM,
|
/prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/ |
qdox-1.12.jar | |
/external/mesa3d/src/mesa/main/ |
attrib.c | 494 #define TEST_AND_UPDATE(VALUE, NEWVALUE, ENUM) \ 496 _mesa_set_enable( ctx, ENUM, (NEWVALUE) ); \ [all...] |
/prebuilts/devtools/tools/lib/ |
rule-api.jar | |
/prebuilts/gradle-plugin/com/android/tools/rule-api/24.4.0-beta3/ |
rule-api-24.4.0-beta3.jar | |