HomeSort by relevance Sort by last modified time
    Searched refs:ByRef (Results 1 - 25 of 60) sorted by null

1 2 3

  /system/tpm/tpm_manager/server/
mock_local_data_store.cc 20 using testing::ByRef;
30 .WillByDefault(DoAll(SetArgPointee<0>(ByRef(fake_)), Return(true)));
  /external/clang/lib/CodeGen/
ABIInfo.h 116 getNaturalAlignIndirect(QualType Ty, bool ByRef = true,
  /external/google-breakpad/src/testing/test/
gmock-actions_test.cc 59 using testing::ByRef;
    [all...]
gmock-generated-actions_test.cc 56 using testing::ByRef;
271 // Tests using InvokeArgument with ByRef() and a function that takes a
275 InvokeArgument<0>(ByRef(g_double));
276 // The above line calls ByRef() on a const value.
280 a = InvokeArgument<0>(ByRef(x)); // This calls ByRef() on a non-const.
    [all...]
  /external/googletest/googlemock/test/
gmock-actions_test.cc 53 using testing::ByRef;
    [all...]
gmock-generated-actions_test.cc 56 using testing::ByRef;
270 // Tests using InvokeArgument with ByRef() and a function that takes a
274 InvokeArgument<0>(ByRef(g_double));
275 // The above line calls ByRef() on a const value.
279 a = InvokeArgument<0>(ByRef(x)); // This calls ByRef() on a non-const.
    [all...]
  /external/v8/testing/gmock/test/
gmock-actions_test.cc 53 using testing::ByRef;
    [all...]
gmock-generated-actions_test.cc 56 using testing::ByRef;
271 // Tests using InvokeArgument with ByRef() and a function that takes a
275 InvokeArgument<0>(ByRef(g_double));
276 // The above line calls ByRef() on a const value.
280 a = InvokeArgument<0>(ByRef(x)); // This calls ByRef() on a non-const.
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 451 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
456 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 516 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
521 Cpy, !Var ? Cap_VLA : Block ? Cap_Block : ByRef ? Cap_ByRef
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-tuple.h 117 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
119 struct ByRef { typedef const T& type; }; // NOLINT
121 struct ByRef<T&> { typedef T& type; }; // NOLINT
123 // A handy wrapper for ByRef.
124 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
  /external/googletest/googletest/include/gtest/internal/
gtest-tuple.h 125 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
127 struct ByRef { typedef const T& type; }; // NOLINT
129 struct ByRef<T&> { typedef T& type; }; // NOLINT
131 // A handy wrapper for ByRef.
132 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-tuple.h 125 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
127 struct ByRef { typedef const T& type; }; // NOLINT
129 struct ByRef<T&> { typedef T& type; }; // NOLINT
131 // A handy wrapper for ByRef.
132 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-tuple.h 115 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
117 struct ByRef { typedef const T& type; }; // NOLINT
119 struct ByRef<T&> { typedef T& type; }; // NOLINT
121 // A handy wrapper for ByRef.
122 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-tuple.h 117 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
119 struct ByRef { typedef const T& type; }; // NOLINT
121 struct ByRef<T&> { typedef T& type; }; // NOLINT
123 // A handy wrapper for ByRef.
124 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
  /external/protobuf/gtest/include/gtest/internal/
gtest-tuple.h 115 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
117 struct ByRef { typedef const T& type; }; // NOLINT
119 struct ByRef<T&> { typedef T& type; }; // NOLINT
121 // A handy wrapper for ByRef.
122 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-tuple.h 115 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
117 struct ByRef { typedef const T& type; }; // NOLINT
119 struct ByRef<T&> { typedef T& type; }; // NOLINT
121 // A handy wrapper for ByRef.
122 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
  /external/v8/testing/gtest/include/gtest/internal/
gtest-tuple.h 125 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
127 struct ByRef { typedef const T& type; }; // NOLINT
129 struct ByRef<T&> { typedef T& type; }; // NOLINT
131 // A handy wrapper for ByRef.
132 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type

Completed in 1316 milliseconds

1 2 3