Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1040 void CopyArray(const T* from, size_t size, U* to);
1044 inline void CopyArray(const T& from, U* to) {
1050 inline void CopyArray(const T (&from)[N], U (*to)[N]) {
1051 internal::CopyArray(from, N, *to);
1058 void CopyArray(const T* from, size_t size, U* to) {
1060 internal::CopyArray(from[i], to + i);
1122 CopyArray(array, a_size, copy);
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp611 if (!LookupInterface(ValuePrintingInfo[CopyArray], in FindRuntimeInterface()
612 MagicRuntimeInterface[CopyArray])) in FindRuntimeInterface()
648 return Interpreter::InterfaceKind::CopyArray; in VisitConstantArrayType()
758 case Interpreter::InterfaceKind::CopyArray: { in transformForValuePrinting()
779 if (Kind == Interpreter::InterfaceKind::CopyArray) { in transformForValuePrinting()
788 .getValuePrintingInfo()[Interpreter::InterfaceKind::CopyArray], in transformForValuePrinting()
/freebsd/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h170 enum InterfaceKind { NoAlloc, WithAlloc, CopyArray, NewTag }; enumerator
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc239 using testing::internal::CopyArray;
7391 CopyArray('a', &n); in TEST()
7399 CopyArray(a, &b); in TEST()
7404 CopyArray(a, 3, c); in TEST()
7412 CopyArray(a, &b); in TEST()
7417 CopyArray(a, 2, c); in TEST()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DOpcodes.td362 def CopyArray : Opcode {
H A DInterp.h2437 inline bool CopyArray(InterpState &S, CodePtr OpPC, uint32_t SrcIndex, uint32_t DestIndex, uint32_t… in CopyArray() function