HomeSort by relevance Sort by last modified time
    Searched full:traits (Results 151 - 175 of 2029) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libcxx/test/std/experimental/string.view/string.view.comparison/
oplt.string_view.string.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // bool operator<(const basic_string<charT,traits,Allocator>& lhs,
14 // basic_string_view<charT,traits> rhs);
15 // bool operator<(basic_string_view<charT,traits> lhs,
16 // const basic_string<charT,traits,Allocator>& rhs);
opeq.string_view.pointer.pass.cpp 12 // template<class charT, class traits>
13 // constexpr bool operator==(basic_string_view<charT,traits> lhs, const charT* rhs);
14 // template<class charT, class traits>
15 // constexpr bool operator==(const charT* lhs, basic_string_view<charT,traits> rhs);
opeq.string_view.string.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // bool operator==(const charT* lhs, const basic_string<charT,traits> rhs);
14 // template<class charT, class traits, class Allocator>
15 // bool operator==(const basic_string_view<charT,traits> lhs, const CharT* rhs);
opge.string_view.pointer.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // constexpr bool operator>=(const charT* lhs, basic_string_wiew<charT,traits> rhs);
14 // template<class charT, class traits, class Allocator>
15 // constexpr bool operator>=(basic_string_wiew<charT,traits> lhs, const charT* rhs);
opgt.string_view.pointer.pass.cpp 12 // constexpr template<class charT, class traits, class Allocator>
13 // bool operator>(const charT* lhs, basic_string_wiew<charT,traits> rhs);
14 // constexpr template<class charT, class traits, class Allocator>
15 // bool operator>(basic_string_wiew<charT,traits> lhs, const charT* rhs);
ople.string_view.pointer.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // constexpr bool operator<=(const charT* lhs, basic_string_wiew<charT,traits> rhs);
14 // template<class charT, class traits, class Allocator>
15 // constexpr bool operator<=(basic_string_wiew<charT,traits> lhs, const charT* rhs);
oplt.string_view.pointer.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // constexpr bool operator<(const charT* lhs, basic_string_wiew<charT,traits> rhs);
14 // template<class charT, class traits, class Allocator>
15 // constexpr bool operator<(basic_string_wiew<charT,traits> lhs, const charT* rhs);
  /external/libcxx/test/std/input.output/iostreams.base/ios/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
17 // typedef typename traits::int_type int_type;
18 // typedef typename traits::pos_type pos_type;
19 // typedef typename traits::off_type off_type;
20 // typedef traits traits_type;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
17 // typedef typename traits::int_type int_type;
18 // typedef typename traits::pos_type pos_type;
19 // typedef typename traits::off_type off_type;
20 // typedef traits traits_type;
  /external/eigen/Eigen/src/Core/
CwiseUnaryView.h 31 struct traits<CwiseUnaryView<ViewOp, MatrixType> > struct in namespace:Eigen::internal
32 : traits<MatrixType>
35 ViewOp(typename traits<MatrixType>::Scalar)
40 Flags = (traits<_MatrixTypeNested>::Flags & (HereditaryBits | LvalueBit | LinearAccessBit | DirectAccessBit)),
41 CoeffReadCost = traits<_MatrixTypeNested>::CoeffReadCost + functor_traits<ViewOp>::Cost,
47 : int(MatrixTypeInnerStride) * int(sizeof(typename traits<MatrixType>::Scalar) / sizeof(Scalar)),
50 : outer_stride_at_compile_time<MatrixType>::ret * int(sizeof(typename traits<MatrixType>::Scalar) / sizeof(Scalar))
59 class CwiseUnaryView : public CwiseUnaryViewImpl<ViewOp, MatrixType, typename internal::traits<MatrixType>::StorageKind>
63 typedef typename CwiseUnaryViewImpl<ViewOp, MatrixType,typename internal::traits<MatrixType>::StorageKind>::Base Base;
108 return derived().nestedExpression().innerStride() * sizeof(typename internal::traits<MatrixType>::Scalar) / sizeof(Scalar)
    [all...]
