Home
last modified time | relevance | path

Searched defs:Struct (Results 1 – 25 of 418) sorted by relevance

12345678910>>...17

/external/starlark-go/starlarkstruct/
Dstruct.go101 type Struct struct { struct
102 constructor starlark.Value
103 entries entries // sorted by name
127 func (s *Struct) ToStringDict(d starlark.StringDict) {
133 func (s *Struct) String() string {
156 func (s *Struct) Constructor() starlark.Value { return s.constructor }
158 func (s *Struct) Type() string { return "struct" }
159 func (s *Struct) Truth() starlark.Bool { return true } // even when empty
160 func (s *Struct) Hash() (uint32, error) {
175 func (s *Struct) Freeze() {
[all …]
/external/rust/android-crates-io/crates/diplomat_core/src/ast/
Dstructs.rs9 pub struct Struct { struct
19 impl Struct { implementation
/external/tink/go/jwt/
Djwk_converter.go57 func hasItem(s *spb.Struct, name string) bool {
65 func stringItem(s *spb.Struct, name string) (string, error) {
81 func listValue(s *spb.Struct, name string) (*spb.ListValue, error) {
100 func expectStringItem(s *spb.Struct, name, value string) error {
111 func decodeItem(s *spb.Struct, name string) ([]byte, error) {
119 func validateKeyOPSIsVerify(s *spb.Struct) error {
140 func validateUseIsSig(s *spb.Struct) error {
147 func algorithmPrefix(s *spb.Struct) (string, error) {
164 func psPublicKeyDataFromStruct(keyStruct *spb.Struct) (*tinkpb.KeyData, error) {
205 func rsPublicKeyDataFromStruct(keyStruct *spb.Struct) (*tinkpb.KeyData, error) {
[all …]
/external/rust/android-crates-io/crates/googletest/tests/
Dproperty_matcher_test.rs212 struct Struct; in matches_copy_to_copy() struct
213 impl Struct { in matches_copy_to_copy() impl
225 struct Struct; in matches_copy_to_ref() struct
226 impl Struct { in matches_copy_to_ref() impl
238 struct Struct; in matches_copy_but_by_ref() struct
239 impl Struct { in matches_copy_but_by_ref() impl
251 struct Struct; in matches_ref_to_ref() struct
252 impl Struct { in matches_ref_to_ref() impl
264 struct Struct; in matches_ref_to_copy() struct
265 impl Struct { in matches_ref_to_copy() impl
[all …]
/external/flatbuffers/net/FlatBuffers/
DStruct.cs22 public struct Struct struct
24 public int bb_pos { get; private set; }
25 public ByteBuffer bb { get; private set; }
28 public Struct(int _i, ByteBuffer _bb) : this() in Struct() argument
/external/rust/android-crates-io/crates/pin-project/tests/expand/multifields/
Dstruct.rs6 struct Struct<T, U> { struct
8 pinned1: T,
10 pinned2: T,
11 unpinned1: U,
12 unpinned2: U,
/external/rust/android-crates-io/crates/pin-project/tests/
Dpinned_drop.rs10 struct Struct<'a> { in safe_project() struct
11 was_dropped: &'a mut bool, in safe_project()
13 field: u8, in safe_project()
17 impl PinnedDrop for Struct<'_> { in safe_project() implementation
59 struct Struct { in self_ty() struct
60 f: (), in self_ty()
64 impl PinnedDrop for Struct { in self_ty() implementation
101 Struct { f: () }, in self_ty() enumerator
175 struct Struct { in self_arg_inside_macro_call() struct
176 f: (), in self_arg_inside_macro_call()
[all …]
/external/flatbuffers/rust/reflection/src/
Dstruct.rs20 pub struct Struct<'a> { struct
25 impl<'a> Struct<'a> { argument
55 impl<'a> Follow<'a> for Struct<'a> { implementation
/external/rust/android-crates-io/crates/pin-project/tests/expand/not_unpin/
Dstruct.expanded.rs3 struct Struct<T, U> { struct
5 pinned: T,
6 unpinned: U,
47 impl<T, U> Struct<T, U> { implementation
82 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
92 unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> implementation
104 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
106 impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> { implementation
/external/rust/android-crates-io/crates/pin-project/examples/
Dunsafe_unpin-expanded.rs35 struct Struct<T, U> { struct
44 Struct<T, U>: 'pin, argument
57 impl<T, U> Struct<T, U> { impl
94 impl<'pin, T, U> ::pin_project::__private::Unpin for Struct<T, U> where implementation
106 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
110 impl<T, U> ::pin_project::__private::PinnedDrop for Struct<T, U> { implementation
115 unsafe impl<T: Unpin, U> UnsafeUnpin for Struct<T, U> {} implementation
Dnot_unpin-expanded.rs36 struct Struct<T, U> { struct
45 Struct<T, U>: 'pin, argument
58 impl<T, U> Struct<T, U> { implementation
99 impl<'pin, T, U> ::pin_project::__private::Unpin for Struct<T, U> where implementation
112 unsafe impl<'pin, T, U> ::pin_project::UnsafeUnpin for Struct<T, U> where implementation
125 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
129 impl<T, U> ::pin_project::__private::PinnedDrop for Struct<T, U> { implementation
Dstruct-default-expanded.rs33 struct Struct<T, U> { struct
42 Struct<T, U>: 'pin, argument
55 impl<T, U> Struct<T, U> { impl
131 impl<'pin, T, U> ::pin_project::__private::Unpin for Struct<T, U> where implementation
143 unsafe impl<'pin, T, U> ::pin_project::UnsafeUnpin for Struct<T, U> where implementation
157 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
161 impl<T, U> ::pin_project::__private::PinnedDrop for Struct<T, U> { implementation
Dunsafe_unpin.rs10 struct Struct<T, U> { struct
16 unsafe impl<T: Unpin, U> UnsafeUnpin for Struct<T, U> {} argument
Dpinned_drop-expanded.rs44 pub struct Struct<'a, T> { struct
53 Struct<'a, T>: 'pin, argument
66 impl<'a, T> Struct<'a, T> { impl
102 impl<'a, T> ::pin_project::__private::Drop for Struct<'a, T> { implementation
125 impl<'pin, 'a, T> ::pin_project::__private::Unpin for Struct<'a, T> where implementation
132 unsafe impl<'pin, 'a, T> ::pin_project::UnsafeUnpin for Struct<'a, T> where implementation
152 impl<T> ::pin_project::__private::PinnedDrop for Struct<'_, T> { implementation
/external/rust/android-crates-io/crates/pin-project/tests/expand/unsafe_unpin/
Dstruct.expanded.rs3 struct Struct<T, U> { struct
5 pinned: T,
6 unpinned: U,
47 impl<T, U> Struct<T, U> { impl
81 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
90 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
92 impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> { implementation
96 unsafe impl<T: Unpin, U> UnsafeUnpin for Struct<T, U> {} implementation
Dstruct.rs6 struct Struct<T, U> { struct
12 unsafe impl<T: Unpin, U> UnsafeUnpin for Struct<T, U> {} argument
/external/rust/android-crates-io/crates/pin-project/tests/expand/naming/
Dstruct-none.expanded.rs3 struct Struct<T, U> { struct
5 pinned: T,
6 unpinned: U,
47 impl<T, U> Struct<T, U> { implementation
92 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
99 unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> implementation
108 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
110 impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> { implementation
Dstruct-mut.expanded.rs3 struct Struct<T, U> { struct
28 Struct<T, U>: 'pin, argument
64 impl<T, U> Struct<T, U> { impl
109 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
116 unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> implementation
125 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
127 impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> { implementation
Dstruct-ref.expanded.rs3 struct Struct<T, U> { struct
28 Struct<T, U>: 'pin, argument
64 impl<T, U> Struct<T, U> { impl
109 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
116 unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> implementation
125 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
127 impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> { implementation
/external/rust/android-crates-io/crates/pin-project/tests/expand/default/
Dstruct.expanded.rs3 struct Struct<T, U> { struct
5 pinned: T,
6 unpinned: U,
47 impl<T, U> Struct<T, U> { implementation
92 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
99 unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> implementation
108 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
110 impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> { implementation
/external/rust/android-crates-io/crates/pin-project/tests/expand/pub/
Dstruct.expanded.rs3 pub struct Struct<T, U> { struct
5 pub pinned: T,
6 pub unpinned: U,
47 impl<T, U> Struct<T, U> { impl
92 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
99 unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> implementation
108 impl<T, U> StructMustNotImplDrop for Struct<T, U> {} implementation
110 impl<T, U> _pin_project::__private::PinnedDrop for Struct<T, U> { implementation
/external/rust/android-crates-io/crates/maybe-async/tests/ui/
D06-sync_impl_async_impl.rs10 pub struct Struct; struct
16 impl Trait for Struct { implementation
22 impl Trait for Struct { implementation
26 impl Struct { implementation
/external/rust/android-crates-io/crates/serde_cbor/tests/
Dvalue.rs17 struct Struct<'a> { struct
18 tuple_struct: TupleStruct,
19 tuple: (String, f32, f64),
20 map: BTreeMap<String, String>,
21 bytes: &'a [u8],
22 array: Vec<String>,
23 unit_array: Vec<UnitStruct>,
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/types/
Dstruct.h29 struct Struct { struct
30 static constexpr uint32_t kMaxFields = 8;
31 std::array<std::pair<std::string, Value>, kMaxFields> fields;
32 uint32_t field_count = 0;
/external/rust/android-crates-io/crates/pin-project/tests/expand/pinned_drop/
Dstruct.expanded.rs4 struct Struct<T, U> { struct
6 pinned: T,
7 unpinned: U,
48 impl<T, U> Struct<T, U> { implementation
93 impl<'pin, T, U> _pin_project::__private::Unpin for Struct<T, U> implementation
100 unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct<T, U> implementation
106 impl<T, U> _pin_project::__private::Drop for Struct<T, U> { implementation
117 impl<T, U> ::pin_project::__private::PinnedDrop for Struct<T, U> { implementation

12345678910>>...17