/aosp_15_r20/external/pigweed/pw_containers/ |
H A D | vector_test.cc | 36 TEST(Vector, Construct_NoArg) { in TEST() argument 41 TEST(Vector, Construct_MultipleCopies) { in TEST() argument 50 TEST(Vector, Construct_DefaultSize) { in TEST() argument 59 TEST(Vector, Construct_Iterators) { in TEST() argument 70 TEST(Vector, Construct_Copy) { in TEST() argument 83 TEST(Vector, Construct_Move) { in TEST() argument 104 TEST(Vector, Construct_InitializerList) { in TEST() argument 116 TEST(Vector, Construct_String) { in TEST() argument 122 TEST(Vector, Construct_StringTruncates) { in TEST() argument 128 TEST(Vector, Construct_AssignFromString) { in TEST() argument [all …]
|
/aosp_15_r20/external/pigweed/pw_containers/public/pw_containers/ |
H A D | vector.h | 80 Vector(size_type count, const T& value) { this->Append(count, value); } in Vector() function 82 explicit Vector(size_type count) { this->Append(count, T()); } in Vector() function 88 Vector(Iterator first, Iterator last) { in Vector() function 92 Vector(const Vector& other) { this->CopyFrom(other.begin(), other.end()); } in Vector() function 95 Vector(const Vector<T, kOtherMaxSize>& other) { in Vector() function 99 Vector(Vector&& other) noexcept { this->MoveFrom(other); } in Vector() function 102 Vector(Vector<T, kOtherMaxSize>&& other) noexcept { in Vector() function 106 Vector(std::initializer_list<T> list) { in Vector() function 115 Vector(std::string_view source) : Vector(source.begin(), source.end()) {} in Vector() function 120 Vector(const char* source) : Vector(std::string_view(source)) {} in Vector() function
|
/aosp_15_r20/external/flatbuffers/rust/flatbuffers/src/ |
H A D | vector.rs | 30 pub struct Vector<'a, T: 'a>(&'a [u8], usize, PhantomData<T>); struct 32 impl<'a, T: 'a> Default for Vector<'a, T> { implementation 44 impl<'a, T> Debug for Vector<'a, T> implementation 57 impl<'a, T> Copy for Vector<'a, T> {} implementation 58 impl<'a, T> Clone for Vector<'a, T> { implementation 64 impl<'a, T: 'a> Vector<'a, T> { impl 84 impl<'a, T: Follow<'a> + 'a> Vector<'a, T> { implementation 100 impl<'a, T: SafeSliceAccess + 'a> Vector<'a, T> { impl 174 impl<'a, T: Follow<'a> + 'a> Follow<'a> for Vector<'a, T> { implementation 295 impl<'a, T: Follow<'a> + 'a> IntoIterator for Vector<'a, T> { implementation [all …]
|
/aosp_15_r20/trusty/user/app/sample/hwcryptokey-test/ |
D | aes_vectors.rs | 56 struct Vector { struct 57 op: Option<OPERATION>, 58 mode: Option<MODE>, 59 key_length: Option<u16>, 60 iv_size: Option<u16>, 61 payload_size: Option<u16>, 62 params: HashMap<String, String>, 94 fn parse_vectors(raw: &str) -> Vec<Vector> { in parse_vectors() 198 fn run_aes_vectors(vectors: Vec<Vector>) { in run_aes_vectors()
|
/aosp_15_r20/external/mesa3d/src/util/tests/ |
H A D | vector_test.cpp | 85 TEST(Vector, Grow0) { test(4, 0, 0); } in TEST() argument 87 TEST(Vector, Grow1) { test(4, 1, 0); } in TEST() argument 89 TEST(Vector, Grow2) { test(4, 2, 0); } in TEST() argument 91 TEST(Vector, Grow3) { test(4, 3, 0); } in TEST() argument 93 TEST(Vector, Grow4) { test(4, 4, 0); } in TEST() argument 95 TEST(Vector, Grow5) { test(4, 5, 0); } in TEST() argument 97 TEST(Vector, Rollover) in TEST() argument
|
/aosp_15_r20/prebuilts/go/linux-x86/src/encoding/gob/ |
D | example_encdec_test.go | 20 type Vector struct { struct 21 x, y, z int 24 func (v Vector) MarshalBinary() ([]byte, error) { 32 func (v *Vector) UnmarshalBinary(data []byte) error {
|
/aosp_15_r20/external/libaom/third_party/vector/ |
H A D | vector.h | 44 typedef struct Vector { struct 50 } Vector; argument
|
/aosp_15_r20/prebuilts/go/linux-x86/test/fixedbugs/ |
D | bug027.go | 14 type Vector struct { struct 15 nelem int 16 elem []Element 26 func (v *Vector) At(i int) Element { 30 func (v *Vector) Insert(e Element) {
|
D | bug054.go | 12 type Vector struct { struct 13 elem []Element; 16 func (v *Vector) At(i int) Element {
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | mangle-ms-arg-qualifiers.cpp | 160 typedef double Vector[3]; typedef 162 void foo(Vector*) {} in foo() argument 166 void foo(Vector) {} in foo() argument 170 void foo_const(const Vector) {} in foo_const() 174 void foo_volatile(volatile Vector) {} in foo_volatile() 178 void foo(Vector*, const Vector, const double) {} in foo() argument
|
/aosp_15_r20/external/clang/include/clang/AST/ |
H A D | DeclContextInternals.h | 55 if (DeclsTy *Vector = getAsVector()) in ~StoredDeclsList() local 56 delete Vector; in ~StoredDeclsList() local 60 if (DeclsTy *Vector = getAsVector()) member 61 delete Vector; member 156 DeclsTy &Vector = *getAsVector(); in getLookupResult() local
|
/aosp_15_r20/external/deqp/framework/common/ |
H A D | tcuVector.hpp | 90 class Vector class 313 inline Vector<T, Size>::Vector(void) in Vector() function in tcu::Vector 320 inline Vector<T, Size>::Vector(T s) in Vector() function in tcu::Vector 327 inline Vector<T, Size>::Vector(T x_, T y_) in Vector() function in tcu::Vector 335 inline Vector<T, Size>::Vector(T x_, T y_, T z_) in Vector() function in tcu::Vector 344 inline Vector<T, Size>::Vector(T x_, T y_, T z_, T w_) in Vector() function in tcu::Vector 354 inline Vector<T, Size>::Vector(const Vector<T, Size> &v) in Vector() function in tcu::Vector 369 inline Vector<T, Size>::Vector(const T (&v)[Size]) in Vector() function in tcu::Vector
|
/aosp_15_r20/libcore/ojluni/annotations/sdk/nullability/java/util/ |
H A D | Vector.annotated.java | 31 public class Vector<E> extends java.util.AbstractList<E> implements java.util.List<E>, java.util.Ra… class 33 public Vector(int initialCapacity, int capacityIncrement) { throw new RuntimeException("Stub!"); } in Vector() method in Vector 35 public Vector(int initialCapacity) { throw new RuntimeException("Stub!"); } in Vector() method in Vector 37 public Vector() { throw new RuntimeException("Stub!"); } in Vector() method in Vector 39 public Vector(@libcore.util.NonNull java.util.Collection<? extends @libcore.util.NullFromTypeParam … in Vector() method in Vector
|
/aosp_15_r20/external/openscreen/tools/cddl/ |
H A D | sema.h | 219 struct Vector { struct 220 CppType* element_type; 223 uint32_t min_length; 226 uint32_t max_length; 229 static constexpr uint32_t kMinLengthUnbounded = 233 static constexpr uint32_t kMaxLengthUnbounded =
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/ |
H A D | Math.h | 30 explicit Vector(unsigned Length) in Vector() function 34 Vector(unsigned Length, PBQPNum InitVal) in Vector() function 40 Vector(const Vector &V) in Vector() function 46 Vector(Vector &&V) in Vector() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/CodeGen/PBQP/ |
D | Math.h | 30 explicit Vector(unsigned Length) in Vector() function 34 Vector(unsigned Length, PBQPNum InitVal) in Vector() function 40 Vector(const Vector &V) in Vector() function 46 Vector(Vector &&V) in Vector() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/CodeGen/PBQP/ |
D | Math.h | 30 explicit Vector(unsigned Length) in Vector() function 34 Vector(unsigned Length, PBQPNum InitVal) in Vector() function 40 Vector(const Vector &V) in Vector() function 46 Vector(Vector &&V) in Vector() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/CodeGen/PBQP/ |
D | Math.h | 30 explicit Vector(unsigned Length) in Vector() function 34 Vector(unsigned Length, PBQPNum InitVal) in Vector() function 40 Vector(const Vector &V) in Vector() function 46 Vector(Vector &&V) in Vector() function
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/PBQP/ |
H A D | Math.h | 30 explicit Vector(unsigned Length) in Vector() function 34 Vector(unsigned Length, PBQPNum InitVal) in Vector() function 40 Vector(const Vector &V) in Vector() function 46 Vector(Vector &&V) in Vector() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/CodeGen/PBQP/ |
D | Math.h | 30 explicit Vector(unsigned Length) in Vector() function 34 Vector(unsigned Length, PBQPNum InitVal) in Vector() function 40 Vector(const Vector &V) in Vector() function 46 Vector(Vector &&V) in Vector() function
|
/aosp_15_r20/external/skia/src/core/ |
H A D | SkImageFilterTypes.h | 71 struct Vector { struct 75 Vector() = default; argument 76 Vector(SkScalar x, SkScalar y) : fX(x), fY(y) {} in Vector() argument 77 explicit Vector(const SkVector& v) : fX(v.fX), fY(v.fY) {} in Vector() argument 92 // skif::IVector (to distinguish SkIVector from SkIPoint), skif::Vector, SkISize, and SkSize. argument
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | for-range-unused.cpp | 6 struct Vector { struct 19 Vector<int> vector; in main() argument
|
/aosp_15_r20/external/llvm/include/llvm/CodeGen/PBQP/ |
H A D | Math.h | 29 explicit Vector(unsigned Length) in Vector() function 36 Vector(unsigned Length, PBQPNum InitVal) in Vector() function 45 Vector(const Vector &V) in Vector() function 53 Vector(Vector &&V) in Vector() function
|
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/java/util/ |
H A D | Vector.java | 31 public class Vector<E> extends java.util.AbstractList<E> class 37 public Vector(int initialCapacity, int capacityIncrement) { in Vector() method in Vector 41 public Vector(int initialCapacity) { in Vector() method in Vector 45 public Vector() { in Vector() method in Vector 49 public Vector(java.util.Collection<? extends E> c) { in Vector() method in Vector
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/portable-simd/crates/test_helpers/src/ |
H A D | lib.rs | 163 pub fn test_unary_elementwise<Scalar, ScalarResult, Vector, VectorResult, const LANES: usize>( in test_unary_elementwise() argument 194 Vector, in test_unary_elementwise_flush_subnormals() argument 232 pub fn test_unary_mask_elementwise<Scalar, Vector, Mask, const LANES: usize>( in test_unary_mask_elementwise() argument 378 Vector, in test_binary_scalar_rhs_elementwise() argument 382 fv: &dyn Fn(Vector, Scalar2) -> VectorResult, in test_binary_scalar_rhs_elementwise() 413 Vector, in test_binary_scalar_lhs_elementwise() argument
|