Home
last modified time | relevance | path

Searched refs:empty_array (Results 1 – 19 of 19) sorted by relevance

/aosp_15_r20/external/rust/beto-rust/nearby/connections/ukey2/ukey2_jni/src/
Dlib.rs261 let empty_array = env.new_byte_array(0).unwrap(); in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DHandshakeContext_get_1verification_1string() localVariable
284 empty_array in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DHandshakeContext_get_1verification_1string()
337 let empty_array = env.new_byte_array(0).unwrap(); in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_encode_1message_1to_1peer() localVariable
360 empty_array in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_encode_1message_1to_1peer()
379 let empty_array = env.new_byte_array(0).unwrap(); in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_decode_1message_1from_1peer() localVariable
414 empty_array in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_decode_1message_1from_1peer()
459 let empty_array = env.new_byte_array(0).unwrap(); in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_save_1session() localVariable
465 empty_array in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_save_1session()
510 let empty_array = env.new_byte_array(0).unwrap(); in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_get_1session_1unique() localVariable
517 empty_array in Java_com_google_security_cryptauth_lib_securegcm_ukey2_D2DConnectionContextV1_get_1session_1unique()
/aosp_15_r20/external/pdfium/fxjs/
H A Dcfx_v8_unittest.cpp62 v8::Local<v8::Array> empty_array; in TEST_F() local
63 cfx_v8()->PutArrayElement(empty_array, 0, marker); in TEST_F()
64 EXPECT_TRUE(cfx_v8()->GetArrayElement(empty_array, 0).IsEmpty()); in TEST_F()
65 EXPECT_EQ(0u, cfx_v8()->GetArrayLength(empty_array)); in TEST_F()
/aosp_15_r20/external/ComputeLibrary/tests/validation/fixtures/UNIT/
H A DQueueFixture.h107 std::array<char, 256> empty_array{}; in setup()
112 …ARM_COMPUTE_ASSERT(AclDestroyQueue(reinterpret_cast<AclQueue>(empty_array.data())) == AclStatus::A… in setup()
H A DContextFixture.h59 std::array<char, 256> empty_array{}; in setup()
63 …ARM_COMPUTE_ASSERT(AclDestroyContext(reinterpret_cast<AclContext>(empty_array.data())) == AclStatu… in setup()
H A DTensorPackFixture.h80 std::array<char, 256> empty_array{}; in setup()
85 …ARM_COMPUTE_ASSERT(AclDestroyTensorPack(reinterpret_cast<AclTensorPack>(empty_array.data())) == Ac… in setup()
H A DTensorFixture.h115 std::array<char, 256> empty_array{}; in setup()
120 …ARM_COMPUTE_ASSERT(AclDestroyTensor(reinterpret_cast<AclTensor>(empty_array.data())) == AclStatus:… in setup()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/data/
Dquartiles.rs108 let empty_array: [i32; 0] = []; in test_empty_input() localVariable
109 Quartiles::new(&empty_array); in test_empty_input()
/aosp_15_r20/art/runtime/native/
H A Djava_lang_reflect_Method.cc73 ObjPtr<mirror::ObjectArray<mirror::Class>> empty_array = in Method_getExceptionTypes() local
75 return soa.AddLocalReference<jobjectArray>(empty_array); in Method_getExceptionTypes()
H A Djava_lang_reflect_Constructor.cc49 ObjPtr<mirror::ObjectArray<mirror::Class>> empty_array = in Constructor_getExceptionTypes() local
51 return soa.AddLocalReference<jobjectArray>(empty_array); in Constructor_getExceptionTypes()
H A Djava_lang_reflect_Executable.cc49 ObjPtr<mirror::ObjectArray<mirror::Object>> empty_array = in Executable_getDeclaredAnnotationsNative() local
51 return soa.AddLocalReference<jobjectArray>(empty_array); in Executable_getDeclaredAnnotationsNative()
H A Djava_lang_Class.cc583 ObjPtr<mirror::ObjectArray<mirror::Object>> empty_array = in Class_getDeclaredAnnotations() local
587 return soa.AddLocalReference<jobjectArray>(empty_array); in Class_getDeclaredAnnotations()
612 ObjPtr<mirror::ObjectArray<mirror::Class>> empty_array = in Class_getDeclaredClasses() local
614 return soa.AddLocalReference<jobjectArray>(empty_array); in Class_getDeclaredClasses()
H A Djava_lang_reflect_Field.cc523 ObjPtr<mirror::ObjectArray<mirror::Object>> empty_array = in Field_getDeclaredAnnotations() local
525 return soa.AddLocalReference<jobjectArray>(empty_array); in Field_getDeclaredAnnotations()
/aosp_15_r20/external/pytorch/test/torch_np/numpy_tests/lib/
H A Dtest_arraysetops.py280 empty_array = np.array([], dtype=dtype)
282 assert_isin_equal(empty_array, ar)
283 assert_isin_equal(ar, empty_array)
284 assert_isin_equal(empty_array, empty_array)
/aosp_15_r20/external/boringssl/src/rust/bssl-crypto/src/
H A Drand.rs65 fn empty_array() { in empty_array() function
/aosp_15_r20/external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/
H A Drand.rs65 fn empty_array() { in empty_array() function
/aosp_15_r20/external/python/cpython2/Modules/
D_json.c2217 static PyObject *empty_array = NULL; in encoder_listencode_list() local
2222 if (open_array == NULL || close_array == NULL || empty_array == NULL) { in encoder_listencode_list()
2225 empty_array = PyString_InternFromString("[]"); in encoder_listencode_list()
2226 if (open_array == NULL || close_array == NULL || empty_array == NULL) in encoder_listencode_list()
2235 return PyList_Append(rval, empty_array); in encoder_listencode_list()
/aosp_15_r20/external/rust/android-crates-io/crates/toml/tests/testsuite/
Dmacros.rs329 [[empty_array]] in test_empty()
/aosp_15_r20/external/python/cpython3/Modules/
D_json.c1662 PyObject *empty_array = _PyUnicode_FromId(&PyId_empty_array); // borrowed ref in encoder_listencode_list() local
1667 if (open_array == NULL || close_array == NULL || empty_array == NULL) { in encoder_listencode_list()
1676 return _PyAccu_Accumulate(acc, empty_array); in encoder_listencode_list()
/aosp_15_r20/external/python/cpython3/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv1109 Modules/_json.c encoder_listencode_list empty_array -