HomeSort by relevance Sort by last modified time
    Searched full:enumvalue (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /frameworks/native/opengl/libs/tools/
glenumsgen 29 my $enumValue = $2;
30 next if exists($enumHash { $enumValue });
31 $enumHash { $enumValue } = $enumName;
32 printf("GL_ENUM(%s,%s)\n", $enumValue, $enumName);
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableEnum.java 60 int enumValue = getEnumValue(value);
63 buffer.putInt(enumValue);
65 if (enumValue < UINT8_MIN || enumValue > UINT8_MAX) {
67 "Enum value %x too large to fit into unsigned byte", enumValue));
69 buffer.put((byte)enumValue);
77 int enumValue;
81 enumValue = buffer.getInt();
85 enumValue = buffer.get() & UINT8_MASK;
92 return getEnumFromValue(mClass, enumValue);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DebugUtilitiesTest.java 39 int enumValue = DebugUtilities.enumArrayValue(j, k);
41 logln(" Enum "+k+"/"+enumCount+": "+enumString +" - value "+enumValue+", value from string:"+enumValueFromString);
42 if(enumValue != k) {
43 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: value="+enumValue+" should be "+k);
TestUtilities.java 79 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
80 //if (enumValue <= 0) continue; // for smaller set
81 String value = UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
402 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
403 if (enumValue <= 0) continue; // for smaller set
404 String value = UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
430 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
431 //if (enumValue <= 0) continue;
432 UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DebugUtilitiesTest.java 35 int enumValue = DebugUtilities.enumArrayValue(j, k);
37 logln(" Enum "+k+"/"+enumCount+": "+enumString +" - value "+enumValue+", value from string:"+enumValueFromString);
38 if(enumValue != k) {
39 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: value="+enumValue+" should be "+k);
  /external/llvm/tools/llvm-pdbdump/
EnumDumper.cpp 38 while (auto EnumValue = EnumValues->getNext()) {
39 if (EnumValue->getDataKind() != PDB_DataKind::Constant)
43 << EnumValue->getName();
46 << EnumValue->getValue();
  /external/smali/examples/AnnotationValues/
AnnotationWithValues.smali 45 .method public abstract enumValue()LEnum;
64 enumValue = .enum LEnum;->12:LEnum;
Main.smali 5 #@AnnotationWithValues(booleanValue=false, byteValue=1, charValue=2, doubleValue=7.0, enumValue=12, floatValue=6.0, intValue=4, longValue=5, methodValue=public static void 10.11(), shortValue=3, stringValue=8, subAnnotationValue=@SubAnnotation(stringValue=9), typeValue=class 10)
  /external/guava/guava/src/com/google/common/base/
Enums.java 49 * Returns the {@link Field} in which {@code enumValue} is defined. For example, to get the
56 public static Field getField(Enum<?> enumValue) {
57 Class<?> clazz = enumValue.getDeclaringClass();
59 return clazz.getDeclaredField(enumValue.name());
137 protected String doBackward(T enumValue) {
138 return enumValue.name();
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
type.pb.h 44 class EnumValue;
600 // repeated .google.protobuf.EnumValue enumvalue = 2;
604 const ::google::protobuf::EnumValue& enumvalue(int index) const;
605 ::google::protobuf::EnumValue* mutable_enumvalue(int index);
606 ::google::protobuf::EnumValue* add_enumvalue();
607 ::google::protobuf::RepeatedPtrField< ::google::protobuf::EnumValue >*
609 const ::google::protobuf::RepeatedPtrField< ::google::protobuf::EnumValue >&
610 enumvalue() const
1407 inline const ::google::protobuf::EnumValue& Enum::enumvalue(int index) const { function in class:google::protobuf::Enum
1425 Enum::enumvalue() const { function in class:google::protobuf::Enum
    [all...]
type.proto 146 repeated EnumValue enumvalue = 2;
156 message EnumValue {
  /external/deqp/scripts/egl/
enums.py 42 def enumValue (enum, typePrefix = ""):
49 return "#define %s\t%s" % (enum.name, enumValue(enum, "eglw::"))
  /external/llvm/utils/TableGen/
CodeGenRegisters.h 62 const unsigned EnumValue;
123 return A.EnumValue < B.EnumValue;
129 unsigned EnumValue;
260 return A.EnumValue < B.EnumValue;
264 return A.EnumValue == B.EnumValue;
271 // Bit mask of sub-classes including this, indexed by their EnumValue.
274 // first. This is the same as sorting by EnumValue
    [all...]
RegisterInfoEmitter.cpp 97 OS << " " << Reg.getName() << " = " << Reg.EnumValue << ",\n";
98 assert(Registers.size() == Registers.back().EnumValue &&
118 << " = " << RC.EnumValue << ",\n";
557 OS << Idx->EnumValue;
593 uint16_t Cur = (*I)->EnumValue;
614 CodeGenSubRegIndex *&Entry = Vec[I.first->EnumValue - 1];
621 auto *&Entry = Vec[I.first->EnumValue - 1];
623 "Expected EnumValue to be unique");
683 OS << Rows[r][i]->EnumValue << ", ";
825 diffEncode(SubRegLists[i], Reg.EnumValue, SR.begin(), SR.end())
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
messages.js 24 goog.provide('ProtoRpc.EnumValue');
151 var value = new ProtoRpc.EnumValue(values[number], parseInt(number, 10));
161 * @return {ProtoRpc.EnumValue}
182 * VALUE = ProtoRpc.EnumValue('VALUE', 1)
190 ProtoRpc.EnumValue = function(name, number) {
208 ProtoRpc.EnumValue.prototype.toString = function() {
216 ProtoRpc.EnumValue.prototype.valueOf = function() {
496 * @type {Array.<ProtoRpc.EnumValue>}
504 * @type {ProtoRpc.EnumValue}
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Enums.java 83 protected String doBackward(T enumValue) {
84 return enumValue.name();
  /external/icu/icu4c/source/common/
utrie2.cpp 533 * The values are transformed from the raw trie entries by the enumValue function.
547 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange, const void *context) {
558 if(enumValue==NULL) {
559 enumValue=enumSameValue;
583 initialValue=enumValue(context, trie->initialValue);
679 value=enumValue(context, data32!=NULL ? data32[block+j] : idx[block+j]);
707 value=enumValue(context, highValue);
724 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange, const void *context) {
725 enumEitherTrie(trie, 0, 0x110000, enumValue, enumRange, context);
730 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
TestUtilities.java 75 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
76 //if (enumValue <= 0) continue; // for smaller set
77 String value = UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
398 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
399 if (enumValue <= 0) continue; // for smaller set
400 String value = UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
426 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
427 //if (enumValue <= 0) continue;
428 UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
  /external/curl/lib/
setup-os400.h 88 GSK_ENUM_VALUE enumValue);
109 GSK_ENUM_VALUE * enumValue);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
ICUPropertyFactory.java 117 int enumValue = -1;
120 enumValue = UCharacter.getIntPropertyValue(codePoint, propEnum);
121 if (enumValue >= 0)
122 value = fixedGetPropertyValueName(propEnum, enumValue, UProperty.NameChoice.LONG);
129 return value != null ? value : String.valueOf(enumValue);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
ICUPropertyFactory.java 116 int enumValue = -1;
119 enumValue = UCharacter.getIntPropertyValue(codePoint, propEnum);
120 if (enumValue >= 0)
121 value = fixedGetPropertyValueName(propEnum, enumValue, UProperty.NameChoice.LONG);
128 return value != null ? value : String.valueOf(enumValue);
  /external/guice/core/test/com/google/inject/
TypeConversionTest.java 48 @BindingAnnotation @interface EnumValue {}
68 @Inject @EnumValue Bar enumField;
97 bindConstant().annotatedWith(EnumValue.class).to("TEE");
130 bindConstant().annotatedWith(EnumValue.class).to("TEE");
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_winreg.py 134 data = EnumValue(sub_key, index)
240 # EnumValue or QueryValue to raise "WindowsError: More data is
262 name = EnumValue(key, i)
290 EnumValue(HKEY_PERFORMANCE_DATA, 0)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_winreg.py 134 data = EnumValue(sub_key, index)
240 # EnumValue or QueryValue to raise "WindowsError: More data is
262 name = EnumValue(key, i)
290 EnumValue(HKEY_PERFORMANCE_DATA, 0)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_winreg.py 134 data = EnumValue(sub_key, index)
240 # EnumValue or QueryValue to raise "WindowsError: More data is
262 name = EnumValue(key, i)
290 EnumValue(HKEY_PERFORMANCE_DATA, 0)

Completed in 488 milliseconds

1 2 3 4