Searched refs:other (Results 76 - 100 of 525) sorted by last modified time

1234567891011>>

/frameworks/native/cmds/lshal/
H A DNullableOStream.h39 NullableOStream &operator=(const NullableOStream<Other> &other) { argument
40 mOs = other.mOs;
/frameworks/native/headers/media_plugin/media/openmax/
H A DOMX_Component.h99 OMX_OTHER_PORTDEFINITIONTYPE other; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon1526
/frameworks/native/include/binder/
H A DParcel.h75 int compareData(const Parcel& other);
/frameworks/native/include/gui/
H A DStreamSplitter.h46 // A return value other than NO_ERROR means that an error has occurred and
49 // explanations of other error codes.
60 // A return value other than NO_ERROR means that an error has occurred and
63 // of other error codes.
102 // It still processes callbacks from other outputs, but only detaches their
148 BufferTracker(const BufferTracker& other);
149 BufferTracker& operator=(const BufferTracker& other);
165 // has been abandoned, it will continue to detach buffers from other
/frameworks/native/include/input/
H A DDisplayViewport.h51 bool operator==(const DisplayViewport& other) const {
52 return displayId == other.displayId
53 && orientation == other.orientation
54 && logicalLeft == other.logicalLeft
55 && logicalTop == other.logicalTop
56 && logicalRight == other.logicalRight
57 && logicalBottom == other.logicalBottom
58 && physicalLeft == other.physicalLeft
59 && physicalTop == other.physicalTop
60 && physicalRight == other
[all...]
H A DInput.h256 bool operator==(const PointerCoords& other) const;
257 inline bool operator!=(const PointerCoords& other) const {
258 return !(*this == other);
261 void copyFrom(const PointerCoords& other);
282 bool operator==(const PointerProperties& other) const;
283 inline bool operator!=(const PointerProperties& other) const {
284 return !(*this == other);
287 void copyFrom(const PointerProperties& other);
575 void copyFrom(const MotionEvent* other, bool keepHistory);
H A DInputDevice.h51 // is intended to be a minimum way to distinguish from other active devices and may
62 InputDeviceInfo(const InputDeviceInfo& other);
H A DKeyCharacterMap.h41 * Also specifies other functions of the keyboard such as the keyboard type
149 Behavior(const Behavior& other);
169 Key(const Key& other);
234 KeyCharacterMap(const KeyCharacterMap& other);
/frameworks/native/include/media/openmax/
H A DOMX_Component.h99 OMX_OTHER_PORTDEFINITIONTYPE other; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon1637
/frameworks/native/include/ui/
H A DHdrCapabilities.h39 HdrCapabilities(HdrCapabilities&& other);
40 HdrCapabilities& operator=(HdrCapabilities&& other);
/frameworks/native/libs/binder/
H A DParcel.cpp563 int Parcel::compareData(const Parcel& other) { argument
565 if (size != other.dataSize()) {
566 return size < other.dataSize() ? -1 : 1;
568 return memcmp(data(), other.data(), size);
2447 LOG_ALLOC("Parcel %p: freeing other owner data", this);
/frameworks/native/libs/binder/include/binder/
H A DParcel.h75 int compareData(const Parcel& other);
/frameworks/native/libs/binder/tests/
H A DbinderSafeInterfaceTest.cpp134 TestParcelable(const TestParcelable& other) : TestParcelable(other.mValue) {} argument
135 TestParcelable(TestParcelable&& other) : TestParcelable(other.mValue) {} argument
/frameworks/native/libs/gui/include/gui/
H A DStreamSplitter.h46 // A return value other than NO_ERROR means that an error has occurred and
49 // explanations of other error codes.
60 // A return value other than NO_ERROR means that an error has occurred and
63 // of other error codes.
102 // It still processes callbacks from other outputs, but only detaches their
148 BufferTracker(const BufferTracker& other);
149 BufferTracker& operator=(const BufferTracker& other);
165 // has been abandoned, it will continue to detach buffers from other
/frameworks/native/libs/hwc2on1adapter/
H A DHWC2On1Adapter.cpp1631 bool HWC2On1Adapter::Display::Config::merge(const Config& other) { argument
1636 if (getAttribute(attribute) != other.getAttribute(attribute)) {
1641 static_cast<android_color_mode_t>(other.getAttribute(ColorMode));
1645 other.mHwc1Ids.at(otherColorMode));
1649 other.mHwc1Ids.at(otherColorMode));
/frameworks/native/libs/hwc2on1adapter/include/hwc2on1adapter/
H A DHWC2On1Adapter.h245 // validate() on all other Displays in the Device.
308 bool merge(const Config& other);
458 // updated with anything other than a buffer since last call to
496 // anything other than IDENTITY, we have to fall back to client
528 bool operator==(const Layer& other) { return mId == other.mId; } argument
529 bool operator!=(const Layer& other) { return !(*this == other); } argument
/frameworks/native/libs/input/
H A DInput.cpp178 bool PointerCoords::operator==(const PointerCoords& other) const {
179 if (bits != other.bits) {
184 if (values[i] != other.values[i]) {
191 void PointerCoords::copyFrom(const PointerCoords& other) { argument
192 bits = other.bits;
195 values[i] = other.values[i];
202 bool PointerProperties::operator==(const PointerProperties& other) const {
203 return id == other.id
204 && toolType == other.toolType;
207 void PointerProperties::copyFrom(const PointerProperties& other) { argument
252 copyFrom(const MotionEvent* other, bool keepHistory) argument
[all...]
H A DInputDevice.cpp140 InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) : argument
141 mId(other.mId), mGeneration(other.mGeneration), mControllerNumber(other.mControllerNumber),
142 mIdentifier(other.mIdentifier), mAlias(other.mAlias), mIsExternal(other.mIsExternal),
143 mHasMic(other.mHasMic), mSources(other.mSources),
144 mKeyboardType(other
[all...]
H A DInputTransport.cpp736 const History* other; local
743 other = &future;
754 // So other->eventTime <= current->eventTime <= sampleTime.
755 other = touchState.getHistory(1);
756 nsecs_t delta = current->eventTime - other->eventTime;
794 if (other->idBits.hasBit(id)
796 const PointerCoords& otherCoords = other->getPointerById(id);
804 "other (%0.3f, %0.3f), alpha %0.3f",
H A DKeyCharacterMap.cpp94 KeyCharacterMap::KeyCharacterMap(const KeyCharacterMap& other) : argument
95 RefBase(), mType(other.mType), mKeysByScanCode(other.mKeysByScanCode),
96 mKeysByUsageCode(other.mKeysByUsageCode) {
97 for (size_t i = 0; i < other.mKeys.size(); i++) {
98 mKeys.add(other.mKeys.keyAt(i), new Key(*other.mKeys.valueAt(i)));
689 KeyCharacterMap::Key::Key(const Key& other) : argument
690 label(other.label), number(other
710 Behavior(const Behavior& other) argument
[all...]
/frameworks/native/libs/ui/
H A DHdrCapabilities.cpp27 HdrCapabilities::HdrCapabilities(HdrCapabilities&& other) = default; member in class:android::HdrCapabilities
28 HdrCapabilities& HdrCapabilities::operator=(HdrCapabilities&& other) = default; member in class:android::HdrCapabilities
/frameworks/native/libs/ui/include/ui/
H A DHdrCapabilities.h39 HdrCapabilities(HdrCapabilities&& other);
40 HdrCapabilities& operator=(HdrCapabilities&& other);
/frameworks/native/libs/ui/tests/
H A DRegion_test.cpp35 for (const Rect* other = current - 1; other >= r.begin(); other--) {
36 if (other->bottom < current->top) break;
37 if (other->bottom != current->top) continue;
38 checkVertTJunction(current, other);
40 for (const Rect* other = current + 1; other < r.end(); other++) {
41 if (other
[all...]
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dbufferhub_rpc.h106 NativeBufferHandle(NativeBufferHandle&& other) = default; member in class:android::dvr::NativeBufferHandle
107 NativeBufferHandle& operator=(NativeBufferHandle&& other) = default; member in class:android::dvr::NativeBufferHandle
177 BufferDescription(BufferDescription&& other) = default; member in class:android::dvr::BufferDescription
178 BufferDescription& operator=(BufferDescription&& other) = default; member in class:android::dvr::BufferDescription
H A Dion_buffer.h23 IonBuffer(IonBuffer&& other);
24 IonBuffer& operator=(IonBuffer&& other);
58 // Duplicates the native handle underlying |other| and then imports it. This
62 int Duplicate(const IonBuffer* other);

Completed in 429 milliseconds

1234567891011>>