OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BooleanArray
(Results
1 - 8
of
8
) sorted by null
/art/runtime/native/
java_lang_System.cc
104
// Note: Treating
BooleanArray
as ByteArray.
238
System_arraycopyTUnchecked<mirror::
BooleanArray
, Primitive::kPrimBoolean>(env, javaSrc, srcPos,
/art/runtime/mirror/
object.h
51
typedef PrimitiveArray<uint8_t>
BooleanArray
;
204
ObjPtr<
BooleanArray
> AsBooleanArray() REQUIRES_SHARED(Locks::mutator_lock_);
[
all
...]
object-inl.h
213
inline ObjPtr<
BooleanArray
> Object::AsBooleanArray() {
215
return ObjPtr<
BooleanArray
>::DownCast(this);
[
all
...]
object_test.cc
237
TestPrimitiveArray<
BooleanArray
>(class_linker_);
[
all
...]
/art/runtime/
transaction_test.cc
376
Handle<mirror::
BooleanArray
>
booleanArray
= hs.NewHandle(
378
ASSERT_TRUE(
booleanArray
!= nullptr);
379
ASSERT_EQ(
booleanArray
->GetLength(), 1);
380
ASSERT_EQ(
booleanArray
->GetWithoutChecks(0), false);
457
booleanArray
->SetWithoutChecks<true>(0, true);
469
EXPECT_EQ(
booleanArray
->GetWithoutChecks(0), false);
class_linker.cc
[
all
...]
/art/runtime/jni/
jni_internal.cc
[
all
...]
/art/runtime/interpreter/
interpreter_switch_impl-inl.h
[
all
...]
Completed in 1027 milliseconds