Home
last modified time | relevance | path

Searched refs:GetB (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Djvalue.h33 int8_t GetB() const { return b; } in GetB() function
Dreflection_test.cc150 EXPECT_EQ(0, result.GetB()); in InvokeIdentityByteMethod()
154 EXPECT_EQ(-1, result.GetB()); in InvokeIdentityByteMethod()
158 EXPECT_EQ(SCHAR_MAX, result.GetB()); in InvokeIdentityByteMethod()
163 EXPECT_EQ(SCHAR_MIN, result.GetB()); in InvokeIdentityByteMethod()
Djni_internal.cc735 return result.GetB(); in CallByteMethod()
742 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetB(); in CallByteMethodV()
749 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetB(); in CallByteMethodA()
992 return result.GetB(); in CallNonvirtualByteMethod()
1000 return InvokeWithVarArgs(soa, obj, mid, args).GetB(); in CallNonvirtualByteMethodV()
1008 return InvokeWithJValues(soa, obj, mid, args).GetB(); in CallNonvirtualByteMethodA()
1460 return result.GetB(); in CallStaticByteMethod()
1466 return InvokeWithVarArgs(soa, nullptr, mid, args).GetB(); in CallStaticByteMethodV()
1472 return InvokeWithJValues(soa, nullptr, mid, args).GetB(); in CallStaticByteMethodA()
Ddex_file.cc2018 i, new_annotation_value.value_.GetB()); in ProcessAnnotationValue()
/art/runtime/native/
Djava_lang_reflect_Field.cc205 return GetPrimitiveField<Primitive::kPrimByte>(env, javaField, javaObj).GetB(); in Field_getByte()
249 o->SetFieldBooleanVolatile<false>(offset, new_value.GetB()); in SetFieldValue()
251 o->SetFieldBoolean<false>(offset, new_value.GetB()); in SetFieldValue()
/art/runtime/interpreter/
Dunstarted_runtime_test.cc216 EXPECT_EQ(result.GetB(), static_cast<int8_t>(base_array[i])); in TEST_F()