Searched defs:GetValue (Results 1 - 11 of 11) 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.h162 return LockWord().GetValue() == lw.GetValue();
250 return lw1.GetValue() == lw2.GetValue();
292 // Note GetValue() includes the read barrier bits and comparing (==)
293 // GetValue() between two lock words to compare the lock states may
295 uint32_t GetValue() const { function
H A Dcheck_jni.cc170 // This method is const because we need to ensure that one only uses the GetValue method on an
188 JniValueType GetValue(char fmt) { function in class:art::VarArgs
886 if (!CheckPossibleHeapValue(soa, shorty[i], args.GetValue(shorty[i]))) {
999 TracePossibleHeapValue(soa, entry, shorty[i], args.GetValue(shorty[i]), msg);
H A Dstack_map.h170 int32_t GetValue() const { return value_; } function in class:art::DexRegisterLocation::Kind
209 int32_t value = dex_register_location.GetValue();
302 return IsShortStackOffsetValue(location.GetValue())
308 DCHECK_GE(location.GetValue(), 0);
309 DCHECK_LT(location.GetValue(), 1 << kValueBits);
314 DCHECK_GE(location.GetValue(), 0);
315 DCHECK_LT(location.GetValue(), 1 << kValueBits);
319 return IsShortConstantValue(location.GetValue())
336 return IsShortStackOffsetValue(location.GetValue());
345 return IsShortConstantValue(location.GetValue());
[all...]
/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
/art/compiler/optimizing/
H A Dinstruction_simplifier.cc578 if ((instruction->GetValue()->GetType() == Primitive::kPrimNot)
579 && CanEnsureNotNullAt(instruction->GetValue(), instruction)) {
585 if ((instruction->GetValue()->GetType() == Primitive::kPrimNot)
586 && CanEnsureNotNullAt(instruction->GetValue(), instruction)) {
706 DCHECK(input->AsIntConstant()->IsFalse()) << input->AsIntConstant()->GetValue();
752 DCHECK(condition->AsIntConstant()->IsFalse()) << condition->AsIntConstant()->GetValue();
795 HInstruction* value = instruction->GetValue();
1215 if (!left->IsCompare() || !right->IsConstant() || right->AsIntConstant()->GetValue() != 0) {
1300 double value = input_cst->AsDoubleConstant()->GetValue();
1306 float value = input_cst->AsFloatConstant()->GetValue();
2219 static int64_t GetValue(HConstant* constant, bool is_negated) { function in namespace:art
[all...]
H A Dnodes.h2713 int32_t GetValue() const { return value_; } function in class:art::FINAL
2724 size_t ComputeHashCode() const OVERRIDE { return GetValue(); }
2726 bool IsMinusOne() const OVERRIDE { return GetValue() == -1; }
2727 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2728 bool IsZeroBitPattern() const OVERRIDE { return GetValue() == 0; }
2729 bool IsOne() const OVERRIDE { return GetValue() == 1; }
2733 bool IsTrue() const { return GetValue() == 1; }
2734 bool IsFalse() const { return GetValue() == 0; }
2754 int64_t GetValue() const { return value_; } function in class:art::FINAL
2763 size_t ComputeHashCode() const OVERRIDE { return static_cast<size_t>(GetValue()); }
2784 float GetValue() const { return value_; } function in class:art::FINAL
2837 double GetValue() const { return value_; } function in class:art::FINAL
5338 HInstruction* GetValue() const { return InputAt(1); } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
5470 HInstruction* GetValue() const { return InputAt(2); } function in class:art::FINAL::FINAL::ComparisonBias::FINAL::FINAL
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm.h54 T GetValue() const { function in class:art::arm::Literal
/art/compiler/utils/mips/
H A Dassembler_mips.h98 T GetValue() const { function in class:art::mips::Literal
/art/compiler/utils/mips64/
H A Dassembler_mips64.h331 T GetValue() const { function in class:art::mips64::Literal
/art/dexlayout/
H A Ddex_ir.h712 EncodedValue* GetValue() const { return value_.get(); } function in class:art::dex_ir::AnnotationElement

Completed in 255 milliseconds