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

1 2 3 4 5 6 7 891011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.assign/
nonmember_swap.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
15 // template <class charT, class traits, class Allocator>
16 // void swap(basic_stringbuf<charT, traits, Allocator>& x,
17 // basic_stringbuf<charT, traits, Allocator>& y);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringstream.cons/stringstream.assign/
nonmember_swap.pass.cpp 12 // template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
15 // template <class charT, class traits, class Allocator>
17 // swap(basic_stringstream<charT, traits, Allocator>& x,
18 // basic_stringstream<charT, traits, Allocator>& y);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/
types.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
18 // typedef traits traits_type;
19 // typedef basic_streambuf<charT, traits> streambuf_type;
20 // typedef basic_ostream<charT, traits> ostream_type;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.io/
get_line_delim_rv.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // basic_istream<charT,traits>&
14 // getline(basic_istream<charT,traits>&& is,
15 // basic_string<charT,traits,Allocator>& str, charT delim);
get_line_rv.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // basic_istream<charT,traits>&
14 // getline(basic_istream<charT,traits>&& is,
15 // basic_string<charT,traits,Allocator>& str);
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixMatrix.h 255 typedef gebp_traits<Scalar,Scalar> Traits;
264 std::size_t sizeW = kc*Traits::WorkSpaceFactor;
270 gebp_kernel<Scalar, Scalar, Index, Traits::mr, Traits::nr, ConjugateLhs, ConjugateRhs> gebp_kernel;
271 symm_pack_lhs<Scalar, Index, Traits::mr, Traits::LhsProgress, LhsStorageOrder> pack_lhs;
272 gemm_pack_rhs<Scalar, Index, Traits::nr,RhsStorageOrder> pack_rhs;
273 gemm_pack_lhs<Scalar, Index, Traits::mr, Traits::LhsProgress, LhsStorageOrder==RowMajor?ColMajor:RowMajor, true> pack_lhs_transposed;
308 gemm_pack_lhs<Scalar, Index, Traits::mr, Traits::LhsProgress, LhsStorageOrder,false>(
386 struct traits<SelfadjointProductMatrix<Lhs,LhsMode,false,Rhs,RhsMode,false> > struct in namespace:Eigen::internal
    [all...]
TriangularSolverMatrix.h 58 typedef gebp_traits<Scalar,Scalar> Traits;
60 SmallPanelWidth = EIGEN_PLAIN_ENUM_MAX(Traits::mr,Traits::nr),
69 std::size_t sizeW = kc*Traits::WorkSpaceFactor;
76 gebp_kernel<Scalar, Scalar, Index, Traits::mr, Traits::nr, Conjugate, false> gebp_kernel;
77 gemm_pack_lhs<Scalar, Index, Traits::mr, Traits::LhsProgress, TriStorageOrder> pack_lhs;
78 gemm_pack_rhs<Scalar, Index, Traits::nr, ColMajor, false, true> pack_rhs;
85 subcols = std::max<Index>((subcols/Traits::nr)*Traits::nr, Traits::nr)
    [all...]
  /external/eigen/Eigen/src/Core/
Ref.h 91 struct traits<Ref<_PlainObjectType, _Options, _StrideType> > struct in namespace:Eigen::internal
92 : public traits<Map<_PlainObjectType, _Options, _StrideType> >
98 Flags = traits<Map<_PlainObjectType, _Options, _StrideType> >::Flags | NestByRefBit
110 AlignmentMatch = (_Options!=Aligned) || ((PlainObjectType::Flags&AlignedBit)==0) || ((traits<Derived>::Flags&AlignedBit)==AlignedBit),
119 struct traits<RefBase<Derived> > : public traits<Derived> {}; struct in namespace:Eigen::internal
126 typedef typename internal::traits<Derived>::PlainObjectType PlainObjectType;
127 typedef typename internal::traits<Derived>::StrideType StrideType;
190 typedef internal::traits<Ref> Traits;
    [all...]
ArrayBase.h 49 using internal::special_scalar_op_base<Derived,typename internal::traits<Derived>::Scalar,
50 typename NumTraits<typename internal::traits<Derived>::Scalar>::Real>::operator*;
52 typedef typename internal::traits<Derived>::StorageKind StorageKind;
53 typedef typename internal::traits<Derived>::Index Index;
54 typedef typename internal::traits<Derived>::Scalar Scalar;
93 typedef Array<typename internal::traits<Derived>::Scalar,
94 internal::traits<Derived>::RowsAtCompileTime,
95 internal::traits<Derived>::ColsAtCompileTime,
96 AutoAlign | (internal::traits<Derived>::Flags&RowMajorBit ? RowMajor : ColMajor),
97 internal::traits<Derived>::MaxRowsAtCompileTime
    [all...]
  /external/clang/include/clang/Basic/
ExpressionTraits.h 1 //===- ExpressionTraits.h - C++ Expression Traits Support Enums -*- C++ -*-===//
11 /// \brief Defines enumerations for expression traits intrinsics.
  /external/deqp/framework/opengl/
gluObjectWrapper.cpp 36 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits)
38 , m_traits (traits)
41 (gl.*traits.genFunc)(1, &m_object);
46 const char* objectName = traits.name;
58 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits, deUint32 object)
60 , m_traits (traits)
88 ObjectVector::ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects)
90 , m_traits (traits)
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/
rdbuf.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // basic_filebuf<charT,traits>* rdbuf() const;
  /external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.members/
rdbuf.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // basic_filebuf<charT,traits>* rdbuf() const;
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
ios_base.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // basic_istream<charT,traits>& operator>>(ios_base& (*pf)(ios_base&));
  /external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
rdbuf.pass.cpp 12 // template <class charT, class traits> class basic_ios
14 // basic_streambuf<charT,traits>* rdbuf() const;
tie.pass.cpp 12 // template <class charT, class traits> class basic_ios
14 // basic_ostream<charT,traits>* tie() const;
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.pback/
pbackfail.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // int_type pbackfail(int_type c = traits::eof());
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
overflow.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // int_type overflow(int_type c = traits::eof());
  /external/libcxx/test/std/strings/basic.string/
types.pass.cpp 14 // template<class charT, class traits = char_traits<charT>,
19 // typedef traits traits_type;
20 // typedef typename traits::char_type value_type;
43 template <class Traits, class Allocator>
47 typedef std::basic_string<typename Traits::char_type, Traits, Allocator> S;
49 static_assert((std::is_same<typename S::traits_type, Traits>::value), "");
50 static_assert((std::is_same<typename S::value_type, typename Traits::char_type>::value), "");
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 56 template <typename ChunkType, class Traits>
60 typedef Traits traits; typedef in class:mcld::DataIterator
61 typedef typename traits::pointer pointer;
62 typedef typename traits::reference reference;
63 typedef DataIterator<ChunkType, Traits> Self;
66 typedef typename traits::nonconst_traits nonconst_traits;
68 typedef typename traits::const_traits const_traits;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.members/
rdbuf.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // basic_filebuf<charT,traits>* rdbuf() const;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.members/
rdbuf.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // basic_filebuf<charT,traits>* rdbuf() const;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
ios_base.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // basic_istream<charT,traits>& operator>>(ios_base& (*pf)(ios_base&));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
rdbuf.pass.cpp 12 // template <class charT, class traits> class basic_ios
14 // basic_streambuf<charT,traits>* rdbuf() const;
tie.pass.cpp 12 // template <class charT, class traits> class basic_ios
14 // basic_ostream<charT,traits>* tie() const;

Completed in 891 milliseconds

1 2 3 4 5 6 7 891011>>