Home
last modified time | relevance | path

Searched refs:otherResult (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/camera/
DCaptureResult.cpp126 CaptureResult::CaptureResult(CaptureResult &&otherResult) { in CaptureResult() argument
127 mMetadata = std::move(otherResult.mMetadata); in CaptureResult()
128 mResultExtras = otherResult.mResultExtras; in CaptureResult()
129 mPhysicalMetadatas = std::move(otherResult.mPhysicalMetadatas); in CaptureResult()
132 CaptureResult::CaptureResult(const CaptureResult &otherResult) { in CaptureResult() argument
133 mResultExtras = otherResult.mResultExtras; in CaptureResult()
134 mMetadata = otherResult.mMetadata; in CaptureResult()
135 mPhysicalMetadatas = otherResult.mPhysicalMetadatas; in CaptureResult()
/frameworks/base/apex/appsearch/framework/java/external/android/app/appsearch/
DAppSearchResult.java158 AppSearchResult<?> otherResult = (AppSearchResult<?>) other; in equals() local
159 return mResultCode == otherResult.mResultCode in equals()
160 && Objects.equals(mResultValue, otherResult.mResultValue) in equals()
161 && Objects.equals(mErrorMessage, otherResult.mErrorMessage); in equals()
/frameworks/av/camera/include/camera/
DCaptureResult.h167 CaptureResult(const CaptureResult& otherResult);