Searched defs:Value (Results 1 - 4 of 4) sorted by relevance

/art/cmdline/
H A Dmemory_representation.h39 Memory() : Value(0u) {}
40 Memory(size_t value) : Value(value) { // NOLINT [runtime/explicit] [5]
43 operator size_t() const { return Value; }
46 return Value;
58 size_t Value; member in struct:art::Memory
63 return stream << memory.Value << '*' << kDivisor;
/art/compiler/optimizing/
H A Dinduction_var_range.h41 * Value() denotes an unknown lower and upper bound. Although range analysis could yield
45 struct Value { struct in class:art::InductionVarRange
46 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {} function in struct:art::InductionVarRange::Value
47 Value(HInstruction* i, int32_t a, int32_t b) function in struct:art::InductionVarRange::Value
49 explicit Value(int32_t b) : Value(nullptr, 0, b) {} function in struct:art::InductionVarRange::Value
70 /*out*/ Value* min_val,
71 /*out*/ Value* max_val,
218 Value GetLinear(HInductionVarAnalysis::InductionInfo* info,
222 Value GetPolynomia
[all...]
/art/test/122-npe/src/
H A DMain.java68 ((Value) null).objectField.toString();
75 useInt(((Value) null).intField);
82 useFloat(((Value) null).floatField);
89 useLong(((Value) null).longField);
96 useDouble(((Value) null).doubleField);
103 ((Value) null).objectField = "Fisk";
110 ((Value) null).intField = 42;
117 ((Value) null).floatField = 42.0F;
124 ((Value) null).longField = 42L;
131 ((Value) nul
603 static class Value { class in class:Main
[all...]
/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DValue.java21 * Note: To save memory, a null Value is used to represent a null Java
24 public abstract class Value { class
26 * Constructs a Value for an AhatInstance.
32 public static Value pack(AhatInstance value) {
37 * Constructs a Value for a boolean.
42 public static Value pack(boolean value) {
47 * Constructs a Value for a char.
52 public static Value pack(char value) {
57 * Constructs a Value for a float.
62 public static Value pac
[all...]

Completed in 152 milliseconds