Dot.h 31 typedef typename scalar_product_traits<typename traits<T>::Scalar,typename traits<U>::Scalar>::ReturnType ResScalar;
34 return a.template binaryExpr<scalar_conj_product_op<typename traits<T>::Scalar,typename traits<U>::Scalar> >(b).sum();
41 typedef typename scalar_product_traits<typename traits<T>::Scalar,typename traits<U>::Scalar>::ReturnType ResScalar;
44 return a.transpose().template binaryExpr<scalar_conj_product_op<typename traits<T>::Scalar,typename traits<U>::Scalar> >(b).sum();
62 typename internal::scalar_product_traits<typename internal::traits<Derived>::Scalar,typename internal::traits<OtherDerived>::Scalar>::ReturnTyp
    [all...]
Replicate.h 32 struct traits<Replicate<MatrixType,RowFactor,ColFactor> > struct in namespace:Eigen::internal
33 : traits<MatrixType>
36 typedef typename traits<MatrixType>::StorageKind StorageKind;
37 typedef typename traits<MatrixType>::XprKind XprKind;
65 typedef typename internal::traits<Replicate>::MatrixTypeNested MatrixTypeNested;
66 typedef typename internal::traits<Replicate>::_MatrixTypeNested _MatrixTypeNested;
95 const Index actual_row = internal::traits<MatrixType>::RowsAtCompileTime==1 ? 0
98 const Index actual_col = internal::traits<MatrixType>::ColsAtCompileTime==1 ? 0
107 const Index actual_row = internal::traits<MatrixType>::RowsAtCompileTime==1 ? 0
110 const Index actual_col = internal::traits<MatrixType>::ColsAtCompileTime==1 ?
    [all...]
CwiseBinaryOp.h 38 struct traits<CwiseBinaryOp<BinaryOp, Lhs, Rhs> > struct in namespace:Eigen::internal
40 // we must not inherit from traits<Lhs> since it has
43 typedef typename traits<Ancestor>::XprKind XprKind;
45 RowsAtCompileTime = traits<Ancestor>::RowsAtCompileTime,
46 ColsAtCompileTime = traits<Ancestor>::ColsAtCompileTime,
47 MaxRowsAtCompileTime = traits<Ancestor>::MaxRowsAtCompileTime,
48 MaxColsAtCompileTime = traits<Ancestor>::MaxColsAtCompileTime
59 typedef typename promote_storage_type<typename traits<Lhs>::StorageKind,
60 typename traits<Rhs>::StorageKind>::ret StorageKind;
61 typedef typename promote_index_type<typename traits<Lhs>::Index
    [all...]
PermutationMatrix.h 55 typedef internal::traits<Derived> Traits;
60 typedef typename Traits::IndicesType IndicesType;
62 Flags = Traits::Flags,
63 CoeffReadCost = Traits::CoeffReadCost,
64 RowsAtCompileTime = Traits::RowsAtCompileTime,
65 ColsAtCompileTime = Traits::ColsAtCompileTime,
66 MaxRowsAtCompileTime = Traits::MaxRowsAtCompileTime,
67 MaxColsAtCompileTime = Traits::MaxColsAtCompileTime
69 typedef typename Traits::Scalar Scalar
274 struct traits<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType> > struct in namespace:Eigen::internal
388 struct traits<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType>,_PacketAccess> > struct in namespace:Eigen::internal
465 struct traits<PermutationWrapper<_IndicesType> > struct in namespace:Eigen::internal
534 struct traits<permut_matrix_product_retval<PermutationType, MatrixType, Side, Transposed> > struct in namespace:Eigen::internal
611 struct traits<Transpose<PermutationBase<Derived> > > struct in namespace:Eigen::internal
    [all...]
  /external/eigen/Eigen/src/LU/
