Home
last modified time | relevance | path

Searched refs:ListUnion (Results 1 – 25 of 30) sorted by relevance

12

/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-android/
H A DListUnion.java25 public class ListUnion extends TUnion<ListUnion> { class
35 public ListUnion() { in ListUnion() method in ListUnion
39 public ListUnion(int setField, Object __value) { in ListUnion() method in ListUnion
43 public ListUnion(ListUnion other) { in ListUnion() method in ListUnion
47 public ListUnion deepCopy() { in deepCopy()
48 return new ListUnion(this); in deepCopy()
52 ListUnion x = new ListUnion(); in intListValue()
58 ListUnion x = new ListUnion(); in stringListValue()
189 if (other instanceof ListUnion) { in equals()
190 return equals((ListUnion)other); in equals()
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-java/
H A DListUnion.java25 public class ListUnion extends TUnion<ListUnion> implements Comparable<ListUnion> { class
46 public ListUnion() { in ListUnion() method in ListUnion
54 public ListUnion(ListUnion other) { in ListUnion() method in ListUnion
58 public ListUnion deepCopy() { in deepCopy()
59 return new ListUnion(this); in deepCopy()
63 ListUnion x = new ListUnion(); in intListValue()
69 ListUnion x = new ListUnion(); in stringListValue()
251 if (other instanceof ListUnion) { in equals()
252 return equals((ListUnion)other); in equals()
258 public boolean equals(ListUnion other) { in equals()
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-swift/test/fixtures/complex_union/
H A DListUnion.java24 public final class ListUnion implements com.facebook.thrift.payload.ThriftSerializable { class
45 public ListUnion() { in ListUnion() method in ListUnion
48 public static ListUnion fromIntListValue(final List<Long> intListValue) { in fromIntListValue()
49 ListUnion res = new ListUnion(); in fromIntListValue()
56 ListUnion res = new ListUnion(); in fromStringListValue()
143 ListUnion other = (ListUnion)o; in equals()
198 public static com.facebook.thrift.payload.Reader<ListUnion> asReader() { in asReader()
199 return ListUnion::read0; in asReader()
202 public static ListUnion read0(TProtocol oprot) throws TException { in read0()
203 ListUnion res = new ListUnion(); in read0()
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-cpp2/
H A Dmodule_types.cpp157 void TccStructTraits<::cpp2::ListUnion>::translateFieldName( in translateFieldName()
161 using data = apache::thrift::TStructDataStorage<::cpp2::ListUnion>; in translateFieldName()
177 …Range<::cpp2::ListUnion::Type const*> const TEnumTraits<::cpp2::ListUnion::Type>::values = folly::…
178 …Piece const*> const TEnumTraits<::cpp2::ListUnion::Type>::names = folly::range(TEnumDataStorage<::…
181 using factory = detail::TEnumMapFactory<::cpp2::ListUnion::Type>; in findName()
189 using factory = detail::TEnumMapFactory<::cpp2::ListUnion::Type>; in findValue()
198 void ListUnion::__fbthrift_clear() { in __fbthrift_clear()
215 bool ListUnion::operator==(const ListUnion& rhs) const { in operator ==()
227 bool ListUnion::operator<(const ListUnion& rhs) const { in operator <()
244 void swap(ListUnion& a, ListUnion& b) { in swap()
[all …]
H A Dmodule_data.cpp32 const std::array<::cpp2::ListUnion::Type, 2> TEnumDataStorage<::cpp2::ListUnion::Type>::values = {{
36 const std::array<folly::StringPiece, 2> TEnumDataStorage<::cpp2::ListUnion::Type>::names = {{
100 const std::array<folly::StringPiece, 2> TStructDataStorage<::cpp2::ListUnion>::fields_names = {{
104 const std::array<int16_t, 2> TStructDataStorage<::cpp2::ListUnion>::fields_ids = {{
108 const std::array<protocol::TType, 2> TStructDataStorage<::cpp2::ListUnion>::fields_types = {{
H A Dmodule_types.tcc26 struct TccStructTraits<::cpp2::ListUnion> {
361 void ListUnion::readNoXfer(Protocol_* iprot) { in readNoXfer()
423 case ListUnion::Type::intListValue: in serializedSize()
429 case ListUnion::Type::stringListValue: in serializedSize()
435 case ListUnion::Type::__EMPTY__:; in serializedSize()
446 case ListUnion::Type::intListValue: in serializedSizeZC()
452 case ListUnion::Type::stringListValue: in serializedSizeZC()
458 case ListUnion::Type::__EMPTY__:; in serializedSizeZC()
469 case ListUnion::Type::intListValue: in write()
477 case ListUnion::Type::stringListValue: in write()
[all …]
H A Dmodule_data.h22 template <> struct TEnumDataStorage<::cpp2::ListUnion::Type> {
23 using type = ::cpp2::ListUnion::Type;
64 template <> struct TStructDataStorage<::cpp2::ListUnion> {
H A Dmodule_types.h123 class ListUnion; variable
736 class ListUnion final {
748 using __fbthrift_cpp2_type = ListUnion;
760 ListUnion() in ListUnion() function
763 ListUnion(ListUnion&& rhs) noexcept in ListUnion() function
787 ListUnion(const ListUnion& rhs) in ListUnion() function
810 ListUnion& operator=(ListUnion&& rhs) noexcept {
835 ListUnion& operator=(const ListUnion& rhs) {
859 ~ListUnion() { in ~ListUnion()
1011 friend void swap(ListUnion& a, ListUnion& b);
[all …]
H A Dmodule_metadata.h26 class StructMetadata<::cpp2::ListUnion> {
H A Dmodule_for_each_field.h30 struct ForEachField<::cpp2::ListUnion> {
H A Dmodule_visit_union.h39 struct VisitUnion<::cpp2::ListUnion> {
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-py3/module/
H A Dtypes.pyi78 class ListUnion(thrift.py3.types.Union, _typing.Hashable):
97 def __lt__(self, other: 'ListUnion') -> bool: ...
98 def __gt__(self, other: 'ListUnion') -> bool: ...
99 def __le__(self, other: 'ListUnion') -> bool: ...
100 def __ge__(self, other: 'ListUnion') -> bool: ...
103 EMPTY: ListUnion.Type = ...
104 intListValue: ListUnion.Type = ...
105 stringListValue: ListUnion.Type = ...
108 …omValue(value: _typing.Union[None, _typing.Sequence[int], _typing.Sequence[str]]) -> ListUnion: ...
112 def type(self) -> "ListUnion.Type": ...
H A Dtypes.pxd92 cdef enum cListUnion__type "::cpp2::ListUnion::Type":
93 cListUnion__type___EMPTY__ "::cpp2::ListUnion::Type::__EMPTY__",
94 cListUnion__type_intListValue "::cpp2::ListUnion::Type::intListValue",
95 cListUnion__type_stringListValue "::cpp2::ListUnion::Type::stringListValue",
97 cdef cppclass cListUnion "::cpp2::ListUnion":
246 cdef class ListUnion(thrift.py3.types.Union): class
250 cdef _load_cache(ListUnion self)
H A Dtypes.h33 ::cpp2::ListUnion::Type>::namesmap() { in namesmap()
120 ::cpp2::ListUnion>::namesmap() { in namesmap()
H A Dtypes.pyx486 cdef class ListUnion(thrift.py3.types.Union): class
504 return ListUnion()
506 return ListUnion(intListValue=value)
508 return ListUnion(stringListValue=value)
535 __fbthrift_inst = <ListUnion>ListUnion.__new__(ListUnion)
553 def __hash__(ListUnion self):
556 cdef _load_cache(ListUnion self):
566 def __copy__(ListUnion self):
570 return ListUnion._fbthrift_create(cmove(cpp_obj))
576 (<ListUnion>other)._cpp_obj,
[all …]
H A Dmetadata.cpp15 ::apache::thrift::detail::md::StructMetadata<ListUnion>::gen(metadata); in module_getThriftModuleMetadata()
H A Dbuilders.pyx19 _struct_type = _module_types.ListUnion
/dports/math/gap/gap-4.11.0/pkg/hap-1.25/lib/TorsionSubcomplexes/
H A Dcountingcells.gi14 Elts,Rep,mult,ListUnion, AddReturn,NCells,
55 ListUnion:=function(x,y)
98 ListUnion(Cells[i],w);
119 Elts,Rep,mult,ListUnion, AddReturn,NCells,d,PWsbgrp,bdry,
160 ListUnion:=function(x,y)
203 ListUnion(Cells[i],w);
236 Elts,Rep,mult,ListUnion, AddReturn,NCells,d,nrCells,bdry,
277 ListUnion:=function(x,y)
320 ListUnion(Cells[i],w);
400 ListUnion:=function(x,y)
[all …]
H A Dbarycentriccount.gi14 Elts,Rep,mult,ListUnion, Chains, IsSameOrbit, AddReturn,
56 ListUnion:=function(x,y)
90 ListUnion(Cells[i],w);
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-py3lite/module/
H A Dlite_types.pyi50 class ListUnion(_fbthrift_py3lite_types.Union):
61 EMPTY: ListUnion.Type = ...
62 intListValue: ListUnion.Type = ...
63 stringListValue: ListUnion.Type = ...
66 …ue(cls, value: _typing.Union[None, _typing.Sequence[int], _typing.Sequence[str]]) -> ListUnion: ...
H A Dlite_types.py59 class ListUnion(metaclass=_fbthrift_py3lite_types.UnionMeta): class
187 ListUnion,
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-go/module/
H A Dttypes.go516 type ListUnion struct { struct
522 func NewListUnion() *ListUnion {
523 return &ListUnion{}
528 func (p *ListUnion) GetIntListValue() []int64 { argument
536 func (p *ListUnion) IsSetIntListValue() bool { argument
545 obj *ListUnion
554 func (p ListUnionBuilder) Emit() *ListUnion{
555 return &ListUnion{
571 func (l *ListUnion) SetIntListValue(intListValue []int64) *ListUnion { argument
576 func (l *ListUnion) SetStringListValue(stringListValue []string) *ListUnion { argument
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/gen-rust/
H A Dlib.rs29 pub enum ListUnion { enum
205 impl ::std::default::Default for ListUnion { implementation
211 impl ::fbthrift::GetTType for ListUnion { implementation
215 impl<P> ::fbthrift::Serialize<P> for ListUnion implementation
222 ListUnion::intListValue(inner) => { in write()
227 ListUnion::stringListValue(inner) => { in write()
232 ListUnion::UnknownField(_) => {} in write()
239 impl<P> ::fbthrift::Deserialize<P> for ListUnion implementation
257 … alt = ::std::option::Option::Some(ListUnion::intListValue(::fbthrift::Deserialize::read(p)?)); in read()
261 … alt = ::std::option::Option::Some(ListUnion::stringListValue(::fbthrift::Deserialize::read(p)?)); in read()
/dports/math/gap/gap-4.11.0/pkg/hap-1.25/lib/ArithmeticGroups/
H A Dbarycentric.gi10 Elts,Rep,mult,ListUnion, Chains, IsSameOrbit, AddReturn,
52 ListUnion:=function(x,y)
110 ListUnion(Cells[i],w);
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/complex-union/src/
H A Dmodule.thrift30 union ListUnion { union

12