Searched defs:other (Results 201 - 225 of 293) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h166 uint8_t other() const { return (uint8_t)visibility(); } function in class:mcld::ResolveInfo
/frameworks/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java242 /*package*/ static void nSet(long native_object, long other) { argument
248 Matrix_Delegate src = sManager.getDelegate(other);
458 Matrix_Delegate other = sManager.getDelegate(other_matrix);
459 if (d != null && other != null) {
460 d.preTransform(other.mValues);
526 Matrix_Delegate other = sManager.getDelegate(other_matrix);
527 if (d != null && other != null) {
528 d.postTransform(other.mValues);
/frameworks/ml/nn/common/
H A DCpuExecutor.cpp79 RunTimePoolInfo::RunTimePoolInfo(RunTimePoolInfo&& other) { argument
80 moveFrom(std::move(other));
81 other.mBuffer = nullptr;
84 RunTimePoolInfo& RunTimePoolInfo::operator=(RunTimePoolInfo&& other) { argument
85 if (this != &other) {
87 moveFrom(std::move(other));
88 other.mBuffer = nullptr;
93 void RunTimePoolInfo::moveFrom(RunTimePoolInfo &&other) { argument
94 mHidlMemory = std::move(other.mHidlMemory);
95 mBuffer = std::move(other
[all...]
/frameworks/ml/nn/runtime/include/
H A DNeuralNetworksWrapper.h91 Memory(Memory&& other) { *this = std::move(other); } argument
92 Memory& operator=(Memory&& other) { argument
93 if (this != &other) {
95 mMemory = other.mMemory;
96 mValid = other.mValid;
97 other.mMemory = nullptr;
98 other.mValid = false;
128 Model(Model&& other) { *this = std::move(other); } argument
129 operator =(Model&& other) argument
228 Event(Event&& other) argument
229 operator =(Event&& other) argument
270 Compilation(Compilation&& other) argument
271 operator =(Compilation&& other) argument
313 Execution(Execution&& other) argument
314 operator =(Execution&& other) argument
[all...]
/frameworks/native/include/input/
H A DInputTransport.h55 // leave it here because InputMessage::size() and other functions
156 /* Sends a message to the other endpoint.
169 /* Receives a message sent by the other endpoint.
383 void initializeFrom(const History& other) { argument
384 eventTime = other.eventTime;
385 idBits = other.idBits; // temporary copy
386 for (size_t i = 0; i < other.idBits.count(); i++) {
388 int32_t index = other.idToIndex[id];
390 pointers[index].copyFrom(other.pointers[index]);
392 idBits = other
[all...]
/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/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...]
/frameworks/native/libs/vr/libpdx/
H A Dservice.cpp34 Message::Message(Message&& other) { *this = std::move(other); } argument
36 Message& Message::operator=(Message&& other) { argument
41 std::swap(service_, other.service_);
42 std::swap(channel_, other.channel_);
43 std::swap(info_, other.info_);
44 std::swap(state_, other.state_);
45 std::swap(replied_, other.replied_);
/frameworks/native/opengl/libagl/
H A Dlight.cpp766 GLfixed* other=0; local
774 other = c->lighting.front.diffuse.v;
788 if (other) {
789 other[0] = what[0];
790 other[1] = what[1];
791 other[2] = what[2];
792 other[3] = what[3];
806 GLfixed* other=0; local
814 other = c->lighting.front.diffuse.v;
828 if (other) {
[all...]
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.cpp78 LayerLibrary(LayerLibrary&& other) argument
79 : path_(std::move(other.path_)),
80 filename_(std::move(other.filename_)),
81 dlhandle_(other.dlhandle_),
82 refcount_(other.refcount_) {
83 other.dlhandle_ = nullptr;
84 other.refcount_ = 0;
382 // the APK. Loading still may fail for other reasons, but this at least
523 LayerRef::LayerRef(LayerRef&& other) : layer_(other argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java71 RilMessage(RilMessage other) { argument
72 mId = other.mId;
73 mData = other.mData;
74 mResCode = other.mResCode;
757 /* TODO: eventDownload should be extended for other Envelope Commands */
/frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
H A DDefaultSelectionTracker.java130 protected void restoreSelection(@NonNull Selection other) { argument
131 checkArgument(other != null);
132 setItemsSelectedQuietly(other.mSelection, true);
/frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
H A DBasePreviewProgram.java386 public boolean equals(Object other) { argument
387 if (!(other instanceof BasePreviewProgram)) {
390 return mValues.equals(((BasePreviewProgram) other).mValues);
623 * @param other The Program you're copying from.
625 public Builder(BasePreviewProgram other) { argument
626 mValues = new ContentValues(other.mValues);
H A DBaseProgram.java296 public boolean equals(Object other) { argument
297 if (!(other instanceof BaseProgram)) {
300 return mValues.equals(((BaseProgram) other).mValues);
535 * @param other The Program you're copying from.
537 public Builder(BaseProgram other) { argument
538 mValues = new ContentValues(other.mValues);
785 * Sets whether this channel can be searched for in other applications.
867 * thumbs-up count and the other for thumbs-down count, with a comma between them.
H A DPreviewChannel.java260 public boolean equals(Object other) { argument
261 if (!(other instanceof PreviewChannel)) {
264 return mValues.equals(((PreviewChannel) other).mValues);
268 * Indicates whether some other PreviewChannel has any set attribute that is different from
354 public Builder(PreviewChannel other) { argument
355 mValues = new ContentValues(other.mValues);
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DActionMenuView.java836 public LayoutParams(ViewGroup.LayoutParams other) { argument
837 super(other);
840 public LayoutParams(LayoutParams other) { argument
841 super((ViewGroup.LayoutParams) other);
842 isOverflowButton = other.isOverflowButton;
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DBaseWrapContentTest.java324 public void assertSame(Snapshot other, int step) { argument
326 (!doesChildrenFitVertically() || !other.doesChildrenFitVertically())) {
333 (!doesChildrenFitHorizontally() || !other.doesChildrenFitHorizontally())) {
340 other.mChildCoordinates);
344 assertMap("appearing step:" + step, mAppear, other.mAppear);
345 assertMap("disappearing step:" + step, mDisappear, other.mDisappear);
346 assertMap("persistent step:" + step, mPersistent, other.mPersistent);
347 assertMap("changed step:" + step, mChanged, other.mChanged);
/frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
H A DOpReorderTest.java642 static Item clone(Item other) { argument
643 return new Item(other.id, other.version);
/frameworks/av/media/libnblog/
H A DNBLog.cpp188 NBLog::EntryIterator::EntryIterator(const NBLog::EntryIterator &other) argument
189 : ptr(other.ptr) {}
219 int NBLog::EntryIterator::operator-(const NBLog::EntryIterator &other) const {
220 return ptr - other.ptr;
223 bool NBLog::EntryIterator::operator!=(const EntryIterator &other) const {
224 return ptr != other.ptr;
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp100 // operation from policy manager standpoint (no other operation (e.g track start or stop)
539 // NB: might the other party have given up the microphone since then? how sure.
548 sp<AudioRecordClient> other = mAudioRecordClients.valueAt(i); local
549 if (other->active) {
552 audioSourceString(other->attributes.source).c_str());
554 std::string(String8(other->opPackageName).string()).c_str());
555 item->setInt32(kAudioPolicyActiveSession, other->session);
557 getDeviceTypeStrForPortId(other->deviceId).c_str());
/frameworks/base/core/java/android/content/res/
H A DResources.java330 * some other type of CharSequence if it is styled.
531 * some other type of CharSequence if it is styled.
744 * @param base The base value of this fraction. In other words, a
746 * @param pbase The parent base value of this fraction. In other
1379 * In other words, a Theme is a set of values for resource attributes;
1425 * <var>other</var>. If both of these themes are from the same
1430 * @param other The existing Theme to copy from.
1432 public void setTo(Theme other) { argument
1433 mThemeImpl.setTo(other.mThemeImpl);
1509 * taking precedence over the following ones. In other word
1720 setTo(ThemeKey other) argument
[all...]
H A DResourcesImpl.java724 // simply turning off all preloading), as well as any other configs specified
1311 void setTo(ThemeImpl other) { argument
1313 synchronized (other.mKey) {
1314 AssetManager.nativeThemeCopy(mTheme, other.mTheme);
1316 mThemeResId = other.mThemeResId;
1317 mKey.setTo(other.getKey());
/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureRequest.java463 * @param other Another instance of CaptureRequest.
468 public boolean equals(Object other) { argument
469 return other instanceof CaptureRequest
470 && equals((CaptureRequest)other);
473 private boolean equals(CaptureRequest other) { argument
474 return other != null
475 && Objects.equals(mUserTag, other.mUserTag)
476 && mSurfaceSet.equals(other.mSurfaceSet)
477 && mPhysicalCameraSettings.equals(other.mPhysicalCameraSettings)
478 && mLogicalCameraId.equals(other
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java188 * Compare this key against other native keys, request keys, result keys, and
249 // TODO: remove this; other places should use #getTypeReference() instead
322 public CameraMetadataNative(CameraMetadataNative other) { argument
324 mMetadataPtr = nativeAllocateCopy(other);
331 * Move the contents from {@code other} into a new camera metadata instance.</p>
333 * <p>After this call, {@code other} will become empty.</p>
335 * @param other the previous metadata instance which will get pilfered
336 * @return a new metadata instance with the values from {@code other} moved into it
338 public static CameraMetadataNative move(CameraMetadataNative other) { argument
340 newObject.swap(other);
1191 nativeAllocateCopy(CameraMetadataNative other) argument
1196 nativeSwap(CameraMetadataNative other) argument
1225 swap(CameraMetadataNative other) argument
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java69 because the internal fields are final and the memory model guarantees other
71 that some threads will immediately see changes from other threads on
107 matching. In other words, the authority component wins."
341 * default port explicitly and the other leaves it implicit, they will not
349 Uri other = (Uri) o;
351 return toString().equals(other.toString());
366 public int compareTo(Uri other) { argument
367 return toString().compareTo(other.toString());
378 * to logs and other places where PII should be avoided.
1831 * all other character
[all...]

Completed in 424 milliseconds

1234567891011>>