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

  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Arguments.h 59 typedef Arguments1<typename WTF::RemoveConst<typename WTF::RemoveReference<T1>::Type>::Type> ValueType;
94 typedef Arguments2<typename WTF::RemoveConst<typename WTF::RemoveReference<T1>::Type>::Type,
95 typename WTF::RemoveConst<typename WTF::RemoveReference<T2>::Type>::Type> ValueType;
135 typedef Arguments3<typename WTF::RemoveConst<typename WTF::RemoveReference<T1>::Type>::Type,
136 typename WTF::RemoveConst<typename WTF::RemoveReference<T2>::Type>::Type,
137 typename WTF::RemoveConst<typename WTF::RemoveReference<T3>::Type>::Type> ValueType;
177 typedef Arguments4<typename WTF::RemoveConst<typename WTF::RemoveReference<T1>::Type>::Type,
178 typename WTF::RemoveConst<typename WTF::RemoveReference<T2>::Type>::Type,
179 typename WTF::RemoveConst<typename WTF::RemoveReference<T3>::Type>::Type,
180 typename WTF::RemoveConst<typename WTF::RemoveReference<T4>::Type>::Type> ValueType
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
TypeTraits.cpp 139 COMPILE_ASSERT((IsSameType<int, RemoveReference<int>::Type>::value), WTF_Test_RemoveReference_int);
140 COMPILE_ASSERT((IsSameType<int, RemoveReference<int&>::Type>::value), WTF_Test_RemoveReference_int_reference);
TypeTraits.h 42 // RemoveReference<T>::Type
174 template <typename T> struct RemoveReference {
178 template <typename T> struct RemoveReference<T&> {
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 774 struct RemoveReference { typedef T type; }; // NOLINT
776 struct RemoveReference<T&> { typedef T type; }; // NOLINT
778 // A handy wrapper around RemoveReference that works when the argument
781 typename ::testing::internal::RemoveReference<T>::type
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 780 struct RemoveReference { typedef T type; }; // NOLINT
782 struct RemoveReference<T&> { typedef T type; }; // NOLINT
784 // A handy wrapper around RemoveReference that works when the argument
787 typename ::testing::internal::RemoveReference<T>::type
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 799 struct RemoveReference { typedef T type; }; // NOLINT
801 struct RemoveReference<T&> { typedef T type; }; // NOLINT
803 // A handy wrapper around RemoveReference that works when the argument
806 typename ::testing::internal::RemoveReference<T>::type
    [all...]
  /external/chromium/testing/gtest/test/
gtest_unittest.cc 178 using testing::internal::RemoveReference;
    [all...]
  /external/gtest/test/
gtest_unittest.cc 178 using testing::internal::RemoveReference;
    [all...]

Completed in 229 milliseconds