Home
last modified time | relevance | path

Searched refs:booleanArray (Results 1 – 16 of 16) sorted by relevance

/system/tools/aidl/tests/golden_output/frozen/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/
DParcelableForToString.h46 ::std::vector<bool> booleanArray;
59booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
62booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
97 _aidl_os << ", booleanArray: " << ::android::internal::ToString(booleanArray); in toString()
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/include/aidl/android/aidl/tests/
DParcelableForToString.h54 std::vector<bool> booleanArray; variable
71booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
74booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
104 _aidl_os << ", booleanArray: " << ::android::internal::ToString(booleanArray); in toString()
/system/tools/aidl/tests/golden_output/frozen/aidl-test-interface-ndk-source/gen/include/aidl/android/aidl/tests/
DParcelableForToString.h54 std::vector<bool> booleanArray; variable
71booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
74booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
104 _aidl_os << ", booleanArray: " << ::android::internal::ToString(booleanArray); in toString()
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/
DParcelableForToString.h46 ::std::vector<bool> booleanArray;
59booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
62booleanArray, stringValue, stringArray, stringList, parcelableValue, parcelableArray, enumValue, e…
97 _aidl_os << ", booleanArray: " << ::android::internal::ToString(booleanArray); in toString()
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/
DParcelableForToString.rs24 pub r#booleanArray: Vec<bool>,
51 r#booleanArray: Default::default(), in default()
80 subparcel.write(&self.r#booleanArray)?; in write_to_parcel()
131 self.r#booleanArray = subparcel.read()?; in read_from_parcel()
/system/tools/aidl/tests/golden_output/frozen/aidl-test-interface-rust-source/gen/android/aidl/tests/
DParcelableForToString.rs24 pub r#booleanArray: Vec<bool>,
51 r#booleanArray: Default::default(), in default()
80 subparcel.write(&self.r#booleanArray)?; in write_to_parcel()
131 self.r#booleanArray = subparcel.read()?; in read_from_parcel()
/system/tools/aidl/tests/golden_output/frozen/aidl-test-interface-java-source/gen/android/aidl/tests/
DParcelableForToString.java23 public boolean[] booleanArray; field in ParcelableForToString
62 _aidl_parcel.writeBooleanArray(booleanArray); in writeToParcel()
108 booleanArray = _aidl_parcel.createBooleanArray(); in readFromParcel()
152 _aidl_sj.add("booleanArray: " + (java.util.Arrays.toString(booleanArray))); in toString()
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/
DParcelableForToString.java23 public boolean[] booleanArray; field in ParcelableForToString
62 _aidl_parcel.writeBooleanArray(booleanArray); in writeToParcel()
108 booleanArray = _aidl_parcel.createBooleanArray(); in readFromParcel()
152 _aidl_sj.add("booleanArray: " + (java.util.Arrays.toString(booleanArray))); in toString()
/system/tools/aidl/tests/android/aidl/tests/
DParcelableForToString.aidl38 boolean[] booleanArray;
/system/tools/aidl/tests/golden_output/aidl-test-interface-ndk-source/gen/android/aidl/tests/
DParcelableForToString.cpp109 _aidl_ret_status = ::ndk::AParcel_readData(_aidl_parcel, &booleanArray); in readFromParcel()
231 _aidl_ret_status = ::ndk::AParcel_writeData(_aidl_parcel, booleanArray); in writeToParcel()
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/
DParcelableForToString.cpp117 _aidl_ret_status = _aidl_parcel->readBoolVector(&booleanArray); in readFromParcel()
260 _aidl_ret_status = _aidl_parcel->writeBoolVector(booleanArray); in writeToParcel()
/system/tools/aidl/tests/golden_output/frozen/aidl-test-interface-cpp-source/gen/android/aidl/tests/
DParcelableForToString.cpp117 _aidl_ret_status = _aidl_parcel->readBoolVector(&booleanArray); in readFromParcel()
260 _aidl_ret_status = _aidl_parcel->writeBoolVector(booleanArray); in writeToParcel()
/system/tools/aidl/tests/golden_output/frozen/aidl-test-interface-ndk-source/gen/android/aidl/tests/
DParcelableForToString.cpp109 _aidl_ret_status = ::ndk::AParcel_readData(_aidl_parcel, &booleanArray); in readFromParcel()
231 _aidl_ret_status = ::ndk::AParcel_writeData(_aidl_parcel, booleanArray); in writeToParcel()
/system/tools/aidl/tests/
Daidl_test_client_primitives.cpp173 TEST_F(AidlPrimitiveTest, booleanArray) { in TEST_F() argument
Daidl_test_client_parcelables.cpp557 p.booleanArray = {true, false}; in TEST_F()
/system/tools/aidl/tests/java/src/android/aidl/tests/
DTestServiceClient.java894 p.booleanArray = new boolean[]{true, false}; in testToString()