Searched refs:other (Results 201 - 225 of 286) sorted by relevance

1234567891011>>

/frameworks/av/include/media/
H A DAudioRecord.h119 TRANSFER_DEFAULT, // not specified explicitly; determine from the other parameters
186 * If status is not equal to NO_ERROR, don't call any other APIs on this AudioRecord.
388 * or any other error code returned by IAudioRecord::start() or restoreRecord_l().
404 AudioRecord(const AudioRecord& other);
405 AudioRecord& operator = (const AudioRecord& other);
H A DAudioTrack.h133 TRANSFER_DEFAULT, // not specified explicitly; determine from the other parameters
235 * If status is not equal to NO_ERROR, don't call any other APIs on this AudioTrack.
553 * or any other error code returned by IAudioTrack::start() or restoreTrack_l().
592 * INVALID_OPERATION if called on a FastTrack, wrong state, or some other error.
600 AudioTrack(const AudioTrack& other);
601 AudioTrack& operator = (const AudioTrack& other);
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java147 * Compare this key against other native keys, request keys, result keys, and
208 // TODO: remove this; other places should use #getTypeReference() instead
271 public CameraMetadataNative(CameraMetadataNative other) { argument
273 mMetadataPtr = nativeAllocateCopy(other);
280 * Move the contents from {@code other} into a new camera metadata instance.</p>
282 * <p>After this call, {@code other} will become empty.</p>
284 * @param other the previous metadata instance which will get pilfered
285 * @return a new metadata instance with the values from {@code other} moved into it
287 public static CameraMetadataNative move(CameraMetadataNative other) { argument
289 newObject.swap(other);
1046 nativeAllocateCopy(CameraMetadataNative other) argument
1051 nativeSwap(CameraMetadataNative other) argument
1076 swap(CameraMetadataNative other) argument
[all...]
/frameworks/base/core/java/android/net/
H A DNetwork.java365 Network other = (Network)obj;
366 return this.netId == other.netId;
/frameworks/base/core/java/android/os/
H A DUserHandle.java88 * @param uid2 other uid to compare
275 UserHandle other = (UserHandle)obj;
276 return mHandle == other.mHandle;
/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java61 * - All accesses to mLinkProperties must be synchronized(this). All the other
215 public int compareTo(DnsServerEntry other) { argument
216 return Long.compare(other.expiry, this.expiry);
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java315 * @param other Region to copy values from for initialization.
319 public static Region obtain(Region other) { argument
321 region.set(other);
H A DBitmap.java298 * it simply allows it to be garbage collected if there are no other references.
820 // No need to initialize the bitmap to zeroes with other configs;
1185 * decode other bitmaps of smaller size, or by manual reconfiguration. See {@link
1552 * If other is null, return false.
1554 public boolean sameAs(Bitmap other) { argument
1555 return this == other || (other != null && nativeSameAs(mNativeBitmap, other.mNativeBitmap));
/frameworks/base/services/
H A DAndroid.mk67 # by only including service makefiles and not any tests or other
/frameworks/base/services/core/java/com/android/server/display/
H A DPersistentDataStore.java138 WifiDisplay other = mRememberedWifiDisplays.get(index);
139 if (other.equals(display)) {
/frameworks/base/tools/apilint/
H A Dapilint.py435 other = "unregister" + m.name[8:]
436 if other not in methods:
439 other = "register" + m.name[10:]
440 if other not in methods:
448 other = "remove" + m.name[3:]
449 if other not in methods:
452 other = "add" + m.name[6:]
453 if other not in methods:
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java236 /*package*/ static void native_set(long native_object, long other) { argument
242 Matrix_Delegate src = sManager.getDelegate(other);
452 Matrix_Delegate other = sManager.getDelegate(other_matrix);
453 if (d != null && other != null) {
454 d.preTransform(other.mValues);
520 Matrix_Delegate other = sManager.getDelegate(other_matrix);
521 if (d != null && other != null) {
522 d.postTransform(other.mValues);
/frameworks/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc47 // if we meet other else
/frameworks/compile/mclinker/lib/Support/Windows/
H A DPathV3.inc40 // if we meet other else
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java288 * This record indicates to other Android devices the package
543 * but fail other more strict NDEF specification requirements. For
652 * always setting the MB and ME flags (in other words, assume this
1033 NdefRecord other = (NdefRecord) obj;
1034 if (!Arrays.equals(mId, other.mId)) return false;
1035 if (!Arrays.equals(mPayload, other.mPayload)) return false;
1036 if (mTnf != other.mTnf) return false;
1037 return Arrays.equals(mType, other.mType);
/frameworks/base/core/java/android/widget/
H A DActionMenuView.java787 public LayoutParams(ViewGroup.LayoutParams other) { argument
788 super(other);
791 public LayoutParams(LayoutParams other) { argument
792 super((LinearLayout.LayoutParams) other);
793 isOverflowButton = other.isOverflowButton;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java360 RenderSpec other = (RenderSpec) obj;
361 if (bitmapHeight != other.bitmapHeight) {
364 if (bitmapWidth != other.bitmapWidth) {
368 if (!printAttributes.equals(other.printAttributes)) {
371 } else if (other.printAttributes != null) {
461 // is closed to show pages while the other side is writing the new
837 // We passed the file descriptor to the other side which took
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java790 public LayoutParams(ViewGroup.LayoutParams other) { argument
791 super(other);
794 public LayoutParams(LayoutParams other) { argument
795 super((ViewGroup.LayoutParams) other);
796 isOverflowButton = other.isOverflowButton;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DStaggeredGridLayoutManager.java1721 final Span other = mSpans[i];
1722 int otherLine = other.getEndLine(defaultLine);
1724 min = other;
1734 final Span other = mSpans[i];
1735 int otherLine = other.getStartLine(defaultLine);
1737 max = other;
2464 FullSpanItem other = mFullSpanItems.get(i);
2465 if (other.mPosition == fullSpanItem.mPosition) {
2472 if (other.mPosition >= fullSpanItem.mPosition) {
2636 public SavedState(SavedState other) { argument
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java1298 Spanned other = (Spanned) o;
1300 Object[] otherSpans = other.getSpans(0, other.length(), Object.class);
1306 if (other != otherSpan ||
1307 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
1308 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) ||
1309 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) {
1313 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
1314 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) ||
1315 getSpanFlags(thisSpan) != other
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp211 bool operator==(const Rational& other) const;
212 bool operator!=(const Rational& other) const { return !(*this == other); }
213 bool operator<(const Rational& other) const;
214 bool operator>(const Rational& other) const {
215 return (!(*this == other) && !(*this < other));
561 // TODO: make measurments with background blend other than
990 // width and height. While the other routines always keep one of the
1339 bool Rational::operator==(const Rational& other) cons
[all...]
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp36 Transform::Transform(const Transform& other) argument
37 : mMatrix(other.mMatrix), mType(other.mType) {
/frameworks/base/core/java/android/content/
H A DClipData.java74 * creating shortcuts (such as placing icons on the home screen) or other
101 * or other binary data as an attachment. This is accomplished through the
124 * URI consisting of a complicated structure that only other applications with
309 * and other things can be retrieved.
384 * and other things can be retrieved.
434 * and other things can be retrieved.
651 * @param other The existing ClipData that is to be copied.
653 public ClipData(ClipData other) { argument
654 mClipDescription = other.mClipDescription;
655 mIcon = other
[all...]
H A DContentValues.java102 * @param other the ContentValues from which to copy
104 public void putAll(ContentValues other) { argument
105 mValues.putAll(other.mValues);
428 * any other types to byte arrays.
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp195 jobject other) {
199 CameraMetadata_getPointerThrow(env, other, "other");
253 static void CameraMetadata_swap(JNIEnv *env, jobject thiz, jobject other) { argument
262 CameraMetadata* otherMetadata = CameraMetadata_getPointerThrow(env, other, "other");
194 CameraMetadata_allocateCopy(JNIEnv *env, jobject thiz, jobject other) argument

Completed in 604 milliseconds

1234567891011>>