Searched defs:other (Results 176 - 200 of 260) 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.java239 /*package*/ static void nSet(long native_object, long other) { argument
245 Matrix_Delegate src = sManager.getDelegate(other);
455 Matrix_Delegate other = sManager.getDelegate(other_matrix);
456 if (d != null && other != null) {
457 d.preTransform(other.mValues);
523 Matrix_Delegate other = sManager.getDelegate(other_matrix);
524 if (d != null && other != null) {
525 d.postTransform(other.mValues);
/frameworks/ml/nn/runtime/include/
H A DNeuralNetworksWrapper.h89 Memory(Memory&& other) { *this = std::move(other); } argument
90 Memory& operator=(Memory&& other) { argument
91 if (this != &other) {
92 mMemory = other.mMemory;
93 mValid = other.mValid;
94 other.mMemory = nullptr;
95 other.mValid = false;
125 Model(Model&& other) { *this = std::move(other); } argument
126 operator =(Model&& other) argument
204 Event(Event&& other) argument
205 operator =(Event&& other) argument
239 Compilation(Compilation&& other) argument
240 operator =(Compilation&& other) argument
281 Execution(Execution&& other) argument
282 operator =(Execution&& other) argument
[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/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
/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.cpp767 GLfixed* other=0; local
775 other = c->lighting.front.diffuse.v;
789 if (other) {
790 other[0] = what[0];
791 other[1] = what[1];
792 other[2] = what[2];
793 other[3] = what[3];
807 GLfixed* other=0; local
815 other = c->lighting.front.diffuse.v;
829 if (other) {
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java63 RilMessage(RilMessage other) { argument
64 mId = other.mId;
65 mData = other.mData;
66 mResCode = other.mResCode;
734 /* TODO: eventDownload should be extended for other Envelope Commands */
/frameworks/support/tv-provider/src/android/support/media/tv/
H A DBasePreviewProgram.java301 public boolean equals(Object other) { argument
302 if (!(other instanceof BasePreviewProgram)) {
305 return mValues.equals(((BasePreviewProgram) other).mValues);
538 * @param other The Program you're copying from.
540 public Builder(BasePreviewProgram other) { argument
541 mValues = new ContentValues(other.mValues);
H A DBaseProgram.java274 public boolean equals(Object other) { argument
275 if (!(other instanceof BaseProgram)) {
278 return mValues.equals(((BaseProgram) other).mValues);
513 * @param other The Program you're copying from.
515 public Builder(BaseProgram other) { argument
516 mValues = new ContentValues(other.mValues);
759 * Sets whether this channel can be searched for in other applications.
840 * thumbs-up count and the other for thumbs-down count, with a comma between them.
H A DChannel.java336 public boolean equals(Object other) { argument
337 if (!(other instanceof Channel)) {
340 return mValues.equals(((Channel) other).mValues);
577 public Builder(Channel other) { argument
578 mValues = new ContentValues(other.mValues);
817 * Sets whether this channel can be searched for in other applications.
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java835 public LayoutParams(ViewGroup.LayoutParams other) { argument
836 super(other);
839 public LayoutParams(LayoutParams other) { argument
840 super((ViewGroup.LayoutParams) other);
841 isOverflowButton = other.isOverflowButton;
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java641 static Item clone(Item other) { argument
642 return new Item(other.id, other.version);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentTest.java321 public void assertSame(Snapshot other, int step) { argument
323 (!doesChildrenFitVertically() || !other.doesChildrenFitVertically())) {
330 (!doesChildrenFitHorizontally() || !other.doesChildrenFitHorizontally())) {
337 other.mChildCoordinates);
341 assertMap("appearing step:" + step, mAppear, other.mAppear);
342 assertMap("disappearing step:" + step, mDisappear, other.mDisappear);
343 assertMap("persistent step:" + step, mPersistent, other.mPersistent);
344 assertMap("changed step:" + step, mChanged, other.mChanged);
/frameworks/av/media/libnbaio/
H A DNBLog.cpp260 NBLog::EntryIterator::EntryIterator(const NBLog::EntryIterator &other) argument
261 : ptr(other.ptr) {}
291 int NBLog::EntryIterator::operator-(const NBLog::EntryIterator &other) const {
292 return ptr - other.ptr;
295 bool NBLog::EntryIterator::operator!=(const EntryIterator &other) const {
296 return ptr != other.ptr;
887 // TODO timestamp empty here, only other choice to wait for the first timestamp event in the
/frameworks/base/core/java/android/content/res/
H A DResources.java322 * some other type of CharSequence if it is styled.
523 * some other type of CharSequence if it is styled.
736 * @param base The base value of this fraction. In other words, a
738 * @param pbase The parent base value of this fraction. In other
1364 * In other words, a Theme is a set of values for resource attributes;
1410 * <var>other</var>. If both of these themes are from the same
1415 * @param other The existing Theme to copy from.
1417 public void setTo(Theme other) { argument
1418 mThemeImpl.setTo(other.mThemeImpl);
1494 * taking precedence over the following ones. In other word
1705 setTo(ThemeKey other) argument
[all...]
H A DResourcesImpl.java723 // simply turning off all preloading), as well as any other configs specified
1284 void setTo(ThemeImpl other) { argument
1286 synchronized (other.mKey) {
1287 AssetManager.copyTheme(mTheme, other.mTheme);
1289 mThemeResId = other.mThemeResId;
1290 mKey.setTo(other.getKey());
/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureRequest.java415 * @param other Another instance of CaptureRequest.
420 public boolean equals(Object other) { argument
421 return other instanceof CaptureRequest
422 && equals((CaptureRequest)other);
425 private boolean equals(CaptureRequest other) { argument
426 return other != null
427 && Objects.equals(mUserTag, other.mUserTag)
428 && mSurfaceSet.equals(other.mSurfaceSet)
429 && mSettings.equals(other.mSettings)
430 && mIsReprocess == other
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java167 * Compare this key against other native keys, request keys, result keys, and
228 // TODO: remove this; other places should use #getTypeReference() instead
301 public CameraMetadataNative(CameraMetadataNative other) { argument
303 mMetadataPtr = nativeAllocateCopy(other);
310 * Move the contents from {@code other} into a new camera metadata instance.</p>
312 * <p>After this call, {@code other} will become empty.</p>
314 * @param other the previous metadata instance which will get pilfered
315 * @return a new metadata instance with the values from {@code other} moved into it
317 public static CameraMetadataNative move(CameraMetadataNative other) { argument
319 newObject.swap(other);
1108 nativeAllocateCopy(CameraMetadataNative other) argument
1113 nativeSwap(CameraMetadataNative other) argument
1142 swap(CameraMetadataNative other) argument
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java68 because the internal fields are final and the memory model guarantees other
70 that some threads will immediately see changes from other threads on
106 matching. In other words, the authority component wins."
327 * default port explicitly and the other leaves it implicit, they will not
335 Uri other = (Uri) o;
337 return toString().equals(other.toString());
352 public int compareTo(Uri other) { argument
353 return toString().compareTo(other.toString());
364 * to logs and other places where PII should be avoided.
1816 * all other character
[all...]
/frameworks/base/core/java/android/view/
H A DSurface.java420 * @param other {@link SurfaceControl} to copy from.
424 public void copyFrom(SurfaceControl other) { argument
425 if (other == null) {
426 throw new IllegalArgumentException("other must not be null");
429 long surfaceControlPtr = other.mNativeObject;
452 * @param other {@link SurfaceControl} to create surface from.
456 public void createFrom(SurfaceControl other) { argument
457 if (other == null) {
458 throw new IllegalArgumentException("other must not be null");
461 long surfaceControlPtr = other
483 transferFrom(Surface other) argument
[all...]
H A DViewTreeObserver.java290 InternalInsetsInfo other = (InternalInsetsInfo)o;
291 return mTouchableInsets == other.mTouchableInsets &&
292 contentInsets.equals(other.contentInsets) &&
293 visibleInsets.equals(other.visibleInsets) &&
294 touchableRegion.equals(other.touchableRegion);
297 void set(InternalInsetsInfo other) { argument
298 contentInsets.set(other.contentInsets);
299 visibleInsets.set(other.visibleInsets);
300 touchableRegion.set(other.touchableRegion);
301 mTouchableInsets = other
[all...]
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessState.java249 public void add(ProcessState other) { argument
250 mDurations.addDurations(other.mDurations);
251 mPssTable.mergeStats(other.mPssTable);
252 mNumExcessiveCpu += other.mNumExcessiveCpu;
253 if (other.mNumCachedKill > 0) {
254 addCachedKill(other.mNumCachedKill, other.mMinCachedKillPss,
255 other.mAvgCachedKillPss, other.mMaxCachedKillPss);
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java294 * @param other the color to ensure contrast against. Assumed to be lighter than {@param color}
300 public static int findContrastColor(int color, int other, boolean findFg, double minRatio) { argument
301 int fg = findFg ? color : other;
302 int bg = findFg ? other : color;
364 * @param other the color to ensure contrast against. Assumed to be darker than {@param color}
370 public static int findContrastColorAgainstDark(int color, int other, boolean findFg, argument
372 int fg = findFg ? color : other;
373 int bg = findFg ? other : color;
604 * Composite two potentially translucent colors over each other and returns the result.
632 * Composite two potentially translucent colors over each other an
[all...]

Completed in 749 milliseconds

1234567891011