Home
last modified time | relevance | path

Searched defs:other (Results 1 – 25 of 70) sorted by relevance

123

/hardware/interfaces/keymaster/4.0/vts/functional/
DKeymasterHidlTest.h47 HidlBuf(const super& other) : super(other) {} in HidlBuf()
48 HidlBuf(super&& other) : super(std::move(other)) { other = {}; } in HidlBuf()
49 HidlBuf(const HidlBuf& other) : super(other) {} in HidlBuf()
50 HidlBuf(HidlBuf&& other) : super(std::move(other)) { other = HidlBuf(); } in HidlBuf() function
51 explicit HidlBuf(const std::string& other) : HidlBuf() { *this = other; } in HidlBuf()
/hardware/google/aemu/base/
DCpuTime.cpp19 CpuTime operator-(const CpuTime& a, const CpuTime& other) { in operator -()
25 CpuTime& CpuTime::operator-=(const CpuTime& other) { in operator -=()
DStdioStream.cpp26 StdioStream::StdioStream(StdioStream&& other) in StdioStream() function in android::base::StdioStream
31 StdioStream& StdioStream::operator=(StdioStream&& other) { in operator =()
DWin32UnicodeString.cpp54 Win32UnicodeString::Win32UnicodeString(const Win32UnicodeString& other) in Win32UnicodeString()
65 const Win32UnicodeString& other) { in operator =()
142 void Win32UnicodeString::append(const Win32UnicodeString& other) { in append()
/hardware/interfaces/sensors/common/default/2.X/multihal/
DScopedWakelock.cpp31 ScopedWakelock::ScopedWakelock(ScopedWakelock&& other) { in ScopedWakelock() function in android::hardware::sensors::V2_0::implementation::ScopedWakelock
35 ScopedWakelock& ScopedWakelock::operator=(ScopedWakelock&& other) { in operator =()
/hardware/google/aemu/base/include/aemu/base/files/
DScopedFd.h41 ScopedFd(ScopedFd&& other) : fd_(other.fd_) { in ScopedFd() function
77 void swap(ScopedFd* other) { in swap()
DScopedFileHandle.h63 void swap(ScopedFileHandle* other) { in swap()
DScopedRegKey.h71 void swap(ScopedRegKey* other) { in swap()
/hardware/google/aemu/base/include/aemu/base/sockets/
DScopedSocket.h28 ScopedSocket(ScopedSocket&& other) : mSocket(other.release()) {} in ScopedSocket() function
57 void swap(ScopedSocket* other) { in swap()
/hardware/google/aemu/base/include/aemu/base/
DOptional.h200 Optional(const Optional& other) : base_flag(other.constructed()) { in Optional()
205 Optional(Optional&& other) : base_flag(other.constructed()) { in Optional() function
215 Optional(const Optional<U>& other) : base_flag(other.constructed()) { in Optional()
225 Optional(Optional<U>&& other) : base_flag(other.constructed()) { in Optional() function
DAlignedBuf.h42 AlignedBuf(const AlignedBuf& other) : AlignedBuf(other.mSize) { in AlignedBuf()
56 AlignedBuf(AlignedBuf&& other) { *this = std::move(other); } in AlignedBuf() function
/hardware/google/gfxstream/guest/android-emu/aemu/base/
DOptional.h196 Optional(const Optional& other) : base_flag(other.constructed()) { in Optional()
201 Optional(Optional&& other) : base_flag(other.constructed()) { in Optional() function
211 Optional(const Optional<U>& other) : base_flag(other.constructed()) { in Optional()
221 Optional(Optional<U>&& other) : base_flag(other.constructed()) { in Optional() function
DAlignedBuf.h45 AlignedBuf(const AlignedBuf& other) : AlignedBuf(other.mSize) { in AlignedBuf()
59 AlignedBuf(AlignedBuf&& other) { *this = std::move(other); } in AlignedBuf() function
/hardware/google/gfxstream/guest/GoldfishAddressSpace/
Dgoldfish_address_space.cpp22 void GoldfishAddressSpaceBlock::replace(GoldfishAddressSpaceBlock *other) in replace()
/hardware/google/gfxstream/guest/android-emu/aemu/base/fit/
DFunction.h244 FunctionImpl(FunctionImpl&& other) : Base(static_cast<Base&&>(other)) {} in FunctionImpl() function
295 void swap(FunctionImpl& other) { Base::swap(other); } in swap()
404 CallbackImpl(CallbackImpl&& other) : Base(static_cast<Base&&>(other)) {} in CallbackImpl() function
441 void swap(CallbackImpl& other) { Base::swap(other); } in swap()
DDefer.h49 DeferredAction(DeferredAction&& other) : mTarget(std::move(other.mTarget)) { in DeferredAction() function
/hardware/google/aemu/base/include/aemu/base/network/
DIpAddress.h117 IpAddress(const IpAddress& other) { copyFrom(this, &other); } in IpAddress()
126 IpAddress(IpAddress&& other) { copyFrom(this, &other); } in IpAddress() function
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DANGLEShaderParser.cpp112 ShaderLinkInfo::ShaderLinkInfo(const ShaderLinkInfo& other) { in ShaderLinkInfo()
117 ShaderLinkInfo& ShaderLinkInfo::operator=(const ShaderLinkInfo& other) { in operator =()
125 ShaderLinkInfo::ShaderLinkInfo(ShaderLinkInfo&& other) { in ShaderLinkInfo() function in ANGLEShaderParser::ShaderLinkInfo
129 ShaderLinkInfo& ShaderLinkInfo::operator=(ShaderLinkInfo&& other) { in operator =()
145 void ShaderLinkInfo::copyFromOther(const ShaderLinkInfo& other) { in copyFromOther()
/hardware/interfaces/camera/common/default/
DCameraMetadata.cpp40 CameraMetadata::CameraMetadata(const CameraMetadata& other) : mLocked(false) { in CameraMetadata()
48 CameraMetadata& CameraMetadata::operator=(const CameraMetadata& other) { in operator =()
122 void CameraMetadata::acquire(CameraMetadata& other) { in acquire()
130 status_t CameraMetadata::append(const CameraMetadata& other) { in append()
134 status_t CameraMetadata::append(const camera_metadata_t* other) { in append()
420 void CameraMetadata::swap(CameraMetadata& other) { in swap()
/hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
Dauthorization_set.h47 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} in AuthorizationSet()
50 AuthorizationSet(AuthorizationSet&& other) noexcept : data_(std::move(other.data_)) {} in AuthorizationSet() function
53 AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; } in AuthorizationSet()
/hardware/google/aemu/base/include/aemu/base/testing/
DMockUtils.h54 MockReplacementHandle(MockReplacementHandle&& other) in MockReplacementHandle() function
/hardware/google/gfxstream/host/magma/
DDrmContext.cpp32 DrmContext::DrmContext(DrmContext&& other) noexcept in DrmContext() function in gfxstream::magma::DrmContext
/hardware/interfaces/security/keymint/support/include/keymint_support/
Dauthorization_set.h48 AuthorizationSet(const AuthorizationSet& other) : data_(other.data_) {} in AuthorizationSet()
51 AuthorizationSet(AuthorizationSet&& other) noexcept : data_(std::move(other.data_)) {} in AuthorizationSet() function
54 AuthorizationSet(const vector<KeyParameter>& other) { *this = other; } in AuthorizationSet()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/spec_tools/
Dvalidity.py94 def __iadd__(self, other): argument
198 def __iadd__(self, other): argument
/hardware/interfaces/keymaster/4.0/vts/performance/
DBenchmark.cpp82 HidlBuf(const super& other) : super(other) {} in HidlBuf()
83 HidlBuf(super&& other) : super(std::move(other)) {} in HidlBuf()
84 explicit HidlBuf(const std::string& other) : HidlBuf() { *this = other; } in HidlBuf()
86 HidlBuf& operator=(const super& other) { in operator =()
91 HidlBuf& operator=(super&& other) { in operator =()
96 HidlBuf& operator=(const string& other) { in operator =()

123