/aosp_15_r20/art/test/959-invoke-polymorphic-accessors/src/ |
H A D | Main.java | 571 Boolean boxed = new Boolean(b); in main() local 573 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.IPUT); in main() local 575 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.IGET); in main() local 578 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.SPUT); in main() local 580 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.SGET); in main() local 586 Byte boxed = new Byte(b); in main() local 588 valueHolder, PrimitiveType.Byte, boxed, AccessorType.IPUT); in main() local 590 valueHolder, PrimitiveType.Byte, boxed, AccessorType.IGET); in main() local 593 valueHolder, PrimitiveType.Byte, boxed, AccessorType.SPUT); in main() local 595 valueHolder, PrimitiveType.Byte, boxed, AccessorType.SGET); in main() local [all …]
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
H A D | MethodHandleAccessorsTest.java | 542 Boolean boxed = Boolean.valueOf(b); in testBooleanSettersAndGetters() local 544 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.IPUT); in testBooleanSettersAndGetters() local 546 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.IGET); in testBooleanSettersAndGetters() local 549 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.SPUT); in testBooleanSettersAndGetters() local 551 valueHolder, PrimitiveType.Boolean, boxed, AccessorType.SGET); in testBooleanSettersAndGetters() local 562 Byte boxed = Byte.valueOf(b); in testByteSettersAndGetters() local 564 valueHolder, PrimitiveType.Byte, boxed, AccessorType.IPUT); in testByteSettersAndGetters() local 566 valueHolder, PrimitiveType.Byte, boxed, AccessorType.IGET); in testByteSettersAndGetters() local 569 valueHolder, PrimitiveType.Byte, boxed, AccessorType.SPUT); in testByteSettersAndGetters() local 571 valueHolder, PrimitiveType.Byte, boxed, AccessorType.SGET); in testByteSettersAndGetters() local [all …]
|
/aosp_15_r20/external/pytorch/aten/src/ATen/core/ |
H A D | IListRef_test.cpp | 64 List<at::Tensor> boxed(vec); in TEST() local 103 const List<at::Tensor> boxed(vec); in TEST() local 124 List<at::Tensor> boxed(vec); in TEST() local 152 List<at::Tensor> boxed(vec); in TEST() local 184 const List<at::Tensor> boxed(vec); in TEST() local 197 List<at::Tensor> boxed(vec); in TEST() local 216 const List<at::Tensor> boxed(vec); in TEST() local 237 const List<std::optional<at::Tensor>> boxed(vec); in TEST() local
|
H A D | IListRef.h | 429 IListRefIterator(boxed_iterator_type boxed) : tag_(IListRefTag::Boxed) { in IListRefIterator() 528 IListRef(const boxed_type& boxed) : tag_(IListRefTag::Boxed) { in IListRef() 619 const boxed_type* boxed; member
|
/aosp_15_r20/hardware/google/gfxstream/host/vulkan/ |
D | VkDecoderSnapshot.cpp | 1013 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkBeginCommandBuffer() local 1028 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkEndCommandBuffer() local 1043 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkResetCommandBuffer() local 1058 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkCmdBindPipeline() local 1074 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkCmdSetViewport() local 1089 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkCmdSetScissor() local 1104 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkCmdSetLineWidth() local 1120 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkCmdSetDepthBias() local 1135 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkCmdSetBlendConstants() local 1150 VkCommandBuffer boxed = VkCommandBuffer((&commandBuffer)[i]); in vkCmdSetDepthBounds() local [all …]
|
D | VkDecoderInternalStructs.h | 179 VkInstance boxed = nullptr; member 190 VkPhysicalDevice boxed = nullptr; member 211 VkDevice boxed = nullptr; member 239 VkQueue boxed = nullptr; member 304 VkFence boxed = VK_NULL_HANDLE; member 336 VkDescriptorSetLayout boxed = 0; member 343 VkDescriptorPool boxed = 0; member 421 VkCommandBuffer boxed = VK_NULL_HANDLE; member 456 VkCommandPool boxed = VK_NULL_HANDLE; member
|
/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_adv/src/legacy/deserialize/tests/ |
D | happy_path.rs | 105 let boxed: Box<dyn SerializeDataElement<Plaintext>> = Box::new(de.clone()); in tx_power() localVariable 116 let boxed: Box<dyn SerializeDataElement<Plaintext>> = Box::new(de.clone()); in actions_min_len() localVariable 299 let boxed: Box<dyn SerializeDataElement<Ciphertext>> = Box::new(de.clone()); in parse_min_len() localVariable 313 let boxed: Box<dyn SerializeDataElement<Ciphertext>> = Box::new(de.clone()); in parse_max_len() localVariable 325 let boxed: Box<dyn SerializeDataElement<Ciphertext>> = Box::new(de.clone()); in tx_power() localVariable 335 let boxed: Box<dyn SerializeDataElement<Ciphertext>> = Box::new(de.clone()); in actions_min_len() localVariable
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/ |
H A D | tests.rs | 105 let boxed: Box<[f64]> = Box::from(slice); in f64_slice() localVariable 112 let boxed: Box<[i64]> = Box::from(slice); in i64_slice() localVariable 119 let boxed: Box<str> = Box::from(s); in str_slice() localVariable 126 let boxed: Box<[u32]> = iter.collect(); in boxed_slice_from_iter() localVariable
|
H A D | lib.rs | 233 pub mod boxed; module 235 mod boxed { module
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/alloc/src/ |
H A D | tests.rs | 105 let boxed: Box<[f64]> = Box::from(slice); in f64_slice() localVariable 112 let boxed: Box<[i64]> = Box::from(slice); in i64_slice() localVariable 119 let boxed: Box<str> = Box::from(s); in str_slice() localVariable 126 let boxed: Box<[u32]> = iter.collect(); in boxed_slice_from_iter() localVariable
|
H A D | lib.rs | 233 pub mod boxed; module 235 mod boxed { module
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/ |
H A D | tests.rs | 105 let boxed: Box<[f64]> = Box::from(slice); in f64_slice() localVariable 112 let boxed: Box<[i64]> = Box::from(slice); in i64_slice() localVariable 119 let boxed: Box<str> = Box::from(s); in str_slice() localVariable 126 let boxed: Box<[u32]> = iter.collect(); in boxed_slice_from_iter() localVariable
|
H A D | lib.rs | 236 pub mod boxed; module 238 mod boxed { module
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/ |
H A D | tests.rs | 105 let boxed: Box<[f64]> = Box::from(slice); in f64_slice() localVariable 112 let boxed: Box<[i64]> = Box::from(slice); in i64_slice() localVariable 119 let boxed: Box<str> = Box::from(s); in str_slice() localVariable 126 let boxed: Box<[u32]> = iter.collect(); in boxed_slice_from_iter() localVariable
|
H A D | lib.rs | 236 pub mod boxed; module 238 mod boxed { module
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/ |
H A D | tests.rs | 105 let boxed: Box<[f64]> = Box::from(slice); in f64_slice() localVariable 112 let boxed: Box<[i64]> = Box::from(slice); in i64_slice() localVariable 119 let boxed: Box<str> = Box::from(s); in str_slice() localVariable 126 let boxed: Box<[u32]> = iter.collect(); in boxed_slice_from_iter() localVariable
|
H A D | lib.rs | 233 pub mod boxed; module 235 mod boxed { module
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/signal/ |
D | reusable_box.rs | 14 boxed: NonNull<dyn Future<Output = T> + Send>, field 23 let boxed: Box<dyn Future<Output = T> + Send> = Box::new(future); in new() localVariable 25 let boxed = Box::into_raw(boxed); in new() localVariable 28 let boxed = unsafe { NonNull::new_unchecked(boxed) }; in new() localVariable
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/stream/ |
D | Node.java | 276 T[] boxed = generator.apply((int) count()); in asArray() local 351 default void copyInto(Integer[] boxed, int offset) { in copyInto() 429 default void copyInto(Long[] boxed, int offset) { in copyInto() 509 default void copyInto(Double[] boxed, int offset) { in copyInto()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/stream/ |
H A D | Node.java | 276 T[] boxed = generator.apply((int) count()); in asArray() local 351 default void copyInto(Integer[] boxed, int offset) { in copyInto() 429 default void copyInto(Long[] boxed, int offset) { in copyInto() 509 default void copyInto(Double[] boxed, int offset) { in copyInto()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/22/libcore/ojluni/src/main/java/java/util/stream/ |
D | Node.java | 276 T[] boxed = generator.apply((int) count()); in asArray() local 351 default void copyInto(Integer[] boxed, int offset) { in copyInto() 429 default void copyInto(Long[] boxed, int offset) { in copyInto() 509 default void copyInto(Double[] boxed, int offset) { in copyInto()
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-util/src/sync/ |
D | reusable_box.rs | 14 boxed: Pin<Box<dyn Future<Output = T> + Send + 'a>>, field 63 let boxed = mem::replace(&mut this.boxed, Box::pin(future::pending())); in try_set() localVariable 124 let boxed = unsafe { Box::from_raw(raw) }; in reuse_pin_box() localVariable
|
/aosp_15_r20/external/python/bumble/rust/src/wrapper/device/ |
D | mod.rs | 217 let boxed = ClosureCallback::new(move |py, args, _kwargs| { in on_connection() localVariable 246 let boxed = ClosureCallback::new(move |py, args, _kwargs| { in on_advertisement() localVariable 442 let boxed = ClosureCallback::new(move |py, args, _kwargs| { in register_l2cap_channel_server() localVariable 521 let boxed = ClosureCallback::new(move |py, args, _kwargs| { in on_disconnection() localVariable
|
/aosp_15_r20/external/python/bumble/rust/src/wrapper/ |
D | l2cap.rs | 50 let boxed = ClosureCallback::new(move |py, _args, _kwargs| callback(py)); in on_close() localVariable 64 let boxed = ClosureCallback::new(move |py, args, _kwargs| { in set_sink() localVariable
|
/aosp_15_r20/external/kotlinx.serialization/formats/cbor/commonTest/src/kotlinx/serialization/ |
H A D | PolymorphismTestData.kt | 20 data class PolyBox(@Polymorphic val boxed: SimpleAbstract) constant in kotlinx.serialization.PolyBox 39 data class SealedBox(val boxed: List<SimpleSealed>) constant in kotlinx.serialization.SealedBox
|