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

/art/cmdline/
H A Dcmdline_parse_result.h83 const T& GetValue() const { function in struct:art::CmdlineParseResult
91 T& GetValue() { function in struct:art::CmdlineParseResult
/art/runtime/
H A Dlock_word.h139 return LockWord().GetValue() == lw.GetValue();
208 return lw1.GetValue() == lw2.GetValue();
239 // Note GetValue() includes the read barrier bits and comparing (==)
240 // GetValue() between two lock words to compare the lock states may
242 uint32_t GetValue() const { function in class:art::LockWord
H A Dstack_map.h208 int32_t GetValue() const { return value_; } function in class:art::DexRegisterLocation::Kind
243 int32_t value = dex_register_location.GetValue();
335 DCHECK_EQ(location.GetValue(), 0);
339 DCHECK_GE(location.GetValue(), 0);
340 DCHECK_LT(location.GetValue(), 1 << kValueBits);
344 DCHECK_GE(location.GetValue(), 0);
345 DCHECK_LT(location.GetValue(), 1 << kValueBits);
349 return IsShortStackOffsetValue(location.GetValue())
354 return IsShortConstantValue(location.GetValue())
374 return IsShortStackOffsetValue(location.GetValue());
[all...]
/art/compiler/optimizing/
H A Dnodes.h2221 float GetValue() const { return value_; } function in class:art::HFloatConstant
2228 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); }
2231 return bit_cast<uint32_t, float>(AsFloatConstant()->GetValue()) ==
2235 return AsFloatConstant()->GetValue() == 0.0f;
2238 return bit_cast<uint32_t, float>(AsFloatConstant()->GetValue()) ==
2259 double GetValue() const { return value_; } function in class:art::HDoubleConstant
2266 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); }
2269 return bit_cast<uint64_t, double>(AsDoubleConstant()->GetValue()) ==
2273 return AsDoubleConstant()->GetValue() == 0.0;
2276 return bit_cast<uint64_t, double>(AsDoubleConstant()->GetValue())
2316 int32_t GetValue() const { return value_; } function in class:art::HIntConstant
2343 int64_t GetValue() const { return value_; } function in class:art::HLongConstant
3204 HInstruction* GetValue() const { return InputAt(1); } function in class:art::HInstanceFieldSet
3286 HInstruction* GetValue() const { return InputAt(2); } function in class:art::HArraySet
3616 HInstruction* GetValue() const { return InputAt(1); } function in class:art::HStaticFieldSet
[all...]

Completed in 114 milliseconds