Home
last modified time | relevance | path

Searched refs:ByRef (Results 1 – 25 of 29) sorted by relevance

12

/external/zlib/src/old/
Dvisual-basic.txt86 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/chromium_org/media/base/
Dgmock_callback_support_unittest.cc12 using testing::ByRef;
67 .WillOnce(RunCallback<0>(ByRef(src), &dst)); in TEST()
/external/chromium_org/chromeos/dbus/
Dshill_ipconfig_client_unittest.cc15 using testing::ByRef;
62 ValueEq(ByRef(kConnected)))).Times(1); in TEST_F()
Dshill_device_client_unittest.cc16 using testing::ByRef;
90 ValueEq(ByRef(value)))).Times(1); in TEST_F()
107 ValueEq(ByRef(value)))).Times(0); in TEST_F()
Dshill_service_client_unittest.cc16 using testing::ByRef;
65 ValueEq(ByRef(value)))).Times(1); in TEST_F()
Dshill_manager_client_unittest.cc16 using testing::ByRef;
89 ValueEq(ByRef(kOfflineMode)))).Times(1); in TEST_F()
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-tuple.h.pump91 // 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
Dgtest-tuple.h117 struct ByRef { typedef const T& type; }; // NOLINT struct
119 struct ByRef<T&> { typedef T& type; }; // NOLINT
122 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
/external/protobuf/gtest/include/gtest/internal/
Dgtest-tuple.h.pump90 // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
92 struct ByRef { typedef const T& type; }; // NOLINT
94 struct ByRef<T&> { typedef T& type; }; // NOLINT
96 // A handy wrapper for ByRef.
97 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
Dgtest-tuple.h116 struct ByRef { typedef const T& type; }; // NOLINT argument
118 struct ByRef<T&> { typedef T& type; }; // NOLINT
121 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
Dgtest-tuple.h.pump91 // 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
Dgtest-tuple.h117 struct ByRef { typedef const T& type; }; // NOLINT struct
119 struct ByRef<T&> { typedef T& type; }; // NOLINT
122 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
/external/gtest/include/gtest/internal/
Dgtest-tuple.h.pump91 // 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
Dgtest-tuple.h119 struct ByRef { typedef const T& type; }; // NOLINT argument
121 struct ByRef<T&> { typedef T& type; }; // NOLINT
124 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
/external/chromium_org/testing/gtest/include/gtest/internal/
Dgtest-tuple.h.pump99 // 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
Dgtest-tuple.h127 struct ByRef { typedef const T& type; }; // NOLINT struct
129 struct ByRef<T&> { typedef T& type; }; // NOLINT
132 #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
/external/chromium_org/chrome/browser/download/
Ddownload_ui_controller_unittest.cc170 testing::ByRef(download_history_manager_observer_)))) in SetUp()
186 RemoveObserver(testing::Eq(testing::ByRef(manager_observer_)))) in SetUp()
Ddownload_danger_prompt_browsertest.cc21 using ::testing::ByRef;
/external/clang/include/clang/Sema/
DScopeInfo.h397 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, in Capture() argument
402 ByRef ? Cap_ByRef : Cap_ByCopy), in Capture()
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-tuple.h117 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/chromium_org/components/leveldb_proto/
Dproto_database_impl_unittest.cc168 .WillOnce(VerifyLoadEntries(testing::ByRef(model))); in TEST_F()
/external/clang/lib/Sema/
DSemaLambda.cpp697 bool ByRef, in performLambdaInitCaptureInitialization() argument
713 if (ByRef) { in performLambdaInitCaptureInitialization()
DSemaExpr.cpp11723 bool ByRef = false; in captureInBlock() local
11749 ByRef = true; in captureInBlock()
11797 BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, in captureInBlock()
11816 bool ByRef = true; in captureInCapturedRegion() local
11842 RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToEnclosingLocal, Loc, in captureInCapturedRegion()
11986 bool ByRef = false; in captureInLambda() local
11988 ByRef = (Kind == Sema::TryCapture_ExplicitByRef); in captureInLambda()
11990 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref); in captureInLambda()
11994 if (ByRef) { in captureInLambda()
12059 if (ByRef) in captureInLambda()
[all …]
/external/clang/lib/CodeGen/
DCodeGenFunction.h1144 llvm::Value *GetAddrOfBlockDecl(const VarDecl *var, bool ByRef);
/external/clang/include/clang/Basic/
DAttr.td428 let Args = [EnumArgument<"Type", "BlockType", ["byref"], ["ByRef"]>];

12