Home
last modified time | relevance | path

Searched refs:EnumValue (Results 1 – 11 of 11) sorted by relevance

/external/llvm/tools/llvm-pdbdump/
DEnumDumper.cpp38 while (auto EnumValue = EnumValues->getNext()) { in start() local
39 if (EnumValue->getDataKind() != PDB_DataKind::Constant) in start()
43 << EnumValue->getName(); in start()
46 << EnumValue->getValue(); in start()
/external/llvm/utils/TableGen/
DCodeGenRegisters.h62 const unsigned EnumValue; variable
123 return A.EnumValue < B.EnumValue;
129 unsigned EnumValue; member
260 return A.EnumValue < B.EnumValue;
264 return A.EnumValue == B.EnumValue;
301 unsigned EnumValue;
343 return SubClasses.test(RC->EnumValue); in hasSubClass()
602 return Reg->EnumValue - 1; in getRegIndex()
DRegisterInfoEmitter.cpp97 OS << " " << Reg.getName() << " = " << Reg.EnumValue << ",\n"; in runEnums()
98 assert(Registers.size() == Registers.back().EnumValue && in runEnums()
118 << " = " << RC.EnumValue << ",\n"; in runEnums()
557 OS << Idx->EnumValue; in printSubRegIndex()
593 uint16_t Cur = (*I)->EnumValue; in diffEncode()
614 CodeGenSubRegIndex *&Entry = Vec[I.first->EnumValue - 1]; in combine()
621 auto *&Entry = Vec[I.first->EnumValue - 1]; in combine()
683 OS << Rows[r][i]->EnumValue << ", "; in emitComposeSubRegIndices()
825 diffEncode(SubRegLists[i], Reg.EnumValue, SR.begin(), SR.end()); in runMCDesc()
836 diffEncode(SuperRegLists[i], Reg.EnumValue, SuperRegList.begin(), in runMCDesc()
[all …]
DCodeGenRegisters.cpp34 : TheDef(R), EnumValue(Enum), LaneMask(0), AllSuperRegsCovered(true) { in CodeGenSubRegIndex()
45 EnumValue(Enum), LaneMask(0), AllSuperRegsCovered(true) { in CodeGenSubRegIndex()
108 EnumValue(Enum), in CodeGenRegister()
497 Id.push_back(I->first->EnumValue); in computeSuperRegs()
658 EnumValue(-1), in CodeGenRegisterClass()
729 EnumValue(-1), in CodeGenRegisterClass()
858 RC.SubClasses.set(RC.EnumValue); in computeSubClasses()
863 if (RC.SubClasses.test(SubRC.EnumValue)) in computeSubClasses()
874 RC.SubClasses.set(I2->EnumValue); in computeSubClasses()
905 Out.set(RC->EnumValue); in getSuperRegClasses()
[all …]
DDAGISelMatcherEmitter.cpp476 if (Reg && Reg->EnumValue > 255) { in EmitMatcher()
DAsmMatcherEmitter.cpp2206 "return " + utostr(Reg.EnumValue) + ";"); in emitMatchRegisterName()
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
Dmessages.js151 var value = new ProtoRpc.EnumValue(values[number], parseInt(number, 10));
190 ProtoRpc.EnumValue = function(name, number) { class in ProtoRpc
208 ProtoRpc.EnumValue.prototype.toString = function() {
216 ProtoRpc.EnumValue.prototype.valueOf = function() {
/external/guice/core/test/com/google/inject/
DTypeConversionTest.java48 @BindingAnnotation @interface EnumValue {} annotation in TypeConversionTest
68 @Inject @EnumValue Bar enumField;
97 bindConstant().annotatedWith(EnumValue.class).to("TEE"); in testConstantInjection()
130 bindConstant().annotatedWith(EnumValue.class).to("TEE"); in testConstantInjectionWithExplicitBindingsRequired()
/external/clang/docs/tools/
Ddump_format_style.py77 class EnumValue: class
166 enum.values.append(EnumValue(line.replace(',', ''), comment))
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dp5.cpp176EnumValue = static_cast<Types>(0) // expected-error{{enumerator value contains unexpanded paramete… enumerator
/external/protobuf/src/google/protobuf/
Ddescriptor.cc4558 VALIDATE_OPTIONS_FROM_ARRAY(enm, value, EnumValue); in ValidateEnumOptions()