Determinant.h 37 static inline typename traits<Derived>::Scalar run(const Derived& m)
40 return typename traits<Derived>::Scalar(1);
47 static inline typename traits<Derived>::Scalar run(const Derived& m)
55 static inline typename traits<Derived>::Scalar run(const Derived& m)
63 static inline typename traits<Derived>::Scalar run(const Derived& m)
73 static typename traits<Derived>::Scalar run(const Derived& m)
92 inline typename internal::traits<Derived>::Scalar MatrixBase<Derived>::determinant() const
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_common.i 95 General traits that provides type_name and type_info
97 template <class Type> struct traits { };
101 return traits<typename noconst_traits<Type >::noconst_type >::type_name();
124 template <class Type> struct traits <Type *> {
147 Generate the traits for a swigtype
153 template <> struct traits<Type > {
164 Generate the typemaps for a class that has 'value' traits
  /external/v8/src/
preparser.h 20 // Common base class shared between parser and pre-parser. Traits encapsulate
38 // The traits are expected to contain the following typedefs:
39 // struct Traits {
61 template <typename Traits>
62 class ParserBase : public Traits {
64 // Shorten type names defined by Traits.
65 typedef typename Traits::Type::Expression ExpressionT;
66 typedef typename Traits::Type::Identifier IdentifierT;
67 typedef typename Traits::Type::FunctionLiteral FunctionLiteralT;
68 typedef typename Traits::Type::Literal LiteralT
    [all...]
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h 87 typedef gebp_traits<Scalar,Scalar> Traits;
89 SmallPanelWidth = 2 * EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
128 std::size_t sizeW = kc*Traits::WorkSpaceFactor;
141 gebp_kernel<Scalar, Scalar, Index, Traits::mr, Traits::nr, ConjugateLhs, ConjugateRhs> gebp_kernel;
142 gemm_pack_lhs<Scalar, Index, Traits::mr, Traits::LhsProgress, LhsStorageOrder> pack_lhs;
143 gemm_pack_rhs<Scalar, Index, Traits::nr,RhsStorageOrder> pack_rhs;
211 gemm_pack_lhs<Scalar, Index, Traits::mr,Traits::LhsProgress, LhsStorageOrder,false>(
377 struct traits<TriangularProduct<Mode,LhsIsTriangular,Lhs,false,Rhs,false> > struct in namespace:Eigen::internal
    [all...]
  /external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 12 // template<class charT, class traits = char_traits<charT> >
15 // typename traits::off_type, unspecified,
20 // typedef traits traits_type;
21 // typedef typename traits::int_type int_type;
22 // typedef basic_streambuf<charT,traits> streambuf_type;
23 // typedef basic_istream<charT,traits> istream_type;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 12 // template<class charT, class traits = char_traits<charT> >
15 // typename traits::off_type, unspecified,
20 // typedef traits traits_type;
21 // typedef typename traits::int_type int_type;
22 // typedef basic_streambuf<charT,traits> streambuf_type;
23 // typedef basic_istream<charT,traits> istream_type;
  /external/clang/test/SemaTemplate/
alias-templates.cpp 25 template<typename T> struct traits { struct in namespace:X
30 template<typename U> using rebind = traits<rebind_thing<U>>;
44 typedef traits<thing<inner>> traits_type;
48 thing(traits_type &traits) : traits(traits), val(traits.alloc()) {}
49 ~thing() { traits.free(static_cast<inner_ptr&&>(val)); }
51 traits_type &traits; member in struct:X::thing
60 template<> bool &traits<thing<bool>>::alloc() { static bool b; return b;
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseRedux.h 16 typename internal::traits<Derived>::Scalar
28 typename internal::traits<SparseMatrix<_Scalar,_Options,_Index> >::Scalar
36 typename internal::traits<SparseVector<_Scalar,_Options, _Index> >::Scalar
SparseProduct.h 18 typedef typename internal::traits<Lhs>::Scalar Scalar;
19 typedef typename internal::traits<Lhs>::Index Index;
21 LhsRowMajor = internal::traits<Lhs>::Flags & RowMajorBit,
22 RhsRowMajor = internal::traits<Rhs>::Flags & RowMajorBit,
40 struct traits<SparseSparseProduct<LhsNested, RhsNested> > struct in namespace:Eigen::internal
47 typedef typename promote_index_type<typename traits<_LhsNested>::Index,
48 typename traits<_RhsNested>::Index>::type Index;
90 typedef typename internal::traits<SparseSparseProduct>::_LhsNested _LhsNested;
91 typedef typename internal::traits<SparseSparseProduct>::_RhsNested _RhsNested;
  /external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
rdbuf_streambuf.pass.cpp 12 // template <class charT, class traits> class basic_ios
14 // basic_streambuf<charT,traits>* rdbuf(basic_streambuf<charT,traits>* sb);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
rdbuf_streambuf.pass.cpp 12 // template <class charT, class traits> class basic_ios
14 // basic_streambuf<charT,traits>* rdbuf(basic_streambuf<charT,traits>* sb);

Completed in 333 milliseconds

1 2 3 4 5 67 8 91011>>