Searched defs:GetValue (Results 1 - 7 of 7) sorted by last modified time

/art/runtime/
H A Dcheck_jni.cc165 // This method is const because we need to ensure that one only uses the GetValue method on an
183 JniValueType GetValue(char fmt) { function in class:art::VarArgs
873 if (!CheckPossibleHeapValue(soa, shorty[i], args.GetValue(shorty[i]))) {
986 TracePossibleHeapValue(soa, entry, shorty[i], args.GetValue(shorty[i]), msg);
H A Dlock_word.h139 return LockWord().GetValue() == lw.GetValue();
208 return lw1.GetValue() == lw2.GetValue();
243 // Note GetValue() includes the read barrier bits and comparing (==)
244 // GetValue() between two lock words to compare the lock states may
246 uint32_t GetValue() const { function in class:art::LockWord
H A Dstack_map.h165 int32_t GetValue() const { return value_; } function in class:art::DexRegisterLocation::Kind
204 int32_t value = dex_register_location.GetValue();
297 return IsShortStackOffsetValue(location.GetValue())
303 DCHECK_GE(location.GetValue(), 0);
304 DCHECK_LT(location.GetValue(), 1 << kValueBits);
309 DCHECK_GE(location.GetValue(), 0);
310 DCHECK_LT(location.GetValue(), 1 << kValueBits);
314 return IsShortConstantValue(location.GetValue())
331 return IsShortStackOffsetValue(location.GetValue());
340 return IsShortConstantValue(location.GetValue());
[all...]
/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/compiler/optimizing/
H A Dnodes.h2525 int32_t GetValue() const { return value_; } function in class:art::HIntConstant
2536 size_t ComputeHashCode() const OVERRIDE { return GetValue(); }
2538 bool IsMinusOne() const OVERRIDE { return GetValue() == -1; }
2539 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2540 bool IsZeroBitPattern() const OVERRIDE { return GetValue() == 0; }
2541 bool IsOne() const OVERRIDE { return GetValue() == 1; }
2545 bool IsTrue() const { return GetValue() == 1; }
2546 bool IsFalse() const { return GetValue() == 0; }
2566 int64_t GetValue() const { return value_; } function in class:art::HLongConstant
2575 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); }
2596 float GetValue() const { return value_; } function in class:art::HFloatConstant
2649 double GetValue() const { return value_; } function in class:art::HDoubleConstant
5076 HInstruction* GetValue() const { return InputAt(1); } function in class:art::HTryBoundary::HClassTableGet::ComparisonBias::HInvokeStaticOrDirect::HInstanceFieldSet
5200 HInstruction* GetValue() const { return InputAt(2); } function in class:art::HTryBoundary::HClassTableGet::ComparisonBias::HInvokeStaticOrDirect::HArraySet
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm.h52 T GetValue() const { function in class:art::arm::Literal
/art/compiler/utils/
H A Dintrusive_forward_list.h80 return *HookTraits::GetValue(hook_);
444 static T* GetValue(const IntrusiveForwardListHook* hook) { function in class:art::IntrusiveForwardListMemberHook

Completed in 109 milliseconds