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

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
iosfwd 24 template <class charT, class traits = char_traits<charT> > class basic_ios;
26 template <class charT, class traits = char_traits<charT> > class basic_streambuf;
27 template <class charT, class traits = char_traits<charT> > class basic_istream;
28 template <class charT, class traits = char_traits<charT> > class basic_ostream;
29 template <class charT, class traits = char_traits<charT> > class basic_iostream;
31 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
33 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
35 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
37 template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
40 template <class charT, class traits = char_traits<charT> > class basic_filebuf
    [all...]
  /external/eigen/Eigen/src/Core/
VectorBlock.h 49 struct traits<VectorBlock<VectorType, Size> > struct in namespace:Eigen::internal
50 : public traits<Block<VectorType,
51 traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
52 traits<VectorType>::Flags & RowMajorBit ? Size : 1> >
59 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
60 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1>
63 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
64 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1> Base;
66 IsColVector = !(internal::traits<VectorType>::Flags & RowMajorBit)
  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 44 struct traits<SparseDenseOuterProduct<Lhs,Rhs,Tr> > struct in namespace:Eigen::internal
47 typedef typename scalar_product_traits<typename traits<Lhs>::Scalar,
48 typename traits<Rhs>::Scalar>::ReturnType Scalar;
56 LhsCoeffReadCost = traits<_LhsNested>::CoeffReadCost,
57 RhsCoeffReadCost = traits<_RhsNested>::CoeffReadCost,
59 RowsAtCompileTime = Tr ? int(traits<Rhs>::RowsAtCompileTime) : int(traits<Lhs>::RowsAtCompileTime),
60 ColsAtCompileTime = Tr ? int(traits<Lhs>::ColsAtCompileTime) : int(traits<Rhs>::ColsAtCompileTime),
61 MaxRowsAtCompileTime = Tr ? int(traits<Rhs>::MaxRowsAtCompileTime) : int(traits<Lhs>::MaxRowsAtCompileTime)
153 struct traits<SparseTimeDenseProduct<Lhs,Rhs> > struct in namespace:Eigen::internal
280 struct traits<DenseTimeSparseProduct<Lhs,Rhs> > struct in namespace:Eigen::internal
    [all...]
  /frameworks/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /frameworks/rs/server/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/util/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android::RSC
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /system/core/include/utils/
TypeHelpers.h 30 * Types traits
41 struct traits { struct in namespace:android
61 traits<T>::has_trivial_ctor && traits<U>::has_trivial_ctor,
63 traits<T>::has_trivial_dtor && traits<U>::has_trivial_dtor,
65 traits<T>::has_trivial_copy && traits<U>::has_trivial_copy,
67 traits<T>::has_trivial_move && traits<U>::has_trivial_mov
    [all...]
  /external/libcxx/test/std/experimental/string.view/string.view.comparison/
opne.string_view.string.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // bool operator!=(const basic_string<charT, traits, Allocator> &lhs, basic_string_view<charT,traits> rhs);
14 // template<class charT, class traits, class Allocator>
15 // bool operator!=(basic_string_view<charT,traits> lhs, const basic_string<charT, traits, Allocator> &rhs);
  /external/libcxx/test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
equal.pass.cpp 14 // template <class T, class charT, class traits, class Distance>
15 // bool operator==(const istream_iterator<T,charT,traits,Distance> &x,
16 // const istream_iterator<T,charT,traits,Distance> &y);
18 // template <class T, class charT, class traits, class Distance>
19 // bool operator!=(const istream_iterator<T,charT,traits,Distance> &x,
20 // const istream_iterator<T,charT,traits,Distance> &y);
  /external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
io.pass.cpp 15 // template <class charT, class traits,
17 // basic_ostream<charT, traits>&
18 // operator<<(basic_ostream<charT, traits>& os,
21 // template <class charT, class traits,
23 // basic_istream<charT, traits>&
24 // operator>>(basic_istream<charT, traits>& is,
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
io.pass.cpp 17 // template <class charT, class traits,
21 // basic_ostream<charT, traits>&
22 // operator<<(basic_ostream<charT, traits>& os,
25 // template <class charT, class traits,
29 // basic_ostream<charT, traits>&
30 // operator>>(basic_istream<charT, traits>& is,
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
io.pass.cpp 15 // template <class charT, class traits,
17 // basic_ostream<charT, traits>&
18 // operator<<(basic_ostream<charT, traits>& os,
21 // template <class charT, class traits,
23 // basic_istream<charT, traits>&
24 // operator>>(basic_istream<charT, traits>& is,
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/
char_string.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // basic_string<charT,traits,Allocator>
14 // operator+(charT lhs, const basic_string<charT,traits,Allocator>& rhs);
16 // template<class charT, class traits, class Allocator>
17 // basic_string<charT,traits,Allocator>&&
18 // operator+(charT lhs, basic_string<charT,traits,Allocator>&& rhs);
string_char.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // basic_string<charT,traits,Allocator>
14 // operator+(const basic_string<charT,traits,Allocator>& lhs, charT rhs);
16 // template<class charT, class traits, class Allocator>
17 // basic_string<charT,traits,Allocator>&&
18 // operator+(basic_string<charT,traits,Allocator>&& lhs, charT rhs);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
equal.pass.cpp 14 // template <class T, class charT, class traits, class Distance>
15 // bool operator==(const istream_iterator<T,charT,traits,Distance> &x,
16 // const istream_iterator<T,charT,traits,Distance> &y);
18 // template <class T, class charT, class traits, class Distance>
19 // bool operator!=(const istream_iterator<T,charT,traits,Distance> &x,
20 // const istream_iterator<T,charT,traits,Distance> &y);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
io.pass.cpp 15 // template <class charT, class traits,
17 // basic_ostream<charT, traits>&
18 // operator<<(basic_ostream<charT, traits>& os,
21 // template <class charT, class traits,
23 // basic_istream<charT, traits>&
24 // operator>>(basic_istream<charT, traits>& is,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.mers/
io.pass.cpp 17 // template <class charT, class traits,
21 // basic_ostream<charT, traits>&
22 // operator<<(basic_ostream<charT, traits>& os,
25 // template <class charT, class traits,
29 // basic_ostream<charT, traits>&
30 // operator>>(basic_istream<charT, traits>& is,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.sub/
io.pass.cpp 15 // template <class charT, class traits,
17 // basic_ostream<charT, traits>&
18 // operator<<(basic_ostream<charT, traits>& os,
21 // template <class charT, class traits,
23 // basic_istream<charT, traits>&
24 // operator>>(basic_istream<charT, traits>& is,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_op+/
char_string.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // basic_string<charT,traits,Allocator>
14 // operator+(charT lhs, const basic_string<charT,traits,Allocator>& rhs);
16 // template<class charT, class traits, class Allocator>
17 // basic_string<charT,traits,Allocator>&&
18 // operator+(charT lhs, basic_string<charT,traits,Allocator>&& rhs);
string_char.pass.cpp 12 // template<class charT, class traits, class Allocator>
13 // basic_string<charT,traits,Allocator>
14 // operator+(const basic_string<charT,traits,Allocator>& lhs, charT rhs);
16 // template<class charT, class traits, class Allocator>
17 // basic_string<charT,traits,Allocator>&&
18 // operator+(basic_string<charT,traits,Allocator>&& lhs, charT rhs);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
traits.hpp 37 * @file traits.hpp
45 #include <ext/pb_ds/detail/bin_search_tree_/traits.hpp>
80 #include <ext/pb_ds/detail/rb_tree_map_/traits.hpp>
81 #include <ext/pb_ds/detail/splay_tree_/traits.hpp>
82 #include <ext/pb_ds/detail/ov_tree_map_/traits.hpp>
83 #include <ext/pb_ds/detail/pat_trie_/traits.hpp>
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
traits.hpp 37 * @file traits.hpp
45 #include <ext/pb_ds/detail/bin_search_tree_/traits.hpp>
80 #include <ext/pb_ds/detail/rb_tree_map_/traits.hpp>
81 #include <ext/pb_ds/detail/splay_tree_/traits.hpp>
82 #include <ext/pb_ds/detail/ov_tree_map_/traits.hpp>
83 #include <ext/pb_ds/detail/pat_trie_/traits.hpp>
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
traits.hpp 37 * @file traits.hpp
45 #include <ext/pb_ds/detail/bin_search_tree_/traits.hpp>
80 #include <ext/pb_ds/detail/rb_tree_map_/traits.hpp>
81 #include <ext/pb_ds/detail/splay_tree_/traits.hpp>
82 #include <ext/pb_ds/detail/ov_tree_map_/traits.hpp>
83 #include <ext/pb_ds/detail/pat_trie_/traits.hpp>

Completed in 897 milliseconds

1 2 34 5 6 7 8 91011>>