Home
last modified time | relevance | path

Searched refs:TList (Results 51 – 75 of 2255) sorted by relevance

12345678910>>...91

/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gdc.test/fail_compilation/
H A Dfail137.d3 template TypeTuple( TList... ) in TypeTuple() argument
5 alias TList TypeTuple; in TypeTuple()
8 template IndexOf( T, TList... ) in IndexOf() argument
10 static if( TList.length == 0 ) in IndexOf()
12 else static if( is( T == typeof( TList[0] ) ) ) in IndexOf()
15 const size_t IndexOf = 1 + IndexOf!( T, (TList[1 .. $]) ); in IndexOf()
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/testsuite/gdc.test/fail_compilation/
H A Dfail137.d3 template TypeTuple( TList... )
5 alias TList TypeTuple;
8 template IndexOf( T, TList... )
10 static if( TList.length == 0 )
12 else static if( is( T == typeof( TList[0] ) ) )
15 const size_t IndexOf = 1 + IndexOf!( T, (TList[1 .. $]) );
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/gdc.test/fail_compilation/
H A Dfail137.d3 template TypeTuple( TList... ) in TypeTuple() argument
5 alias TList TypeTuple; in TypeTuple()
8 template IndexOf( T, TList... ) in IndexOf() argument
10 static if( TList.length == 0 ) in IndexOf()
12 else static if( is( T == typeof( TList[0] ) ) ) in IndexOf()
15 const size_t IndexOf = 1 + IndexOf!( T, (TList[1 .. $]) ); in IndexOf()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gdc.test/fail_compilation/
H A Dfail137.d3 template TypeTuple( TList... ) in TypeTuple() argument
5 alias TList TypeTuple; in TypeTuple()
8 template IndexOf( T, TList... ) in IndexOf() argument
10 static if( TList.length == 0 ) in IndexOf()
12 else static if( is( T == typeof( TList[0] ) ) ) in IndexOf()
15 const size_t IndexOf = 1 + IndexOf!( T, (TList[1 .. $]) ); in IndexOf()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudalegacy/src/cuda/
H A DNCVRuntimeTemplates.hpp121 template <class TList, unsigned int index> struct TypeAt;
149 template<typename TList, int NumArguments, class Func>
188 Loki::Typelist<typename Loki::Int2Type<1>, TList >, in call()
195 Loki::Typelist<typename Loki::Int2Type<0>, TList >, in call()
204 template<class TList, class Func>
205 struct KernelCaller<TList, 0, Func>
210 … functor.call(TList()); //TList instantiated to get the method template parameter resolved in call()
216 functor.call(TList()); in call()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/gpu/people/src/cuda/nvidia/
H A DNCVRuntimeTemplates.hpp119 template <class TList, unsigned int index> struct TypeAt;
147 template<typename TList, int NumArguments, class Func>
186 Loki::Typelist<typename Loki::Int2Type<1>, TList >, in call()
193 Loki::Typelist<typename Loki::Int2Type<0>, TList >, in call()
202 template<class TList, class Func>
203 struct KernelCaller<TList, 0, Func>
208 … functor.call(TList()); //TList instantiated to get the method template parameter resolved in call()
213 functor.call(TList()); in call()
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gdc.test/compilable/
H A Dfail137.d6 template TypeTuple( TList... ) in TypeTuple() argument
8 alias TList TypeTuple; in TypeTuple()
11 template IndexOf( T, TList... ) in IndexOf() argument
13 static if( TList.length == 0 ) in IndexOf()
15 else static if( is( T == typeof( TList[0] ) ) ) in IndexOf()
18 const size_t IndexOf = 1 + IndexOf!( T, (TList[1 .. $]) ); in IndexOf()
/dports/lang/fpc-source/fpc-3.2.2/tests/test/
H A Dtgeneric11.pp4 generic TList<_T>=class(TObject)
9 procedure Assign(Source: specialize TList<_T>);
12 procedure TList.Add(item: _T);
17 procedure TList.Assign(Source: specialize TList<_T>);
23 TMyIntList = specialize TList<integer>;
24 TMyStringList = specialize TList<string>;
H A Dtgeneric12.pp8 generic TList<_T> = class(TSList)
18 writeln('should call TList!');
22 procedure TList.Add(item: _T);
27 procedure TList.Test;
35 TMyIntList = specialize TList<Integer>;
/dports/math/scilab/scilab-6.1.1/scilab/modules/scicos/sci_gateway/cpp/
H A Dsci_getscicosvars.cpp216 types::TList* ret = new types::TList(); in sci_getscicosvars()
229 types::TList* il_state = get_il_state()->getAs<types::TList>(); in sci_getscicosvars()
242 types::TList* il_state = get_il_state()->getAs<types::TList>(); in sci_getscicosvars()
255 types::TList* il_state = get_il_state()->getAs<types::TList>(); in sci_getscicosvars()
268 types::TList* il_state = get_il_state()->getAs<types::TList>(); in sci_getscicosvars()
281 types::TList* il_state = get_il_state()->getAs<types::TList>(); in sci_getscicosvars()
298 types::TList* il_sim = get_il_sim()->getAs<types::TList>(); in sci_getscicosvars()
/dports/lang/gcc11/gcc-11.2.0/libphobos/libdruntime/core/internal/
H A Dtraits.d11 alias AliasSeq(TList...) = TList;
351 template Filter(alias pred, TList...) in Filter() argument
353 static if (TList.length == 0) in Filter()
357 else static if (TList.length == 1) in Filter()
359 static if (pred!(TList[0])) in Filter()
360 alias Filter = AliasSeq!(TList[0]); in Filter()
367 else static if (TList.length == 2) in Filter()
369 static if (pred!(TList[0])) in Filter()
371 static if (pred!(TList[1])) in Filter()
372 alias Filter = AliasSeq!(TList[0], TList[1]); in Filter()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/libdruntime/core/internal/
H A Dtraits.d11 alias AliasSeq(TList...) = TList;
351 template Filter(alias pred, TList...) in Filter() argument
353 static if (TList.length == 0) in Filter()
357 else static if (TList.length == 1) in Filter()
359 static if (pred!(TList[0])) in Filter()
360 alias Filter = AliasSeq!(TList[0]); in Filter()
367 else static if (TList.length == 2) in Filter()
369 static if (pred!(TList[0])) in Filter()
371 static if (pred!(TList[1])) in Filter()
372 alias Filter = AliasSeq!(TList[0], TList[1]); in Filter()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/libdruntime/core/internal/
H A Dtraits.d11 alias AliasSeq(TList...) = TList;
351 template Filter(alias pred, TList...) in Filter() argument
353 static if (TList.length == 0) in Filter()
357 else static if (TList.length == 1) in Filter()
359 static if (pred!(TList[0])) in Filter()
360 alias Filter = AliasSeq!(TList[0]); in Filter()
367 else static if (TList.length == 2) in Filter()
369 static if (pred!(TList[0])) in Filter()
371 static if (pred!(TList[1])) in Filter()
372 alias Filter = AliasSeq!(TList[0], TList[1]); in Filter()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/thrift/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable & Hashable> : RandomAccessCollection, MutableCollection…
41 public static func read(from proto: TProtocol) throws -> TList { in read()
47 var list = TList() in read()
112 extension TList : RangeReplaceableCollection { extension
119 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
131 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/net/storj/storj-1.45.3/vendor/github.com/apache/thrift/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable> : RandomAccessCollection, MutableCollection, Expressib…
46 public static func read(from proto: TProtocol) throws -> TList { in read()
52 var list = TList() in read()
117 extension TList : RangeReplaceableCollection { extension
124 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
136 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/devel/py-thrift/thrift-0.14.0/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable & Hashable> : RandomAccessCollection, MutableCollection…
41 public static func read(from proto: TProtocol) throws -> TList { in read()
47 var list = TList() in read()
112 extension TList : RangeReplaceableCollection { extension
119 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
131 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/www/fabio/fabio-1.5.14/vendor/github.com/apache/thrift/thrift-da1169d75b15/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable> : RandomAccessCollection, MutableCollection, Expressib…
46 public static func read(from proto: TProtocol) throws -> TList { in read()
52 var list = TList() in read()
117 extension TList : RangeReplaceableCollection { extension
124 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
136 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/devel/thrift-cpp/thrift-0.14.0/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable & Hashable> : RandomAccessCollection, MutableCollection…
41 public static func read(from proto: TProtocol) throws -> TList { in read()
47 var list = TList() in read()
112 extension TList : RangeReplaceableCollection { extension
119 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
131 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/devel/thrift-c_glib/thrift-0.14.0/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable & Hashable> : RandomAccessCollection, MutableCollection…
41 public static func read(from proto: TProtocol) throws -> TList { in read()
47 var list = TList() in read()
112 extension TList : RangeReplaceableCollection { extension
119 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
131 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/devel/thrift/thrift-0.14.0/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable & Hashable> : RandomAccessCollection, MutableCollection…
41 public static func read(from proto: TProtocol) throws -> TList { in read()
47 var list = TList() in read()
112 extension TList : RangeReplaceableCollection { extension
119 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
131 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/apache/thrift/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable> : RandomAccessCollection, MutableCollection, Expressib…
46 public static func read(from proto: TProtocol) throws -> TList { in read()
52 var list = TList() in read()
117 extension TList : RangeReplaceableCollection { extension
124 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
136 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/devel/node-thrift/thrift-0.14.0/lib/swift/Sources/
H A DTList.swift20 public struct TList<Element : TSerializable & Hashable> : RandomAccessCollection, MutableCollection…
41 public static func read(from proto: TProtocol) throws -> TList { in read()
47 var list = TList() in read()
112 extension TList : RangeReplaceableCollection { extension
119 extension TList : CustomStringConvertible, CustomDebugStringConvertible { extension
131 public func ==<Element>(lhs: TList<Element>, rhs: TList<Element>) -> Bool { in ==<Element>()
/dports/editors/lazarus/lazarus/lcl/include/
H A Dcontrolsproc.inc11 procedure ListAdd(var List : TList; Item: Pointer);
14 List := TList.Create;
18 procedure ListInsert(var List : TList; Index : Longint; Item: Pointer);
21 List := TList.Create;
25 function ListIndexOf(var List : TList; Item: Pointer) : Longint;
32 function ListCount(List : TList) : Longint;
39 procedure ListRemove(var List : TList; Item: Pointer);
51 procedure ListDelete(var List : TList; Index: integer);
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/include/
H A Dcontrolsproc.inc11 procedure ListAdd(var List : TList; Item: Pointer);
14 List := TList.Create;
18 procedure ListInsert(var List : TList; Index : Longint; Item: Pointer);
21 List := TList.Create;
25 function ListIndexOf(var List : TList; Item: Pointer) : Longint;
32 function ListCount(List : TList) : Longint;
39 procedure ListRemove(var List : TList; Item: Pointer);
51 procedure ListDelete(var List : TList; Index: integer);
/dports/editors/lazarus-qt5/lazarus/lcl/include/
H A Dcontrolsproc.inc11 procedure ListAdd(var List : TList; Item: Pointer);
14 List := TList.Create;
18 procedure ListInsert(var List : TList; Index : Longint; Item: Pointer);
21 List := TList.Create;
25 function ListIndexOf(var List : TList; Item: Pointer) : Longint;
32 function ListCount(List : TList) : Longint;
39 procedure ListRemove(var List : TList; Item: Pointer);
51 procedure ListDelete(var List : TList; Index: integer);

12345678910>>...91