/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();
|
/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...] |
/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...] |
CodeGenRegisters.cpp | 34 : TheDef(R), EnumValue(Enum), LaneMask(0), AllSuperRegsCovered(true) { 45 EnumValue(Enum), LaneMask(0), AllSuperRegsCovered(true) { 108 EnumValue(Enum), 497 Id.push_back(I->first->EnumValue); 658 EnumValue(-1), 729 EnumValue(-1), 858 RC.SubClasses.set(RC.EnumValue); 863 if (RC.SubClasses.test(SubRC.EnumValue)) [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/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");
|
/external/clang/docs/tools/ |
dump_format_style.py | 77 class EnumValue: 166 enum.values.append(EnumValue(line.replace(',', ''), comment))
|
/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)
|
test_winsound.py | 24 value = _winreg.EnumValue(key, 0)[1]
|
/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)
|
test_winsound.py | 24 value = _winreg.EnumValue(key, 0)[1]
|
/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)
|
test_winsound.py | 24 value = _winreg.EnumValue(key, 0)[1]
|
/prebuilts/python/linux-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)
|
test_winsound.py | 24 value = _winreg.EnumValue(key, 0)[1]
|
/system/media/camera/docs/ |
camera_metadata_tag_info.mako | 101 find_values = lambda x: isinstance(x, metadata_model.EnumValue)
|
metadata_model.py | 32 EnumValue: A class corresponding to a <value> element within an Enum 954 class EnumValue(Node): 1012 values: A sequence of EnumValue children. 1019 [ EnumValue(val, self, ids.get(val), val in deprecateds, val in optionals, val in hiddens, \ [all...] |
/prebuilts/go/darwin-x86/src/debug/dwarf/ |
type.go | 200 Val []*EnumValue 203 // An EnumValue represents a single enumeration value. 204 type EnumValue struct { 583 t.Val = make([]*EnumValue, 0, 8) 586 f := new(EnumValue) 591 val := make([]*EnumValue, n, n*2)
|
/prebuilts/go/linux-x86/src/debug/dwarf/ |
type.go | 200 Val []*EnumValue 203 // An EnumValue represents a single enumeration value. 204 type EnumValue struct { 583 t.Val = make([]*EnumValue, 0, 8) 586 f := new(EnumValue) 591 val := make([]*EnumValue, n, n*2)
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
p5.cpp | 176 EnumValue = static_cast<Types>(0) // expected-error{{enumerator value contains unexpanded parameter pack 'Types'}}
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
msvccompiler.py | 31 RegEnumValue = _winreg.EnumValue
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
msvccompiler.py | 31 RegEnumValue = _winreg.EnumValue
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
msvccompiler.py | 31 RegEnumValue = _winreg.EnumValue
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
msvccompiler.py | 31 RegEnumValue = _winreg.EnumValue
|