HomeSort by relevance Sort by last modified time
    Searched refs:Reverse (Results 1 - 25 of 47) sorted by null

1 2

  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
cmap_int.h 13 enum MapType { None, Single, Range, Reverse };
  /external/pdfium/xfa/src/fxbarcode/common/
BC_CommonBitArray.h 24 void Reverse();
BC_CommonBitArray.cpp 100 void CBC_CommonBitArray::Reverse() {
  /external/eigen/Eigen/src/Core/
Reverse.h 17 /** \class Reverse
20 * \brief Expression of the reverse of a vector or matrix
22 * \param MatrixType the type of the object of which we are taking the reverse
24 * This class represents an expression of the reverse of a vector.
25 * It is the return type of MatrixBase::reverse() and VectorwiseOp::reverse()
28 * \sa MatrixBase::reverse(), VectorwiseOp::reverse()
34 struct traits<Reverse<MatrixType, Direction> >
70 template<typename MatrixType, int Direction> class Reverse
191 DenseBase<Derived>::reverse() function in class:Eigen::DenseBase
199 DenseBase<Derived>::reverse() const function in class:Eigen::DenseBase
    [all...]
  /external/eigen/test/
array_reverse.cpp 16 template<typename MatrixType> void reverse(const MatrixType& m) function
30 MatrixType m1_r = m1.reverse();
31 // Verify that MatrixBase::reverse() works
38 Reverse<MatrixType> m1_rd(m1);
39 // Verify that a Reverse default (in both directions) of an expression works
46 Reverse<MatrixType, BothDirections> m1_rb(m1);
47 // Verify that a Reverse in both directions of an expression works
54 Reverse<MatrixType, Vertical> m1_rv(m1);
55 // Verify that a Reverse in the vertical directions of an expression works
62 Reverse<MatrixType, Horizontal> m1_rh(m1)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
trie_policy.hpp 53 typename String::value_type Max_E_Val, bool Reverse, \
57 trie_string_access_traits<String, Min_E_Val,Max_E_Val,Reverse,_Alloc>
65 * @tparam Reverse Reverse iteration should be used.
72 bool Reverse = false,
84 reverse = Reverse enumerator in enum:__gnu_pbds::trie_string_access_traits::__anon38218
88 typedef typename detail::__conditional_type<Reverse, \
130 static detail::integral_constant<int, Reverse> s_rev_ind;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
trie_policy.hpp 53 typename String::value_type Max_E_Val, bool Reverse, \
57 trie_string_access_traits<String, Min_E_Val,Max_E_Val,Reverse,_Alloc>
65 * @tparam Reverse Reverse iteration should be used.
72 bool Reverse = false,
84 reverse = Reverse enumerator in enum:__gnu_pbds::trie_string_access_traits::__anon40292
88 typedef typename detail::__conditional_type<Reverse, \
130 static detail::integral_constant<int, Reverse> s_rev_ind;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
trie_policy.hpp 53 typename String::value_type Max_E_Val, bool Reverse, \
57 trie_string_access_traits<String, Min_E_Val,Max_E_Val,Reverse,_Alloc>
65 * @tparam Reverse Reverse iteration should be used.
72 bool Reverse = false,
84 reverse = Reverse enumerator in enum:__gnu_pbds::trie_string_access_traits::__anon40568
88 typedef typename detail::__conditional_type<Reverse, \
130 static detail::integral_constant<int, Reverse> s_rev_ind;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
trie_policy.hpp 53 typename String::value_type Max_E_Val, bool Reverse, \
57 trie_string_access_traits<String, Min_E_Val,Max_E_Val,Reverse,_Alloc>
65 * @tparam Reverse Reverse iteration should be used.
72 bool Reverse = false,
84 reverse = Reverse enumerator in enum:__gnu_pbds::trie_string_access_traits::__anon71201
88 typedef typename detail::__conditional_type<Reverse, \
130 static detail::integral_constant<int, Reverse> s_rev_ind;
  /external/eigen/blas/
level1_real_impl.h 38 else if(*incx<0 && *incy>0) return (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,*incy))).sum();
39 else if(*incx>0 && *incy<0) return (vector(x,*n,*incx).cwiseProduct(vector(y,*n,-*incy).reverse())).sum();
40 else if(*incx<0 && *incy<0) return (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,-*incy).reverse())).sum();
70 Reverse<StridedVectorType> rvx(vx);
71 Reverse<StridedVectorType> rvy(vy);
level1_cplx_impl.h 52 else if(*incx<0 && *incy>0) *res = (vector(x,*n,-*incx).reverse().dot(vector(y,*n,*incy)));
53 else if(*incx>0 && *incy<0) *res = (vector(x,*n,*incx).dot(vector(y,*n,-*incy).reverse()));
54 else if(*incx<0 && *incy<0) *res = (vector(x,*n,-*incx).reverse().dot(vector(y,*n,-*incy).reverse()));
71 else if(*incx<0 && *incy>0) *res = (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,*incy))).sum();
72 else if(*incx>0 && *incy<0) *res = (vector(x,*n,*incx).cwiseProduct(vector(y,*n,-*incy).reverse())).sum();
73 else if(*incx<0 && *incy<0) *res = (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,-*incy).reverse())).sum();
102 Reverse<StridedVectorType> rvx(vx);
103 Reverse<StridedVectorType> rvy(vy)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/trie_policy/
trie_string_access_traits_imp.hpp 43 detail::integral_constant<int, Reverse> PB_DS_CLASS_C_DEC::s_rev_ind;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/trie_policy/
trie_string_access_traits_imp.hpp 43 detail::integral_constant<int, Reverse> PB_DS_CLASS_C_DEC::s_rev_ind;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/trie_policy/
trie_string_access_traits_imp.hpp 43 detail::integral_constant<int, Reverse> PB_DS_CLASS_C_DEC::s_rev_ind;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/trie_policy/
trie_string_access_traits_imp.hpp 43 detail::integral_constant<int, Reverse> PB_DS_CLASS_C_DEC::s_rev_ind;
  /external/pdfium/third_party/lcms2-2.6/src/
cmspack.c 101 int Reverse = T_FLAVOR(info ->InputFormat);
116 v = Reverse ? REVERSE_FLAVOR_16(v) : v;
149 int Reverse = T_FLAVOR(info ->InputFormat);
162 wIn[index] = Reverse ? REVERSE_FLAVOR_16(v) : v;
479 int Reverse = T_FLAVOR(info ->InputFormat);
497 wIn[index] = Reverse ? REVERSE_FLAVOR_16(v) : v;
527 int Reverse= T_FLAVOR(info ->InputFormat);
544 wIn[index] = Reverse ? REVERSE_FLAVOR_16(v) : v;
925 int Reverse = T_FLAVOR(info ->InputFormat);
950 if (Reverse)
    [all...]
  /external/ceres-solver/include/ceres/
ordered_groups.h 122 // Reverse the order of the groups in place.
123 void Reverse() {
  /external/llvm/lib/TableGen/
SetTheory.cpp 115 const bool Reverse;
117 RotOp(bool Rev) : Reverse(Rev) {}
121 if (Reverse)
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDReader.cpp 80 row->Reverse();
  /frameworks/base/libs/hwui/
Animator.h 66 ANDROID_API void reverse();
106 // Note that if the animation is in Running/Reversing state, calling start or reverse again
153 Reverse,
Animator.cpp 108 void BaseRenderNodeAnimator::reverse() { function in class:android::uirenderer::BaseRenderNodeAnimator
110 mStagingRequests.push_back(Request::Reverse);
127 case Request::Reverse:
195 // Reverse is not supported for animations with a start delay, so here we
  /external/ceres-solver/internal/ceres/
coordinate_descent_minimizer.cc 265 ordering->Reverse();
ordered_groups_test.cc 151 ordering.Reverse();
  /external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/
encoders.py 274 """Reverse labels on the y-axis in horizontal bar charts.
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_vector.i 299 void Reverse() {
300 std::reverse($self->begin(), $self->end());
302 void Reverse(int index, int count) throw (std::out_of_range, std::invalid_argument) {
309 std::reverse($self->begin()+index, $self->begin()+index+count);

Completed in 470 milliseconds

1 2