Home
last modified time | relevance | path

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

12

/device/generic/vulkan-cereal/fake-android-guest/utils/
DStrongPointer.h115 sp<T>::sp(T* other) in sp()
122 sp<T>::sp(const sp<T>& other) in sp()
129 sp<T>::sp(sp<T>&& other) in sp() function
135 sp<T>::sp(U* other) in sp()
142 sp<T>::sp(const sp<U>& other) in sp()
149 sp<T>::sp(sp<U>&& other) in sp() function
224 void sp<T>::force_set(T* other) { in force_set()
DRefBase.h450 wp<T>::wp(T* other) in wp()
457 wp<T>::wp(const wp<T>& other) in wp()
464 wp<T>::wp(const sp<T>& other) in wp()
473 wp<T>::wp(U* other) in wp()
480 wp<T>::wp(const wp<U>& other) in wp()
490 wp<T>::wp(const sp<U>& other) in wp()
575 void wp<T>::set_object_and_refs(T* other, weakref_type* refs) in set_object_and_refs()
DString8.h297 inline bool String8::contains(const char* other) const in contains()
340 inline int String8::compare(const String8& other) const in compare()
DString16.h176 inline int String16::compare(const String16& other) const in compare()
/device/generic/vulkan-cereal/fake-android-guest/androidImpl/
DString8.cpp178 void String8::setTo(const String8& other) in setTo()
184 status_t String8::setTo(const char* other) in setTo()
193 status_t String8::setTo(const char* other, size_t len) in setTo()
202 status_t String8::setTo(const char16_t* other, size_t len) in setTo()
211 status_t String8::setTo(const char32_t* other, size_t len) in setTo()
220 status_t String8::append(const String8& other) in append()
231 status_t String8::append(const char* other) in append()
235 status_t String8::append(const char* other, size_t otherLen) in append()
274 status_t String8::real_append(const char* other, size_t otherLen) in real_append()
318 ssize_t String8::find(const char* other, size_t start) const in find() argument
[all …]
DString16.cpp115 void String16::setTo(const String16& other) in setTo()
121 status_t String16::setTo(const String16& other, size_t len, size_t begin) in setTo()
139 status_t String16::setTo(const char16_t* other) in setTo()
143 status_t String16::setTo(const char16_t* other, size_t len) in setTo()
160 status_t String16::append(const String16& other) in append()
/device/generic/goldfish-opengl/android-emu/aemu/base/
DOptional.h195 Optional(const Optional& other) : base_flag(other.constructed()) { in Optional()
200 Optional(Optional&& other) : base_flag(other.constructed()) { in Optional() function
210 Optional(const Optional<U>& other) : base_flag(other.constructed()) { in Optional()
220 Optional(Optional<U>&& other) : base_flag(other.constructed()) { in Optional() function
DAlignedBuf.h44 AlignedBuf(const AlignedBuf& other) : AlignedBuf(other.mSize) { in AlignedBuf()
58 AlignedBuf(AlignedBuf&& other) { *this = std::move(other); } in AlignedBuf() function
/device/generic/goldfish-opengl/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
/device/generic/vulkan-cereal/stream-servers/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()
/device/generic/vulkan-cereal/fake-android-guest/pdx/
Dchannel_handle.h38 ChannelHandle(ChannelHandle&& other) noexcept : ChannelHandleBase{other.value_} { in ChannelHandle() function
57 ChannelHandle(ChannelHandle&& other) noexcept in ChannelHandle() function
/device/google/cuttlefish/common/libs/fs/
Depoll.cpp44 Epoll::Epoll(Epoll&& other) { in Epoll() function in cuttlefish::Epoll
55 Epoll& Epoll::operator=(Epoll&& other) { in operator =()
/device/generic/goldfish-opengl/shared/GoldfishAddressSpace/
Dgoldfish_address_space.cpp24 void GoldfishAddressSpaceBlock::replace(GoldfishAddressSpaceBlock *other) in replace()
/device/google/cuttlefish/host/libs/audio_connector/
Dbuffers.cpp22 ShmBuffer::ShmBuffer(ShmBuffer&& other) in ShmBuffer() function in cuttlefish::ShmBuffer
/device/generic/vulkan-cereal/stream-servers/vulkan/
DSwapChainStateVk.cpp51 SwapchainCreateInfoWrapper::SwapchainCreateInfoWrapper(const SwapchainCreateInfoWrapper& other) in SwapchainCreateInfoWrapper()
61 const SwapchainCreateInfoWrapper& other) { in operator =()
/device/generic/vulkan-cereal/fake-android-guest/ui/
DFloatRect.h25 FloatRect intersect(const FloatRect& other) const { in intersect()
/device/generic/car/emulator/usbpt/protocan/protocanbus/
DCloseHandleWrapper.cpp38 CloseHandleWrapper& CloseHandleWrapper::operator=(CloseHandleWrapper&& other) { in operator =()
/device/google/cuttlefish/common/libs/utils/
Dtcp_socket.h36 ClientSocket(ClientSocket&& other) : fd_{other.fd_} {} in ClientSocket() function
/device/generic/goldfish-opengl/android-emu/aemu/base/containers/
DSmallVector.h325 SmallFixedVector(const SmallFixedVector& other) in SmallFixedVector()
328 SmallFixedVector(SmallFixedVector&& other) { in SmallFixedVector() function
/device/google/atv/libraries/BluetoothServices/src/com/google/android/tv/btservices/remote/
DDfuBinary.java80 public int compareTo(DfuBinary other) { in compareTo()
/device/google/contexthub/util/common/
DJSONObject.cpp356 JSONValue::JSONValue(const JSONValue &other) in JSONValue()
361 JSONValue &JSONValue::operator=(const JSONValue &other) { in operator =()
/device/generic/goldfish-opengl/system/hwc3/
DDrmSwapchain.cpp28 DrmSwapchain::Image::Image(Image&& other) in Image() function in aidl::android::hardware::graphics::composer3::impl::DrmSwapchain::Image
/device/generic/vulkan-cereal/fake-android-guest/libvulkan/
Dlayers_extensions.cpp82 LayerLibrary(LayerLibrary&& other) noexcept in LayerLibrary() function in vulkan::api::__anon012f70980111::LayerLibrary
473 LayerRef::LayerRef(LayerRef&& other) noexcept : layer_(other.layer_) { in LayerRef() function in vulkan::api::LayerRef
/device/google/cuttlefish/host/commands/cvd/
Dlogger.cpp65 ServerLogger::ScopedLogger&& other) noexcept in ScopedLogger()

12