Home
last modified time | relevance | path

Searched refs:CopyArray (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp533 if (!LookupInterface(ValuePrintingInfo[CopyArray], in FindRuntimeInterface()
534 MagicRuntimeInterface[CopyArray])) in FindRuntimeInterface()
585 case Interpreter::InterfaceKind::CopyArray: { in getCall()
604 if (Kind == Interpreter::InterfaceKind::CopyArray) { in getCall()
613 .getValuePrintingInfo()[Interpreter::InterfaceKind::CopyArray], in getCall()
655 return Interpreter::InterfaceKind::CopyArray; in VisitConstantArrayType()
/freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1046 void CopyArray(const T* from, size_t size, U* to);
1050 inline void CopyArray(const T& from, U* to) {
1056 inline void CopyArray(const T (&from)[N], U (*to)[N]) {
1057 internal::CopyArray(from, N, *to);
1064 void CopyArray(const T* from, size_t size, U* to) {
1066 internal::CopyArray(from[i], to + i);
1128 CopyArray(array, a_size, copy);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h132 enum InterfaceKind { NoAlloc, WithAlloc, CopyArray, NewTag }; enumerator
/freebsd-14.2/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc239 using testing::internal::CopyArray;
7383 CopyArray('a', &n); in TEST()
7391 CopyArray(a, &b); in TEST()
7396 CopyArray(a, 3, c); in TEST()
7404 CopyArray(a, &b); in TEST()
7409 CopyArray(a, 2, c); in TEST()