HomeSort by relevance Sort by last modified time
    Searched defs:RemoveConst (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
TypeTraits.h 43 // RemoveConst<T>::Type
146 template <typename T> struct RemoveConst {
150 template <typename T> struct RemoveConst<const T> {
163 typedef typename RemoveVolatile<typename RemoveConst<T>::Type>::Type Type;
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 787 struct RemoveConst { typedef T type; }; // NOLINT
789 struct RemoveConst<const T> { typedef T type; }; // NOLINT
797 struct RemoveConst<T[N]> {
798 typedef typename RemoveConst<T>::type type[N];
802 // A handy wrapper around RemoveConst that works when the argument
805 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 793 struct RemoveConst { typedef T type; }; // NOLINT
795 struct RemoveConst<const T> { typedef T type; }; // NOLINT
804 struct RemoveConst<const T[N]> {
805 typedef typename RemoveConst<T>::type type[N];
809 // A handy wrapper around RemoveConst that works when the argument
812 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-internal.h 793 struct RemoveConst { typedef T type; }; // NOLINT
795 struct RemoveConst<const T> { typedef T type; }; // NOLINT
804 struct RemoveConst<const T[N]> {
805 typedef typename RemoveConst<T>::type type[N];
809 // A handy wrapper around RemoveConst that works when the argument
812 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 821 struct RemoveConst { typedef T type; }; // NOLINT
823 struct RemoveConst<const T> { typedef T type; }; // NOLINT
832 struct RemoveConst<const T[N]> {
833 typedef typename RemoveConst<T>::type type[N];
837 // A handy wrapper around RemoveConst that works when the argument
840 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/ceres-solver/internal/ceres/gtest/
gtest.h     [all...]

Completed in 368 milliseconds