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

  /external/chromium_org/third_party/WebKit/Source/wtf/
TypeTraits.h 39 // RemoveConst<T>::Type
232 template <typename T> struct RemoveConst {
236 template <typename T> struct RemoveConst<const T> {
249 typedef typename RemoveVolatile<typename RemoveConst<T>::Type>::Type Type;
TypeTraits.cpp 130 COMPILE_ASSERT((IsSameType<bool, RemoveConst<const bool>::Type>::value), WTF_test_RemoveConst_const_bool);
131 COMPILE_ASSERT((!IsSameType<bool, RemoveConst<volatile bool>::Type>::value), WTF_test_RemoveConst_volatile_bool);
  /external/chromium_org/testing/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/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...]
  /ndk/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/chromium_org/third_party/WebKit/Source/platform/heap/
Handle.h 74 typedef typename WTF::RemoveConst<T>::Type NonConstType;
832 static const bool notRefCountedGarbageCollected = !WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCountedGarbageCollected>::value;
833 static const bool notRefCounted = !WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCounted>::value;
841 static const bool isRefCountedGarbageCollected = WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCountedGarbageCollected>::value;
848 static const bool isThreadSafeRefCountedGarbageCollected = WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, ThreadSafeRefCountedGarbageCollected>::value;
855 static const bool notRefCountedGarbageCollected = !WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCountedGarbageCollected>::value;
856 static const bool notRefCounted = !WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCounted>::value;
864 static const bool isRefCountedGarbageCollected = WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCountedGarbageCollected>::value;
871 static const bool notRefCountedGarbageCollected = !WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCountedGarbageCollected>::value;
872 static const bool notRefCounted = !WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, RefCounted>::value
    [all...]
Visitor.h 133 static const bool nonTrivialFinalizer = WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, GarbageCollectedFinalized>::value;
143 template<typename T, bool = WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, GarbageCollected>::value> class NeedsAdjustAndMark;
154 static const bool value = WTF::IsSubclass<typename WTF::RemoveConst<T>::Type, GarbageCollectedMixin>::value;
691 typedef WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<TYPE>::Type, WebCore::GarbageCollected> IsSubclassOfGarbageCollected; \
736 template<typename T, bool = WTF::IsSubclassOfTemplate<typename WTF::RemoveConst<T>::Type, GarbageCollected>::value> struct GetGarbageCollectedBase;
ThreadState.h 85 template<typename T, bool derivesNode = WTF::IsSubclass<typename WTF::RemoveConst<T>::Type, Node>::value> struct DefaultThreadingTrait;
  /external/chromium_org/third_party/mesa/src/src/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/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/mesa3d/src/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/chromium_org/testing/gtest/test/
gtest_unittest.cc 270 using testing::internal::RemoveConst;
    [all...]
  /external/gtest/test/
gtest_unittest.cc 270 using testing::internal::RemoveConst;
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_unittest.cc 270 using testing::internal::RemoveConst;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]

Completed in 4741 milliseconds