/external/google-breakpad/src/testing/test/ |
D | gmock-actions_test.cc | 59 using testing::ByRef; 1231 ByRef(s1); in TEST() 1236 ref_wrapper = ByRef(s2); in TEST() 1241 ByRef(s1); in TEST() 1253 const int& const_ref = ByRef(n); in TEST() 1262 int& ref = ByRef(n); in TEST() 1266 const int& const_ref = ByRef(n); in TEST() 1273 const int& r1 = ByRef<const int>(n); in TEST() 1280 Derived& r2 = ByRef<Derived>(d); in TEST() 1283 const Derived& r3 = ByRef<const Derived>(d); in TEST() [all …]
|
D | gmock-generated-actions_test.cc | 56 using testing::ByRef; 275 InvokeArgument<0>(ByRef(g_double)); in TEST() 280 a = InvokeArgument<0>(ByRef(x)); // This calls ByRef() on a non-const. in TEST()
|
/external/zlib/src/old/ |
D | visual-basic.txt | 86 Private Declare Function lngfncCpr Lib "zlib.dll" Alias "compress2" (ByRef 87 dest As Any, ByRef destLen As Any, ByRef src As Any, ByVal srcLen As Long, 89 Private Declare Function lngfncUcp Lib "zlib.dll" Alias "uncompress" (ByRef 90 dest As Any, ByRef destLen As Any, ByRef src As Any, ByVal srcLen As Long)
|
/external/libchrome/mojo/core/ |
D | handle_table_unittest.cc | 22 using testing::ByRef; 49 EXPECT_THAT(mad->entries(), Contains(Eq(ByRef(expected)))); in CheckNameAndValue()
|
/external/googletest/googlemock/test/ |
D | gmock-actions_test.cc | 62 using testing::ByRef; 1173 auto ref_wrapper = ByRef(s1); in TEST() 1178 ref_wrapper = ByRef(s2); in TEST() 1182 auto ref_wrapper1 = ByRef(s1); in TEST() 1194 const int& const_ref = ByRef(n); in TEST() 1203 int& ref = ByRef(n); in TEST() 1207 const int& const_ref = ByRef(n); in TEST() 1214 const int& r1 = ByRef<const int>(n); in TEST() 1221 Derived& r2 = ByRef<Derived>(d); in TEST() 1224 const Derived& r3 = ByRef<const Derived>(d); in TEST() [all …]
|
D | gmock-generated-actions_test.cc | 52 using testing::ByRef; 245 InvokeArgument<0>(ByRef(g_double)); in TEST() 250 a = InvokeArgument<0>(ByRef(x)); // This calls ByRef() on a non-const. in TEST()
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-tuple.h.pump | 91 // ByRef<T>::type is T if T is a reference; otherwise it's const T&. 93 struct ByRef { typedef const T& type; }; // NOLINT 95 struct ByRef<T&> { typedef T& type; }; // NOLINT 97 // A handy wrapper for ByRef. 98 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
D | gtest-tuple.h | 119 struct ByRef { typedef const T& type; }; // NOLINT struct 121 struct ByRef<T&> { typedef T& type; }; // NOLINT 124 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-tuple.h.pump | 99 // ByRef<T>::type is T if T is a reference; otherwise it's const T&. 101 struct ByRef { typedef const T& type; }; // NOLINT 103 struct ByRef<T&> { typedef T& type; }; // NOLINT 105 // A handy wrapper for ByRef. 106 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
D | gtest-tuple.h | 127 struct ByRef { typedef const T& type; }; // NOLINT argument 129 struct ByRef<T&> { typedef T& type; }; // NOLINT 132 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/ |
D | gtest-tuple.h.pump | 99 // ByRef<T>::type is T if T is a reference; otherwise it's const T&. 101 struct ByRef { typedef const T& type; }; // NOLINT 103 struct ByRef<T&> { typedef T& type; }; // NOLINT 105 // A handy wrapper for ByRef. 106 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
D | gtest-tuple.h | 127 struct ByRef { typedef const T& type; }; // NOLINT argument 129 struct ByRef<T&> { typedef T& type; }; // NOLINT 132 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-tuple.h.pump | 100 // ByRef<T>::type is T if T is a reference; otherwise it's const T&. 102 struct ByRef { typedef const T& type; }; // NOLINT 104 struct ByRef<T&> { typedef T& type; }; // NOLINT 106 // A handy wrapper for ByRef. 107 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
D | gtest-tuple.h | 128 struct ByRef { typedef const T& type; }; // NOLINT struct 130 struct ByRef<T&> { typedef T& type; }; // NOLINT 133 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
/external/clang/lib/CodeGen/ |
D | ABIInfo.h | 116 getNaturalAlignIndirect(QualType Ty, bool ByRef = true,
|
/external/clang/include/clang/Sema/ |
D | ScopeInfo.h | 451 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, in Capture() argument 456 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef in Capture()
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-generated-actions.h.pump | 96 // ByRef(a2) instead of a2 in the above expression. 763 // pass an argument by reference, wrap it inside ByRef(). For 766 // InvokeArgument<1>(5, string("Hello"), ByRef(foo)) 771 // 2. If the callable takes an argument by reference but ByRef() is
|
D | gmock-actions.h | 1072 inline internal::ReferenceWrapper<T> ByRef(T& l_value) { // NOLINT in ByRef() function
|
/external/googletest/googlemock/docs/ |
D | CheatSheet.md | 191 doesn't have a public copy constructor, try wrap it in `ByRef()`, 192 e.g. `Eq(ByRef(non_copyable_value))`. If you do that, make sure 425 In `InvokeArgument<N>(...)`, if an argument needs to be passed by reference, wrap it inside `ByRef(… 427 InvokeArgument<2>(5, string("Hi"), ByRef(foo))
|
D | CookBook.md | 995 using ::testing::ByRef; 999 EXPECT_CALL(mock_obj, Foo(Eq(ByRef(bar)))); 1002 EXPECT_CALL(mock_obj, Foo(Lt(ByRef(bar)))); 1532 You may be tempted to try `ByRef()`: 1535 using testing::ByRef; 1546 .WillRepeatedly(Return(ByRef(x))); 1563 some temporary objects.) As a result, `ByRef(x)` is converted to an 1565 and `Return(ByRef(x))` will always return 0. 1951 wrap it inside `ByRef()`: 1958 using ::testing::ByRef; [all …]
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-tuple.h | 117 struct ByRef { typedef const T& type; }; // NOLINT argument 119 struct ByRef<T&> { typedef T& type; }; // NOLINT 122 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-generated-actions.h.pump | 537 // pass an argument by reference, wrap it inside ByRef(). For 540 // InvokeArgument<1>(5, string("Hello"), ByRef(foo)) 545 // 2. If the callable takes an argument by reference but ByRef() is
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-tuple.h | 127 struct ByRef { typedef const T& type; }; // NOLINT argument 129 struct ByRef<T&> { typedef T& type; }; // NOLINT 132 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-tuple.h | 117 struct ByRef { typedef const T& type; }; // NOLINT argument 119 struct ByRef<T&> { typedef T& type; }; // NOLINT 122 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
|
/external/clang/lib/Sema/ |
D | SemaLambda.cpp | 706 bool ByRef, in buildLambdaInitCaptureInitialization() argument 715 if (ByRef) { in buildLambdaInitCaptureInitialization()
|