Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreterValuePrinter.cpp55 enum InterfaceKind { NoAlloc, WithAlloc, CopyArray, NewTag }; enumerator
81 return InterfaceKind::CopyArray; in VisitConstantArrayType()
192 LookupInterface(ValuePrintingInfo[CopyArray], Builtin[CopyArray])) in ExtractValueFromExpr()
237 case InterfaceKind::CopyArray: { in ExtractValueFromExpr()
255 if (Kind == InterfaceKind::CopyArray) { in ExtractValueFromExpr()
262 S.ActOnCallExpr(Scope, ValuePrintingInfo[InterfaceKind::CopyArray], in ExtractValueFromExpr()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1027 void CopyArray(const T* from, size_t size, U* to);
1031 inline void CopyArray(const T& from, U* to) {
1037 inline void CopyArray(const T (&from)[N], U (*to)[N]) {
1038 internal::CopyArray(from, N, *to);
1045 void CopyArray(const T* from, size_t size, U* to) {
1047 internal::CopyArray(from[i], to + i);
1109 CopyArray(array, a_size, copy);
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc239 using testing::internal::CopyArray;
7439 CopyArray('a', &n); in TEST()
7447 CopyArray(a, &b); in TEST()
7452 CopyArray(a, 3, c); in TEST()
7460 CopyArray(a, &b); in TEST()
7465 CopyArray(a, 2, c); in TEST()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DOpcodes.td381 def CopyArray : Opcode {
H A DInterp.h3004 inline bool CopyArray(InterpState &S, CodePtr OpPC, uint32_t SrcIndex, in CopyArray() function