| /external/llvm/lib/CodeGen/AsmPrinter/ |
| D | DebugLocEntry.h | 30 struct Value { struct 31 Value(const MDNode *Var, const MDNode *Expr, int64_t i) in Value() argument 35 Value(const MDNode *Var, const MDNode *Expr, const ConstantFP *CFP) in Value() argument 39 Value(const MDNode *Var, const MDNode *Expr, const ConstantInt *CIP) in Value() argument 43 Value(const MDNode *Var, const MDNode *Expr, MachineLocation Loc) in Value() argument 52 /// Any complex address location expression for this Value. argument 53 const MDNode *Expression; 56 enum EntryType { E_Location, E_Integer, E_ConstantFP, E_ConstantInt }; 57 enum EntryType EntryKind; 82 friend bool operator==(const Value &, const Value &); argument
|
| /external/llvm/bindings/go/llvm/ |
| D | ir.go | 37 Value struct { struct 38 C C.LLVMValueRef 75 func (c Value) IsNil() bool { return c.C == nil } 85 func llvmValueRefPtr(t *Value) *C.LLVMValueRef { return (*C.LLVMValueRef)(unsafe.Pointer(t)) } 99 func llvmValueRefs(values []Value) (*C.LLVMValueRef, C.unsigned) { 632 func (v Value) Type() (t Type) { t.C = C.LLVMTypeOf(v.C); return } 633 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) } 634 func (v Value) SetName(name string) { 639 func (v Value) Dump() { C.LLVMDumpValue(v.C) } 640 func (v Value) ReplaceAllUsesWith(nv Value) { C.LLVMReplaceAllUsesWith(v.C, nv.C) } [all …]
|
| D | analysis.go | 54 func VerifyFunction(f Value, a VerifierFailureAction) error { 67 func ViewFunctionCFG(f Value) { C.LLVMViewFunctionCFG(f.C) } 68 func ViewFunctionCFGOnly(f Value) { C.LLVMViewFunctionCFGOnly(f.C) }
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
| D | Value.java | 34 public class Value { class 47 public Value() { in Value() method in Value 54 public Value(byte tag, long value) { in Value() method in Value 62 public Value(byte value) { in Value() method in Value 70 public Value(short value) { in Value() method in Value 78 public Value(int value) { in Value() method in Value 86 public Value(long value) { in Value() method in Value 94 public Value(float value) { in Value() method in Value 102 public Value(double value) { in Value() method in Value 110 public Value(boolean value) { in Value() method in Value [all …]
|
| /external/llvm/include/llvm/Object/ |
| D | RelocVisitor.h | 32 int64_t Value; member 66 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitELF() 201 RelocToApply visitCOFF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitCOFF() 264 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) { in visitELF_386_32() 269 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value) { in visitELF_386_PC32() 280 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) { in visitELF_X86_64_64() 284 RelocToApply visitELF_X86_64_PC32(RelocationRef R, uint64_t Value) { in visitELF_X86_64_PC32() 290 RelocToApply visitELF_X86_64_32(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32() 295 RelocToApply visitELF_X86_64_32S(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32S() 302 RelocToApply visitELF_PPC64_ADDR32(RelocationRef R, uint64_t Value) { in visitELF_PPC64_ADDR32() [all …]
|
| /external/llvm/tools/llvm-readobj/ |
| D | StreamWriter.h | 29 T Value; member 45 uint64_t Value; member 75 HexNumber hex(T Value) { in hex() 80 void printEnum(StringRef Label, T Value, in printEnum() 127 void printFlags(StringRef Label, T Value) { in printFlags() 140 void printNumber(StringRef Label, uint64_t Value) { in printNumber() 144 void printNumber(StringRef Label, uint32_t Value) { in printNumber() 148 void printNumber(StringRef Label, uint16_t Value) { in printNumber() 152 void printNumber(StringRef Label, uint8_t Value) { in printNumber() 156 void printNumber(StringRef Label, int64_t Value) { in printNumber() [all …]
|
| D | ARMAttributeParser.cpp | 76 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseInteger() local 106 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value, in PrintAttribute() 127 uint64_t Value = ParseInteger(Data, Offset); in CPU_arch() local 154 uint64_t Value = ParseInteger(Data, Offset); in ARM_ISA_use() local 164 uint64_t Value = ParseInteger(Data, Offset); in THUMB_ISA_use() local 177 uint64_t Value = ParseInteger(Data, Offset); in FP_arch() local 187 uint64_t Value = ParseInteger(Data, Offset); in WMMX_arch() local 199 uint64_t Value = ParseInteger(Data, Offset); in Advanced_SIMD_arch() local 212 uint64_t Value = ParseInteger(Data, Offset); in PCS_config() local 222 uint64_t Value = ParseInteger(Data, Offset); in ABI_PCS_R9_use() local [all …]
|
| /external/llvm/include/llvm/MC/ |
| D | MCObjectWriter.h | 119 void Write8(uint8_t Value) { in Write8() 123 void WriteLE16(uint16_t Value) { in WriteLE16() 127 void WriteLE32(uint32_t Value) { in WriteLE32() 131 void WriteLE64(uint64_t Value) { in WriteLE64() 135 void WriteBE16(uint16_t Value) { in WriteBE16() 139 void WriteBE32(uint32_t Value) { in WriteBE32() 143 void WriteBE64(uint64_t Value) { in WriteBE64() 147 void Write16(uint16_t Value) { in Write16() 154 void Write32(uint32_t Value) { in Write32() 161 void Write64(uint64_t Value) { in Write64()
|
| D | MCInstPrinter.h | 80 void setUseMarkup(bool Value) { UseMarkup = Value; } in setUseMarkup() 87 void setPrintImmHex(bool Value) { PrintImmHex = Value; } in setPrintImmHex() 90 void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; } in setPrintImmHex() 93 format_object<int64_t> formatImm(int64_t Value) const { in formatImm()
|
| /external/llvm/lib/Target/X86/AsmParser/ |
| D | X86AsmParserCommon.h | 15 inline bool isImmSExti16i8Value(uint64_t Value) { in isImmSExti16i8Value() 21 inline bool isImmSExti32i8Value(uint64_t Value) { in isImmSExti32i8Value() 27 inline bool isImmSExti64i8Value(uint64_t Value) { in isImmSExti64i8Value() 32 inline bool isImmSExti64i32Value(uint64_t Value) { in isImmSExti64i32Value() 37 inline bool isImmUnsignedi8Value(uint64_t Value) { in isImmUnsignedi8Value()
|
| /external/llvm/include/llvm/ADT/ |
| D | StringSwitch.h | 55 StringSwitch& Case(const char (&S)[N], const T& Value) { in Case() 65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { in EndsWith() 75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { in StartsWith() 86 const T& Value) { in Cases() 92 const char (&S2)[N2], const T& Value) { in Cases() 99 const T& Value) { in Cases() 106 const char (&S4)[N4], const T& Value) { in Cases() 111 R Default(const T& Value) const { in Default()
|
| /external/bison/src/ |
| D | muscle-tab.h | 38 #define MUSCLE_INSERT_BOOL(Key, Value) \ argument 44 #define MUSCLE_INSERT_INT(Key, Value) \ argument 51 #define MUSCLE_INSERT_LONG_INT(Key, Value) \ argument 58 #define MUSCLE_INSERT_STRING_RAW(Key, Value) \ argument 65 #define MUSCLE_INSERT_STRING(Key, Value) \ argument 72 #define MUSCLE_INSERT_C_STRING(Key, Value) \ argument
|
| /external/v8/src/ |
| D | scopeinfo.h | 60 struct Value { struct 61 Value(VariableMode mode, InitializationFlag init_flag, in Value() argument 76 explicit inline Value(uint32_t value) : value_(value) {} in Value() argument 78 uint32_t raw() { return value_; } in raw() 80 VariableMode mode() { return ModeField::decode(value_); } in mode() 82 InitializationFlag initialization_flag() { in initialization_flag() 86 MaybeAssignedFlag maybe_assigned_flag() { in maybe_assigned_flag() 90 int index() { return IndexField::decode(value_); } in index()
|
| /external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/ |
| D | p2-0x.cpp | 4 struct Value { struct 5 constexpr Value(int n) : n(n) {} in Value() function 16 void test(Value v) { in test() argument
|
| /external/clang/unittests/ASTMatchers/Dynamic/ |
| D | VariantValueTest.cpp | 24 VariantValue Value = kUnsigned; in TEST() local 36 VariantValue Value = kString; in TEST() local 48 VariantValue Value = VariantMatcher::SingleMatcher(stmt()); in TEST() local 77 VariantValue Value = std::string("A"); in TEST() local 110 VariantValue Value; in TEST() local
|
| /external/llvm/lib/Object/ |
| D | ELFYAML.cpp | 25 ELFYAML::ELF_ET &Value) { in enumeration() 38 ELFYAML::ELF_EM &Value) { in enumeration() 199 IO &IO, ELFYAML::ELF_ELFCLASS &Value) { in enumeration() 209 IO &IO, ELFYAML::ELF_ELFDATA &Value) { in enumeration() 219 IO &IO, ELFYAML::ELF_ELFOSABI &Value) { in enumeration() 247 ELFYAML::ELF_EF &Value) { in bitset() 303 IO &IO, ELFYAML::ELF_SHT &Value) { in enumeration() 360 ELFYAML::ELF_SHF &Value) { in bitset() 377 IO &IO, ELFYAML::ELF_STT &Value) { in enumeration() 391 IO &IO, ELFYAML::ELF_STV &Value) { in enumeration() [all …]
|
| D | COFFYAML.cpp | 27 IO &IO, COFFYAML::COMDATType &Value) { in enumeration() 40 IO &IO, COFFYAML::WeakExternalCharacteristics &Value) { in enumeration() 48 IO &IO, COFFYAML::AuxSymbolType &Value) { in enumeration() 53 IO &IO, COFF::MachineTypes &Value) { in enumeration() 78 IO &IO, COFF::SymbolBaseType &Value) { in enumeration() 98 IO &IO, COFF::SymbolStorageClass &Value) { in enumeration() 129 IO &IO, COFF::SymbolComplexType &Value) { in enumeration() 137 IO &IO, COFF::RelocationTypeI386 &Value) { in enumeration() 152 IO &IO, COFF::RelocationTypeAMD64 &Value) { in enumeration() 173 IO &IO, COFF::WindowsSubsystem &Value) { in enumeration() [all …]
|
| /external/llvm/lib/Target/SystemZ/InstPrinter/ |
| D | SystemZInstPrinter.cpp | 58 int64_t Value = MI->getOperand(OpNum).getImm(); in printU4ImmOperand() local 65 int64_t Value = MI->getOperand(OpNum).getImm(); in printU6ImmOperand() local 72 int64_t Value = MI->getOperand(OpNum).getImm(); in printS8ImmOperand() local 79 int64_t Value = MI->getOperand(OpNum).getImm(); in printU8ImmOperand() local 86 int64_t Value = MI->getOperand(OpNum).getImm(); in printS16ImmOperand() local 93 int64_t Value = MI->getOperand(OpNum).getImm(); in printU16ImmOperand() local 100 int64_t Value = MI->getOperand(OpNum).getImm(); in printS32ImmOperand() local 107 int64_t Value = MI->getOperand(OpNum).getImm(); in printU32ImmOperand() local 114 uint64_t Value = MI->getOperand(OpNum).getImm(); in printAccessRegOperand() local
|
| /external/llvm/include/llvm/Support/ |
| D | LEB128.h | 23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { in encodeSLEB128() 82 uint64_t Value = 0; variable 96 int64_t Value = 0; variable
|
| /external/clang/test/CodeGen/ |
| D | pragma-unroll.cpp | 51 void for_define_test(int *List, int Length, int Value) { in for_define_test() 61 void for_template_test(A *List, int Length, A Value) { in for_template_test() 71 void for_template_define_test(A *List, int Length, A Value) { in for_template_define_test() 83 double Value = 10; in template_test() local
|
| /external/llvm/lib/Target/PowerPC/InstPrinter/ |
| D | PPCInstPrinter.cpp | 219 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU1ImmOperand() local 226 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU2ImmOperand() local 233 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU3ImmOperand() local 240 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU4ImmOperand() local 247 int Value = MI->getOperand(OpNo).getImm(); in printS5ImmOperand() local 254 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU5ImmOperand() local 261 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU6ImmOperand() local 268 unsigned short Value = MI->getOperand(OpNo).getImm(); in printU12ImmOperand() local
|
| /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | APSIntType.h | 28 /* implicit */ APSIntType(const llvm::APSInt &Value) in APSIntType() 38 void apply(llvm::APSInt &Value) const { in apply() 49 llvm::APSInt convert(const llvm::APSInt &Value) const LLVM_READONLY { in convert()
|
| /external/deqp/modules/glshared/ |
| D | glsShaderLibraryCase.hpp | 69 struct Value struct in deqp::gls::sl::ShaderCase 71 enum StorageType 81 union Element 88 StorageType storageType; 89 std::string valueName; 90 glu::DataType dataType; 91 int arrayLength; // Number of elements in array (currently always 1). 92 std::vector<Element> elements; // Scalar values (length dataType.scalarSize * arrayLength).
|
| /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/ |
| D | p1.cpp | 25 struct Value { struct 27 void set(T value) {} // expected-note{{lookup in the object type 'Value' refers here}} in set() argument 30 Value v; in resolves_to_same() argument
|
| D | p1-cxx11.cpp | 5 struct Value { struct 10 Value v; in resolves_to_same() argument
|