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

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
meta.h 72 // AddConst, MaybeAddConst, RemoveConst
75 template <typename T> struct RemoveConst { typedef T Type; };
76 template <typename T> struct RemoveConst<const T> { typedef T Type; };
90 : AndExpr<IsSame<typename RemoveConst<CT>::Type, typename RemoveConst<T>::Type>,
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h 793 struct RemoveConst { typedef T type; }; // NOLINT
795 struct RemoveConst<const T> { typedef T type; }; // NOLINT
801 struct RemoveConst<const T[N]> {
802 typedef typename RemoveConst<T>::type type[N];
810 struct RemoveConst<T[N]> {
811 typedef typename RemoveConst<T>::type type[N];
815 // A handy wrapper around RemoveConst that works when the argument
818 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 719 struct RemoveConst { typedef T type; }; // NOLINT
721 struct RemoveConst<const T> { typedef T type; }; // NOLINT
727 struct RemoveConst<const T[N]> {
728 typedef typename RemoveConst<T>::type type[N];
736 struct RemoveConst<T[N]> {
737 typedef typename RemoveConst<T>::type type[N];
741 // A handy wrapper around RemoveConst that works when the argument
744 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h 719 struct RemoveConst { typedef T type; }; // NOLINT
721 struct RemoveConst<const T> { typedef T type; }; // NOLINT
727 struct RemoveConst<const T[N]> {
728 typedef typename RemoveConst<T>::type type[N];
736 struct RemoveConst<T[N]> {
737 typedef typename RemoveConst<T>::type type[N];
741 // A handy wrapper around RemoveConst that works when the argument
744 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 708 struct RemoveConst { typedef T type; }; // NOLINT
710 struct RemoveConst<const T> { typedef T type; }; // NOLINT
716 struct RemoveConst<const T[N]> {
717 typedef typename RemoveConst<T>::type type[N];
725 struct RemoveConst<T[N]> {
726 typedef typename RemoveConst<T>::type type[N];
730 // A handy wrapper around RemoveConst that works when the argument
733 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 708 struct RemoveConst { typedef T type; }; // NOLINT
710 struct RemoveConst<const T> { typedef T type; }; // NOLINT
716 struct RemoveConst<const T[N]> {
717 typedef typename RemoveConst<T>::type type[N];
725 struct RemoveConst<T[N]> {
726 typedef typename RemoveConst<T>::type type[N];
730 // A handy wrapper around RemoveConst that works when the argument
733 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 822 struct RemoveConst { typedef T type; }; // NOLINT
824 struct RemoveConst<const T> { typedef T type; }; // NOLINT
833 struct RemoveConst<const T[N]> {
834 typedef typename RemoveConst<T>::type type[N];
838 // A handy wrapper around RemoveConst that works when the argument
841 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 813 struct RemoveConst { typedef T type; }; // NOLINT
815 struct RemoveConst<const T> { typedef T type; }; // NOLINT
824 struct RemoveConst<const T[N]> {
825 typedef typename RemoveConst<T>::type type[N];
829 // A handy wrapper around RemoveConst that works when the argument
832 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-internal.h 796 struct RemoveConst { typedef T type; }; // NOLINT
798 struct RemoveConst<const T> { typedef T type; }; // NOLINT
804 struct RemoveConst<const T[N]> {
805 typedef typename RemoveConst<T>::type type[N];
813 struct RemoveConst<T[N]> {
814 typedef typename RemoveConst<T>::type type[N];
818 // A handy wrapper around RemoveConst that works when the argument
821 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-internal.h 795 struct RemoveConst { typedef T type; }; // NOLINT
797 struct RemoveConst<const T> { typedef T type; }; // NOLINT
803 struct RemoveConst<const T[N]> {
804 typedef typename RemoveConst<T>::type type[N];
812 struct RemoveConst<T[N]> {
813 typedef typename RemoveConst<T>::type type[N];
817 // A handy wrapper around RemoveConst that works when the argument
820 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-internal.h 795 struct RemoveConst { typedef T type; }; // NOLINT
797 struct RemoveConst<const T> { typedef T type; }; // NOLINT
803 struct RemoveConst<const T[N]> {
804 typedef typename RemoveConst<T>::type type[N];
812 struct RemoveConst<T[N]> {
813 typedef typename RemoveConst<T>::type type[N];
817 // A handy wrapper around RemoveConst that works when the argument
820 typename ::testing::internal::RemoveConst<T>::type
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
map_util.h 48 // Local implementation of RemoveConst to avoid including base/type_traits.h.
49 template <class T> struct RemoveConst { typedef T type; };
50 template <class T> struct RemoveConst<const T> : RemoveConst<T> {};
  /external/google-breakpad/src/testing/gtest/test/
gtest_unittest.cc 181 using testing::internal::RemoveConst;
    [all...]
  /external/googletest/googletest/test/
gtest_unittest.cc 272 using testing::internal::RemoveConst;
    [all...]
  /external/v8/testing/gtest/test/
gtest_unittest.cc 272 using testing::internal::RemoveConst;
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_unittest.cc 270 using testing::internal::RemoveConst;
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest_unittest.cc 270 using testing::internal::RemoveConst;
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest_unittest.cc 270 using testing::internal::RemoveConst;
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
document.h     [all...]
pointer.h 231 RAPIDJSON_DISABLEIF_RETURN((internal::NotExpr<internal::IsSame<typename internal::RemoveConst<T>::Type, Ch> >), (GenericPointer))
    [all...]
  /external/fmtlib/test/gtest/
gtest.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]

Completed in 2078 milliseconds