/aosp_15_r20/external/rust/beto-rust/nearby/connections/ukey2/ukey2_jni/src/ |
D | lib.rs | 261 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 D | cfx_v8_unittest.cpp | 62 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 D | QueueFixture.h | 107 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 D | ContextFixture.h | 59 std::array<char, 256> empty_array{}; in setup() 63 …ARM_COMPUTE_ASSERT(AclDestroyContext(reinterpret_cast<AclContext>(empty_array.data())) == AclStatu… in setup()
|
H A D | TensorPackFixture.h | 80 std::array<char, 256> empty_array{}; in setup() 85 …ARM_COMPUTE_ASSERT(AclDestroyTensorPack(reinterpret_cast<AclTensorPack>(empty_array.data())) == Ac… in setup()
|
H A D | TensorFixture.h | 115 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/ |
D | quartiles.rs | 108 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 D | java_lang_reflect_Method.cc | 73 ObjPtr<mirror::ObjectArray<mirror::Class>> empty_array = in Method_getExceptionTypes() local 75 return soa.AddLocalReference<jobjectArray>(empty_array); in Method_getExceptionTypes()
|
H A D | java_lang_reflect_Constructor.cc | 49 ObjPtr<mirror::ObjectArray<mirror::Class>> empty_array = in Constructor_getExceptionTypes() local 51 return soa.AddLocalReference<jobjectArray>(empty_array); in Constructor_getExceptionTypes()
|
H A D | java_lang_reflect_Executable.cc | 49 ObjPtr<mirror::ObjectArray<mirror::Object>> empty_array = in Executable_getDeclaredAnnotationsNative() local 51 return soa.AddLocalReference<jobjectArray>(empty_array); in Executable_getDeclaredAnnotationsNative()
|
H A D | java_lang_Class.cc | 583 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 D | java_lang_reflect_Field.cc | 523 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 D | test_arraysetops.py | 280 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 D | rand.rs | 65 fn empty_array() { in empty_array() function
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/ |
H A D | rand.rs | 65 fn empty_array() { in empty_array() function
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | _json.c | 2217 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/ |
D | macros.rs | 329 [[empty_array]] in test_empty()
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _json.c | 1662 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/ |
D | globals-to-fix.tsv | 1109 Modules/_json.c encoder_listencode_list empty_array -
|