/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft6/ |
H A D | uniqueItems.json | 7 "description": "unique array of integers is valid", 12 "description": "non-unique array of integers is invalid", 17 "description": "non-unique array of more than two integers is invalid", 22 "description": "numbers are unique if mathematically unequal", 37 "description": "unique array of strings is valid", 42 "description": "non-unique array of strings is invalid", 47 "description": "unique array of objects is valid", 52 "description": "non-unique array of objects is invalid", 62 "description": "unique array of nested objects is valid", 70 "description": "non-unique array of nested objects is invalid", [all …]
|
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft7/ |
H A D | uniqueItems.json | 7 "description": "unique array of integers is valid", 12 "description": "non-unique array of integers is invalid", 17 "description": "non-unique array of more than two integers is invalid", 22 "description": "numbers are unique if mathematically unequal", 37 "description": "unique array of strings is valid", 42 "description": "non-unique array of strings is invalid", 47 "description": "unique array of objects is valid", 52 "description": "non-unique array of objects is invalid", 62 "description": "unique array of nested objects is valid", 70 "description": "non-unique array of nested objects is invalid", [all …]
|
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft4/ |
H A D | uniqueItems.json | 7 "description": "unique array of integers is valid", 12 "description": "non-unique array of integers is invalid", 17 "description": "non-unique array of more than two integers is invalid", 22 "description": "numbers are unique if mathematically unequal", 37 "description": "unique array of strings is valid", 42 "description": "non-unique array of strings is invalid", 47 "description": "unique array of objects is valid", 52 "description": "non-unique array of objects is invalid", 62 "description": "unique array of nested objects is valid", 70 "description": "non-unique array of nested objects is invalid", [all …]
|
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft2019-09/ |
H A D | uniqueItems.json | 10 "description": "unique array of integers is valid", 15 "description": "non-unique array of integers is invalid", 20 "description": "non-unique array of more than two integers is invalid", 25 "description": "numbers are unique if mathematically unequal", 40 "description": "unique array of strings is valid", 45 "description": "non-unique array of strings is invalid", 50 "description": "unique array of objects is valid", 55 "description": "non-unique array of objects is invalid", 65 "description": "unique array of nested objects is valid", 73 "description": "non-unique array of nested objects is invalid", [all …]
|
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft-next/ |
H A D | uniqueItems.json | 10 "description": "unique array of integers is valid", 15 "description": "non-unique array of integers is invalid", 20 "description": "non-unique array of more than two integers is invalid", 25 "description": "numbers are unique if mathematically unequal", 40 "description": "unique array of strings is valid", 45 "description": "non-unique array of strings is invalid", 50 "description": "unique array of objects is valid", 55 "description": "non-unique array of objects is invalid", 65 "description": "unique array of nested objects is valid", 73 "description": "non-unique array of nested objects is invalid", [all …]
|
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft2020-12/ |
H A D | uniqueItems.json | 10 "description": "unique array of integers is valid", 15 "description": "non-unique array of integers is invalid", 20 "description": "non-unique array of more than two integers is invalid", 25 "description": "numbers are unique if mathematically unequal", 40 "description": "unique array of strings is valid", 45 "description": "non-unique array of strings is invalid", 50 "description": "unique array of objects is valid", 55 "description": "non-unique array of objects is invalid", 65 "description": "unique array of nested objects is valid", 73 "description": "non-unique array of nested objects is invalid", [all …]
|
/aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft3/ |
H A D | uniqueItems.json | 7 "description": "unique array of integers is valid", 12 "description": "non-unique array of integers is invalid", 17 "description": "non-unique array of more than two integers is invalid", 22 "description": "numbers are unique if mathematically unequal", 27 "description": "unique array of strings is valid", 32 "description": "non-unique array of strings is invalid", 37 "description": "unique array of objects is valid", 42 "description": "non-unique array of objects is invalid", 47 "description": "unique array of nested objects is valid", 55 "description": "non-unique array of nested objects is invalid", [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/core/src/ptr/ |
H A D | unique.rs | 10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`. 13 /// the referent of the pointer should not be modified without a unique path to 14 /// its owning Unique. 16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes, 21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`. 24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct 25 /// for any type which upholds Unique's aliasing requirements. 34 // Lang item used experimentally by Miri to define the semantics of `Unique`. 36 pub struct Unique<T: ?Sized> { struct 46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/src/ptr/ |
H A D | unique.rs | 10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`. 13 /// the referent of the pointer should not be modified without a unique path to 14 /// its owning Unique. 16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes, 21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`. 24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct 25 /// for any type which upholds Unique's aliasing requirements. 34 // Lang item used experimentally by Miri to define the semantics of `Unique`. 36 pub struct Unique<T: ?Sized> { struct 46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/core/src/ptr/ |
H A D | unique.rs | 10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`. 13 /// the referent of the pointer should not be modified without a unique path to 14 /// its owning Unique. 16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes, 21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`. 24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct 25 /// for any type which upholds Unique's aliasing requirements. 34 // Lang item used experimentally by Miri to define the semantics of `Unique`. 36 pub struct Unique<T: ?Sized> { struct 46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/src/ptr/ |
H A D | unique.rs | 10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`. 13 /// the referent of the pointer should not be modified without a unique path to 14 /// its owning Unique. 16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes, 21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`. 24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct 25 /// for any type which upholds Unique's aliasing requirements. 34 // Lang item used experimentally by Miri to define the semantics of `Unique`. 36 pub struct Unique<T: ?Sized> { struct 46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/src/ptr/ |
H A D | unique.rs | 10 /// Unlike `*mut T`, `Unique<T>` behaves "as if" it were an instance of `T`. 13 /// the referent of the pointer should not be modified without a unique path to 14 /// its owning Unique. 16 /// If you're uncertain of whether it's correct to use `Unique` for your purposes, 21 /// as a discriminant -- `Option<Unique<T>>` has the same size as `Unique<T>`. 24 /// Unlike `*mut T`, `Unique<T>` is covariant over `T`. This should always be correct 25 /// for any type which upholds Unique's aliasing requirements. 34 // Lang item used experimentally by Miri to define the semantics of `Unique`. 36 pub struct Unique<T: ?Sized> { struct 46 /// `Unique` pointers are `Send` if `T` is `Send` because the data they argument [all …]
|
/aosp_15_r20/external/crosvm/fuse/src/ |
H A D | server.rs | 169 in_header.unique, in handle_message() 225 in_header.unique, in handle_message() 249 reply_ok(Some(out), None, in_header.unique, w) in lookup() 251 Err(e) => reply_error(e, in_header.unique, w), in lookup() 289 reply_ok(Some(out), None, in_header.unique, w) in getattr() 291 Err(e) => reply_error(e, in_header.unique, w), in getattr() 322 reply_ok(Some(out), None, in_header.unique, w) in setattr() 324 Err(e) => reply_error(e, in_header.unique, w), in setattr() 335 reply_ok(None::<u8>, Some(&linkname), in_header.unique, w) in readlink() 337 Err(e) => reply_error(e, in_header.unique, w), in readlink() [all …]
|
/aosp_15_r20/external/pigweed/pw_log/public/pw_log/internal/ |
H A D | glog_adapter.h | 40 // Declares a unique GlogStreamingLog class definition with a destructor which 42 #define _PW_LOG_GLOG_DECLARATION_PW_LOG(pw_log_level, unique) \ argument 43 class unique : public ::pw::log::internal::GlogStreamingLog { \ 45 ~unique() { \ 54 // Declares a unique GlogStreamingLog class definition with a destructor which 56 #define _PW_LOG_GLOG_DECLARATION_PW_CRASH(unique) \ argument 57 class unique : public ::pw::log::internal::GlogStreamingLog { \ 59 ~unique() { PW_CRASH("%s", string_builder_.c_str()); } \ 63 #define _PW_LOG_GLOG_DECLARATION_DEBUG(unique) \ argument 64 _PW_LOG_GLOG_DECLARATION_PW_LOG(PW_LOG_LEVEL_DEBUG, unique) [all …]
|
/aosp_15_r20/external/pytorch/test/torch_np/numpy_tests/lib/ |
H A D | test_arraysetops.py | 26 from numpy import ediff1d, in1d, intersect1d, setdiff1d, setxor1d, union1d, unique 31 from torch._numpy import unique 40 # unique inputs 48 # non-unique inputs 70 # unique inputs 79 # non-unique inputs 88 # non1d, unique inputs 674 v = unique(a) 678 # v, j = unique(a, True, False, False) 683 v, j = unique(a, False, True, False) [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/applicationautoscaling/src/main/resources/codegen-resources/ |
H A D | service-2.json | 318 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 350 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 377 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 400 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 439 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 486 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 529 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 784 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… 841 …"documentation":"<p>The name of the scheduled action. This name must be unique among all other sch… 845 …unique identifier.</p> <ul> <li> <p>ECS service - The resource type is <code>service</code> and th… [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/ |
H A D | candidate_sampling_ops.py | 32 def uniform_candidate_sampler(true_classes, num_true, num_sampled, unique, argument 40 (if `unique=True`) or with replacement (if `unique=False`) from 53 If `unique=True`, then these are post-rejection probabilities and we 62 `unique=True`, `num_sampled` must be less than or equal to `range_max`. 63 unique: A `bool`. Determines whether all sampled classes in a batch are 64 unique. 71 sampled classes, either with possible duplicates (`unique=False`) or all 72 unique (`unique=True`). In either case, `sampled_candidates` is 83 true_classes, num_true, num_sampled, unique, range_max, seed=seed1, 95 def log_uniform_candidate_sampler(true_classes, num_true, num_sampled, unique, argument [all …]
|
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/imageless_framebuffer/ |
H A D | vktImagelessFramebufferTests.cpp | 58 typedef SharedPtr<Unique<VkPipeline>> SharedPtrVkPipeline; 92 inline SharedPtr<Unique<T>> makeSharedPtr(Move<T> move) in makeSharedPtr() 94 return SharedPtr<Unique<T>>(new Unique<T>(move)); in makeSharedPtr() 934 … void readOneSampleFromMultisampleImage(const VkFormat srcFormat, const Unique<VkImage> &srcImage, 936 … const Unique<VkImage> &dstImage, const Unique<VkBuffer> &dstBuffer, 973 …const VkFormat srcFormat, const Unique<VkImage> &srcImage, const uint32_t sampleID, const VkFormat… in readOneSampleFromMultisampleImage() 974 const Unique<VkImage> &dstImage, const Unique<VkBuffer> &dstBuffer, const AspectFlags aspect) in readOneSampleFromMultisampleImage() 990 const Unique<VkImageView> srcImageView( in readOneSampleFromMultisampleImage() 995 const Unique<VkImageView> dstAttachment( in readOneSampleFromMultisampleImage() 999 const Unique<VkShaderModule> vertModule( in readOneSampleFromMultisampleImage() [all …]
|
/aosp_15_r20/frameworks/base/core/jni/ |
H A D | com_android_internal_os_FuseAppLoop.cpp | 55 void OnLookup(uint64_t unique, uint64_t inode) override { in OnLookup() argument 56 CallOnCommand(FUSE_LOOKUP, unique, inode, 0, 0, nullptr); in OnLookup() 59 void OnGetAttr(uint64_t unique, uint64_t inode) override { in OnGetAttr() argument 60 CallOnCommand(FUSE_GETATTR, unique, inode, 0, 0, nullptr); in OnGetAttr() 63 void OnOpen(uint64_t unique, uint64_t inode) override { in OnOpen() argument 65 mSelf, gOnOpenMethod, unique, inode)); in OnOpen() 75 void OnFsync(uint64_t unique, uint64_t inode) override { in OnFsync() argument 76 CallOnCommand(FUSE_FSYNC, unique, inode, 0, 0, nullptr); in OnFsync() 79 void OnRelease(uint64_t unique, uint64_t inode) override { in OnRelease() argument 81 CallOnCommand(FUSE_RELEASE, unique, inode, 0, 0, nullptr); in OnRelease() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/smart_ptr/test/ |
D | shared_ptr_test.cpp | 148 BOOST_TEST(pt.unique()); in pc0_test() 169 BOOST_TEST(pi.unique()); in pointer_constructor() 178 BOOST_TEST(pi.unique()); in pointer_constructor() 187 BOOST_TEST(pv.unique()); in pointer_constructor() 196 BOOST_TEST(pv.unique()); in pointer_constructor() 210 BOOST_TEST(px.unique()); in pointer_constructor() 219 BOOST_TEST(px.unique()); in pointer_constructor() 228 BOOST_TEST(px.unique()); in pointer_constructor() 237 BOOST_TEST(pv.unique()); in pointer_constructor() 246 BOOST_TEST(pv.unique()); in pointer_constructor() [all …]
|
/aosp_15_r20/external/licenseclassifier/stringclassifier/internal/sets/ |
H A D | intset_test.go | 21 func checkSameIntSet(t *testing.T, set *IntSet, unique []int) { 23 want := len(unique) 27 t.Errorf("NewIntSet(%v) want length %v, got %v", unique, want, got) 31 for _, s := range unique { 41 sort.Ints(unique) 44 want := unique[i] 70 unique := []int{0, 1, 2} 71 set := NewIntSet(unique...) 72 checkSameIntSet(t, set, unique) 75 nonUnique := append(unique, unique[0]) [all …]
|
/aosp_15_r20/external/licenseclassifier/internal/sets/ |
H A D | stringset_test.go | 21 func checkSameStringSet(t *testing.T, set *StringSet, unique []string) { 23 want := len(unique) 27 t.Errorf("NewStringSet(%v) want length %v, got %v", unique, want, got) 31 for _, s := range unique { 41 sort.Strings(unique) 44 want := unique[i] 61 unique := []string{"a", "b", "c"} 62 set := NewStringSet(unique...) 63 checkSameStringSet(t, set, unique) 66 nonUnique := append(unique, unique[0]) [all …]
|
/aosp_15_r20/external/armnn/src/armnn/layers/ |
H A D | LstmParameters.hpp | 16 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 18 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 20 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 22 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 28 /// A unique pointer to represent 2D weights tensor with dimensions [input_size, num_units]. 30 /// A unique pointer to represent 2D weights tensor with dimensions [input_size, num_units]. 32 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. 38 /// A unique pointer to represent 2D weights tensor with dimensions [output_size, num_units]. 40 /// A unique pointer to represent 1D weights tensor with dimensions [output_size]. 46 /// A unique pointer to represent 1D weights tensor with dimensions [num_units]. [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_ftplib.py | 40 MLSD_DATA = ("type=cdir;perm=el;unique==keVO1+ZF4; test\r\n" 41 "type=pdir;perm=e;unique==keVO1+d?3; ..\r\n" 42 "type=OS.unix=slink:/foobar;perm=;unique==keVO1+4G4; foobar\r\n" 43 "type=OS.unix=chr-13/29;perm=;unique==keVO1+5G4; device\r\n" 44 "type=OS.unix=blk-11/108;perm=;unique==keVO1+6G4; block\r\n" 45 "type=file;perm=awr;unique==keVO1+8G4; writable\r\n" 46 "type=dir;perm=cpmel;unique==keVO1+7G4; promiscuous\r\n" 47 "type=dir;perm=;unique==keVO1+1t2; no-exec\r\n" 48 "type=file;perm=r;unique==keVO1+EG4; two words\r\n" 49 "type=file;perm=r;unique==keVO1+IH4; leading space\r\n" [all …]
|
/aosp_15_r20/frameworks/av/drm/libdrmframework/include/ |
H A D | DrmManagerClientImpl.h | 49 * Adds the client respective to given unique id. 51 * @param[in] uniqueId Unique identifier for a session 56 * Removes the client respective to given unique id. 58 * @param[in] uniqueId Unique identifier for a session 66 * @param[in] uniqueId Unique identifier for a session 77 * @param[in] uniqueId Unique identifier for a session 91 * @param[in] uniqueId Unique identifier for a session 103 * @param[in] uniqueId Unique identifier for a session 114 * @param[in] uniqueId Unique identifier for a session 125 * @param[in] uniqueId Unique identifier for a session [all …]
|