/aosp_15_r20/external/starlark-go/starlark/ |
H A D | library.go | 164 func all(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 181 func any(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 198 func bool_(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 207 func bytes_(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 246 func chr(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 267 func dict(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 279 func dir(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 300 func enumerate(thread *Thread, _ *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 336 func fail(thread *Thread, b *Builtin, args Tuple, kwargs []Tuple) (Value, error) { 357 func float(thread *Thread, b *Builtin, args Tuple, kwargs []Tuple) (Value, error) { [all …]
|
H A D | bench_test.go | 104 …artImpl(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 109 …artImpl(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 114 …topImpl(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple…
|
/aosp_15_r20/external/pytorch/torch/_higher_order_ops/ |
H A D | flex_attention.py | 98 block_mask: Tuple, 101 score_mod_other_buffers: Tuple = (), 102 mask_mod_other_buffers: Tuple = (), 140 block_mask: Tuple, 143 score_mod_other_buffers: Tuple = (), 144 mask_mod_other_buffers: Tuple = (), 177 block_mask: Tuple, 180 score_mod_other_buffers: Tuple = (), 181 mask_mod_other_buffers: Tuple = (), 218 block_mask: Tuple, [all …]
|
/aosp_15_r20/external/starlark-go/lib/proto/ |
H A D | proto.go | 170 …c file(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 192 …nc has(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 225 func marshal(_ *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 246 …arshal(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 256 …l_text(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 267 …arlark(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 289 …arlark(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 312 …sageDescriptor) CallInternal(thread *starlark.Thread, args starlark.Tuple, kwargs []starlark.Tuple… 358 func setFields(msg protoreflect.Message, items []starlark.Tuple) error {
|
/aosp_15_r20/external/executorch/backends/arm/test/ops/ |
H A D | test_full.py | 51 example_data: Tuple, 75 test_data: Tuple, 98 self, compile_spec: list[CompileSpec], module: torch.nn.Module, test_data: Tuple 112 def _test_full_tosa_u55_pipeline(self, module: torch.nn.Module, test_data: Tuple): 117 def _test_full_tosa_u85_pipeline(self, module: torch.nn.Module, test_data: Tuple): 134 def test_full_tosa_MI(self, test_tensor: Tuple): 140 def test_full_tosa_BI(self, test_tensor: Tuple): 144 def test_full_u55_BI(self, test_tensor: Tuple): 151 def test_full_u85_BI(self, test_tensor: Tuple):
|
/aosp_15_r20/external/starlark-go/starlarktest/ |
H A D | starlarktest.go | 79 …c catch(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 91 …matches(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 104 … error_(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 122 … freeze(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple…
|
/aosp_15_r20/build/make/tools/rbcrun/ |
H A D | host.go | 209 func wildcard(_ *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, 210 kwargs []starlark.Tuple) (starlark.Value, error) { 244 func find(_ *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, 245 kwargs []starlark.Tuple) (starlark.Value, error) { 284 func shell(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, 285 kwargs []starlark.Tuple) (starlark.Value, error) { 319 …nc log(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple…
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/ |
D | tuple.go | 10 type Tuple struct { struct 11 vars []*Var 23 func (t *Tuple) Len() int { 31 func (t *Tuple) At(i int) *Var { return t.vars[i] } 33 func (t *Tuple) Underlying() Type { return t } 34 func (t *Tuple) String() string { return TypeString(t, nil) }
|
/aosp_15_r20/prebuilts/go/linux-x86/src/go/types/ |
D | tuple.go | 13 type Tuple struct { struct 14 vars []*Var 26 func (t *Tuple) Len() int { 34 func (t *Tuple) At(i int) *Var { return t.vars[i] } 36 func (t *Tuple) Underlying() Type { return t } 37 func (t *Tuple) String() string { return TypeString(t, nil) }
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.in_range/ |
H A D | in_range.pass.cpp | 26 struct Tuple { struct 30 constexpr Tuple() { in Tuple() argument
|
/aosp_15_r20/external/starlark-go/starlarkjson/ |
H A D | json.go | 82 … encode(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 229 … indent(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple… 249 … decode(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple…
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_greater_equal/ |
H A D | cmp_greater_equal.pass.cpp | 24 struct Tuple { struct 28 constexpr Tuple() { in Tuple() argument
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/utilities/tuple/tuple.tuple/tuple.assign/ |
H A D | array.extension.pass.cpp | 50 typedef std::tuple<NothrowAssignableFrom<int>> Tuple; in main() typedef 55 typedef std::tuple<PotentiallyThrowingAssignableFrom<int>> Tuple; in main() typedef 71 typedef std::tuple<NothrowAssignableFrom<int>> Tuple; in main() typedef 76 typedef std::tuple<PotentiallyThrowingAssignableFrom<int>> Tuple; in main() typedef 84 typedef std::tuple<NothrowAssignableFrom<int>> Tuple; in main() typedef 91 typedef std::tuple<NothrowAssignableFrom<int>> Tuple; in main() typedef
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_less_equal/ |
H A D | cmp_less_equal.pass.cpp | 24 struct Tuple { struct 28 constexpr Tuple() { in Tuple() argument
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_greater/ |
H A D | cmp_greater.pass.cpp | 24 struct Tuple { struct 28 constexpr Tuple() { in Tuple() argument
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_less/ |
H A D | cmp_less.pass.cpp | 25 struct Tuple { struct 29 constexpr Tuple() { in Tuple() argument
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_not_equal/ |
H A D | cmp_not_equal.pass.cpp | 25 struct Tuple { struct 29 constexpr Tuple() { in Tuple() argument
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_equal/ |
H A D | cmp_equal.pass.cpp | 25 struct Tuple { struct 29 constexpr Tuple() { in Tuple() argument
|
/aosp_15_r20/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/ |
H A D | make_from_tuple.pass.cpp | 102 using Tuple = std::array<int, 3>; in test_constexpr_construction() typedef 174 using Tuple = std::tuple<int, NothrowMoveable>; in test_noexcept() typedef 181 using Tuple = std::pair<int, NothrowMoveable>; in test_noexcept() typedef 188 using Tuple = std::tuple<int, int, int>; in test_noexcept() typedef 193 using Tuple = std::tuple<long, long, long>; in test_noexcept() typedef 198 using Tuple = std::array<int, 3>; in test_noexcept() typedef 203 using Tuple = std::array<long, 3>; in test_noexcept() typedef
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/tuple/tuple.tuple/tuple.apply/ |
H A D | make_from_tuple.pass.cpp | 91 using Tuple = std::array<int, 3>; in test_constexpr_construction() typedef 163 using Tuple = std::tuple<int, NothrowMoveable>; in test_noexcept() typedef 170 using Tuple = std::pair<int, NothrowMoveable>; in test_noexcept() typedef 177 using Tuple = std::tuple<int, int, int>; in test_noexcept() typedef 182 using Tuple = std::tuple<long, long, long>; in test_noexcept() typedef 187 using Tuple = std::array<int, 3>; in test_noexcept() typedef 192 using Tuple = std::array<long, 3>; in test_noexcept() typedef
|
/aosp_15_r20/external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/ |
H A D | enable_reduced_arity_initialization_extension.pass.cpp | 44 typedef std::tuple<MO, ND> Tuple; in test_default_constructible_extension_sfinae() typedef 50 typedef std::tuple<MO, MO, ND> Tuple; in test_default_constructible_extension_sfinae() typedef 57 typedef std::tuple<MO, ND> Tuple; in test_default_constructible_extension_sfinae() typedef 66 typedef std::tuple<MO, int> Tuple; in test_default_constructible_extension_sfinae() typedef
|
/aosp_15_r20/external/rust/android-crates-io/crates/criterion/src/stats/ |
D | tuple.rs | 6 pub trait Tuple: Sized { trait 38 impl<A> Tuple for (A,) impl 75 impl<A, B> Tuple for (A, B) impl 120 impl<A, B, C> Tuple for (A, B, C) impl 175 impl<A, B, C, D> Tuple for (A, B, C, D) impl
|
/aosp_15_r20/external/rust/android-crates-io/crates/pin-project/tests/include/ |
D | basic-safe-part.rs | 44 Tuple(#[pin] T, U), enumerator 82 Tuple(#[pin] T, U), enumerator 135 Tuple(#[pin] T, U), enumerator 163 Tuple(#[pin] T, U), enumerator 191 Tuple(#[pin] T, U), enumerator
|
/aosp_15_r20/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
H A D | UTypes.pass.cpp | 47 typedef std::tuple<MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae() typedef 60 typedef std::tuple<MoveOnly, MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae() typedef 74 typedef std::tuple<MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae() typedef 90 typedef std::tuple<MoveOnly, int> Tuple; in test_default_constructible_extension_sfinae() typedef
|
/aosp_15_r20/external/rust/android-crates-io/crates/pin-project/tests/ |
D | lint.rs | 515 Tuple(#[pin] Box<isize>, Box<isize>), enumerator 606 Tuple( enumerator 720 Tuple(#[pin] &'a mut T, &'a mut U), enumerator 894 Tuple(#[pin] &'a mut T, &'a mut U), enumerator 965 Tuple(#[pin] T, U), enumerator 1041 Tuple(#[pin] T, U), enumerator
|