Home
last modified time | relevance | path

Searched refs:copyable (Results 1 – 22 of 22) sorted by relevance

/external/clang/test/SemaObjCXX/
Dobjc-boxed-expressions-nsvalue.mm87 …id ntcErr = @(ntc); // expected-error{{non-trivially copyable type 'NonTriviallyCopyable' cannot b…
105 template <class T> id box(T value) { return @(value); } // expected-error{{non-trivially copyable t…
112 …iallyCopyable ntc) { return @(ntc); } // expected-error{{non-trivially copyable type 'NonTriviall…
/external/tensorflow/tensorflow/core/lib/gtl/
Doptional.h231 enum class copy_traits { copyable = 0, movable = 1, non_movable = 2 }; enumerator
238 class optional_ctor_base<copy_traits::copyable> {
272 class optional_assign_base<copy_traits::copyable> {
304 ? copy_traits::copyable in get_ctor_copy_traits()
313 ? copy_traits::copyable in get_assign_copy_traits()
/external/swiftshader/third_party/subzero/runtime/
Dszrt_asan.c243 size_t copyable = (size < old_size) ? size : old_size; in __asan_realloc() local
244 memcpy(new_alloc, ptr, copyable); in __asan_realloc()
/external/python/cpython2/Modules/
Ditertoolsmodule.c644 PyObject *it, *iterable, *copyable, *result; in tee() local
663 copyable = tee_fromiterable(it); in tee()
665 if (copyable == NULL) { in tee()
670 copyable = it; in tee()
671 PyTuple_SET_ITEM(result, 0, copyable); in tee()
673 copyable = PyObject_CallMethod(copyable, "__copy__", NULL); in tee()
674 if (copyable == NULL) { in tee()
678 PyTuple_SET_ITEM(result, i, copyable); in tee()
/external/python/cpython3/Modules/
Ditertoolsmodule.c809 PyObject *it, *iterable, *copyable, *result; in tee() local
829 copyable = tee_fromiterable(it); in tee()
831 if (copyable == NULL) { in tee()
836 copyable = it; in tee()
837 PyTuple_SET_ITEM(result, 0, copyable); in tee()
840 copyable = _PyObject_CallMethodId(copyable, &PyId___copy__, NULL); in tee()
841 if (copyable == NULL) { in tee()
845 PyTuple_SET_ITEM(result, i, copyable); in tee()
/external/clang/include/clang/Basic/
DDiagnosticFrontendKinds.td71 "%select{is not C++|is packed|is a union|is trivially copyable|"
DAttrDocs.td664 can only be placed on a declaration of a trivially-copyable struct or union:
DDiagnosticSemaKinds.td2270 "non-trivially copyable type %0 cannot be used in a boxed expression">;
5057 "%1 %select{||||||which is not trivially copyable}0">;
6551 "trivially-copyable type (%0 invalid)">;
/external/flatbuffers/src/
Didl_gen_cpp.cpp1132 bool copyable = true; in GenUnionPost() local
1140 copyable = false; in GenUnionPost()
1145 if (copyable) { in GenUnionPost()
/external/protobuf/gtest/include/gtest/
Dgtest-param-test.h.pump54 // from testing::Test. T can be any copyable type. If it's a raw pointer,
/external/mesa3d/src/gtest/include/gtest/
Dgtest-param-test.h.pump56 // copyable type. If it's a raw pointer, you are responsible for managing the
/external/v8/testing/gtest/include/gtest/
Dgtest-param-test.h.pump56 // copyable type. If it's a raw pointer, you are responsible for managing the
/external/google-breakpad/src/testing/gtest/include/gtest/
Dgtest-param-test.h.pump56 // copyable type. If it's a raw pointer, you are responsible for managing the
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
Dgtest-param-test.h.pump56 // copyable type. If it's a raw pointer, you are responsible for managing the
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
Dgtest-param-test.h.pump56 // copyable type. If it's a raw pointer, you are responsible for managing the
/external/googletest/googletest/include/gtest/
Dgtest-param-test.h.pump56 // copyable type. If it's a raw pointer, you are responsible for managing the
/external/vulkan-validation-layers/tests/
Dvktestbinding.h482 bool copyable() const { return (format_features_ & VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT); } in copyable() function
/external/libcxx/include/
Datomic594 "std::atomic<Tp> requires that 'Tp' be a trivially copyable type");
659 // [atomics.types.generic]p1 guarantees _Tp is trivially copyable. Because
/external/googletest/googlemock/docs/
DCheatSheet.md382 |`Throw(exception)` |Throws the given exception, which can be any copyable value. Available …
/external/googletest/googletest/docs/
DAdvancedGuide.md1153 `::testing::WithParamInterface<T>`. `T` can be any copyable type. If
/external/llvm/docs/
DProgrammersManual.rst1995 or ``operator delete``. It is efficiently copyable, assignable and
/external/python/cpython2/Misc/
DNEWS10309 - Issue #2460: Make Ellipsis object copyable.