Searched refs:other (Results 326 - 350 of 396) sorted by relevance

<<111213141516

/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java331 * it simply allows it to be garbage collected if there are no other references.
887 // No need to initialize the bitmap to zeroes with other configs;
1265 * decode other bitmaps of smaller size, or by manual reconfiguration. See {@link
1646 * If other is null, return false.
1648 public boolean sameAs(Bitmap other) { argument
1650 if (this == other) return true;
1651 if (other == null) return false;
1652 if (other.isRecycled()) {
1655 return nativeSameAs(mNativePtr, other.mNativePtr);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java774 Tile other = mHead;
775 while (other != null) {
776 if (other == tile) {
779 other = other.mNext;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.h270 bool merge(const Config& other);
428 // anything other than IDENTITY, we have to fall back to client
493 bool operator==(const Layer& other) { return mId == other.mId; } argument
494 bool operator!=(const Layer& other) { return !(*this == other); } argument
/frameworks/base/core/java/android/text/format/
H A DTime.java191 * @param other
193 public Time(Time other) { argument
194 initialize(other.timezone);
195 set(other);
255 * the other fields. Requires that it be normalized for MONTH_DAY and
734 * field. On the other hand, if you are adding
992 * hour at 12am on April 25, 2008 and there are a few other places that
1261 // Read-only fields that are derived from other information above.
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java236 * @param other the color to ensure contrast against. Assumed to be lighter than {@param color}
242 private static int findContrastColor(int color, int other, boolean findFg, double minRatio) { argument
243 int fg = findFg ? color : other;
244 int bg = findFg ? other : color;
361 * Composite two potentially translucent colors over each other and returns the result.
/frameworks/base/media/java/android/media/session/
H A DMediaController.java46 * other commands can be sent to the session. A callback may be registered to
123 * be sent by this method, other keys will be ignored.
440 public boolean controlsSameSession(MediaController other) { argument
441 if (other == null) return false;
442 return mSessionBinder.asBinder() == other.getSessionBinder().asBinder();
569 * @param extras The extras that can include other information associated with the
595 * Request that the player prepare its playback. In other words, other sessions can continue
610 * Request that the player prepare playback for a specific media id. In other words, other
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DInformationElementUtil.java281 public ExtendedCapabilities(ExtendedCapabilities other) { argument
282 extendedCapabilities = other.extendedCapabilities;
283 is80211McRTTResponder = other.is80211McRTTResponder;
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java1036 AccessibilityRecordCompat other = (AccessibilityRecordCompat) obj;
1038 if (other.mRecord != null) {
1041 } else if (!mRecord.equals(other.mRecord)) {
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java639 static Item clone(Item other) { argument
640 return new Item(other.id, other.version);
/frameworks/base/core/java/android/content/
H A DIntentFilter.java874 public boolean match(AuthorityEntry other) { argument
875 if (mWild != other.mWild) {
878 if (!mHost.equals(other.mHost)) {
881 if (mPort != other.mPort) {
890 final AuthorityEntry other = (AuthorityEntry)obj;
891 return match(other);
1351 * filter in order to match. In other words, adding a category to the
/frameworks/av/include/media/
H A DAudioTrack.h150 TRANSFER_DEFAULT, // not specified explicitly; determine from the other parameters
287 * If status is not equal to NO_ERROR, don't call any other APIs on this AudioTrack.
710 * or any other error code returned by IAudioTrack::start() or restoreTrack_l().
756 * INVALID_OPERATION wrong state, or some other error.
845 AudioTrack(const AudioTrack& other);
846 AudioTrack& operator = (const AudioTrack& other);
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java657 private ChooserTargetInfo(ChooserTargetInfo other, Intent fillInIntent, int flags) { argument
658 mSourceInfo = other.mSourceInfo;
659 mBackupResolveInfo = other.mBackupResolveInfo;
660 mChooserTarget = other.mChooserTarget;
661 mBadgeIcon = other.mBadgeIcon;
662 mBadgeContentDescription = other.mBadgeContentDescription;
663 mDisplayIcon = other.mDisplayIcon;
666 mModifiedScore = other.mModifiedScore;
H A DResolverActivity.java224 * Compatibility version for other bundled services that use this overload without
240 // from managed profile to owner or other way around.
469 * {@link #onCreate(android.os.Bundle)}. If a subclass calls one of the other onCreate
827 // from managed profile to owner or other way around.
989 private DisplayResolveInfo(DisplayResolveInfo other, Intent fillInIntent, int flags) { argument
990 mSourceIntents.addAll(other.getAllSourceIntents());
991 mResolveInfo = other.mResolveInfo;
992 mDisplayLabel = other.mDisplayLabel;
993 mDisplayIcon = other.mDisplayIcon;
994 mExtendedInfo = other
[all...]
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp151 static jboolean Region_quickRejectRgn(JNIEnv* env, jobject region, jobject other) { argument
152 bool result = GetSkRegion(env, region)->quickReject(*GetSkRegion(env, other));
/frameworks/base/libs/hwui/
H A DRenderProperties.h116 LayerProperties& operator=(const LayerProperties& other);
188 RenderProperties& operator=(const RenderProperties& other);
657 * These fields are all generated from other properties and are not set directly.
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp322 bool operator < (const Attribute& other) const {
325 EGLint rhs(other.v);
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h152 // Performs a shallow or deep comparison of |this| and |other| and returns
156 // This is true for AMessages that have no corresponding AMessage equivalent in |other|.
157 // (E.g. there is no such key or the type is different.) On the other hand, changes in
159 sp<AMessage> changesFrom(const sp<const AMessage> &other, bool deep = false) const;
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp212 jobject other) {
216 CameraMetadata_getPointerThrow(env, other, "other");
270 static void CameraMetadata_swap(JNIEnv *env, jobject thiz, jobject other) { argument
279 CameraMetadata* otherMetadata = CameraMetadata_getPointerThrow(env, other, "other");
211 CameraMetadata_allocateCopy(JNIEnv *env, jobject thiz, jobject other) argument
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h166 uint8_t other() const { return (uint8_t)visibility(); } function in class:mcld::ResolveInfo
/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;
733 /* TODO: eventDownload should be extended for other Envelope Commands */
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java85 * that stick to other elements as they move and animate.</p>
91 * other arbitrary content panes.</p>
633 // against each other
666 * horizontally (possibly by other children of the parent)
669 * vertically (possibly by other children of the parent)
1277 final View other = getChildAt(i);
1278 if (other == child) {
1281 if (lp.dependsOn(this, child, other)) {
1282 list.add(other);
1313 * Check if the given child has any layout dependencies on other chil
[all...]
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DLayoutBinderWriter.kt244 fun <T> FlagSet.mapOr(other : FlagSet, cb : (suffix : String, index : Int) -> T) : List<T> {
245 val min = Math.min(buckets.size, other.buckets.size)
249 if (intersect(other, i)) {
991 it.isMandatory && it.other.resolvedType.isNullable
992 }.map { it.other }
/frameworks/base/core/java/android/app/
H A DActivityManager.java639 * there are other tasks in the stack.
1027 public void copyFrom(TaskDescription other) { argument
1028 mLabel = other.mLabel;
1029 mIcon = other.mIcon;
1030 mIconFilename = other.mIconFilename;
1031 mColorPrimary = other.mColorPrimary;
1032 mColorBackground = other.mColorBackground;
1304 * Task affiliation for grouping with other tasks.
1493 * way to retrieve that information), and possibly some other tasks
1799 * own tasks, and possibly some other task
[all...]
/frameworks/base/core/java/com/android/internal/backup/
H A DLocalTransport.java574 public int compareTo(DecodedFilename other) { argument
576 return key.compareTo(other.key);
/frameworks/base/tools/aapt/
H A DAaptAssets.h81 int compare(const AaptLocaleValue& other) const {
82 return memcmp(this, &other, sizeof(AaptLocaleValue));
238 * A single directory of assets, which can contain files and other
269 * Comparing names against all other names is O(n^2). We could speed

Completed in 878 milliseconds

<<111213141516