Searched refs:other (Results 301 - 325 of 396) sorted by relevance

<<111213141516

/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsState.java576 public Setting(Setting other) { argument
577 name = other.name;
578 value = other.value;
579 packageName = other.packageName;
580 id = other.id;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java812 public LayoutParams(ViewGroup.LayoutParams other) { argument
813 super(other);
816 public LayoutParams(LayoutParams other) { argument
817 super((ViewGroup.LayoutParams) other);
818 isOverflowButton = other.isOverflowButton;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DStaggeredGridLayoutManager.java1944 final Span other = mSpans[i];
1945 int otherLine = other.getEndLine(defaultLine);
1947 min = other;
1957 final Span other = mSpans[i];
1958 int otherLine = other.getStartLine(defaultLine);
1960 max = other;
2792 FullSpanItem other = mFullSpanItems.get(i);
2793 if (other.mPosition == fullSpanItem.mPosition) {
2800 if (other.mPosition >= fullSpanItem.mPosition) {
2964 public SavedState(SavedState other) { argument
[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 mNumExcessiveWake += other.mNumExcessiveWake;
253 mNumExcessiveCpu += other.mNumExcessiveCpu;
254 if (other.mNumCachedKill > 0) {
255 addCachedKill(other.mNumCachedKill, other.mMinCachedKillPss,
256 other.mAvgCachedKillPss, other
[all...]
H A DProcessStats.java218 public void add(ProcessStats other) { argument
219 ArrayMap<String, SparseArray<SparseArray<PackageState>>> pkgMap = other.mPackages.getMap();
262 ArrayMap<String, SparseArray<ProcessState>> procMap = other.mProcesses.getMap();
288 + other.mMemFactorDurations[i] + " from "
290 mMemFactorDurations[i] += other.mMemFactorDurations[i];
293 mSysMemUsage.mergeStats(other.mSysMemUsage);
295 if (other.mTimePeriodStartClock < mTimePeriodStartClock) {
296 mTimePeriodStartClock = other.mTimePeriodStartClock;
297 mTimePeriodStartClockStr = other.mTimePeriodStartClockStr;
299 mTimePeriodEndRealtime += other
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp210 bool operator==(const Rational& other) const;
211 bool operator!=(const Rational& other) const { return !(*this == other); }
212 bool operator<(const Rational& other) const;
213 bool operator>(const Rational& other) const {
214 return (!(*this == other) && !(*this < other));
559 // TODO: make measurments with background blend other than
988 // width and height. While the other routines always keep one of the
1337 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/support/recommendation/src/android/support/app/recommendation/
H A DContentRecommendation.java673 public boolean equals(Object other) { argument
674 if (other instanceof ContentRecommendation) {
675 return TextUtils.equals(mIdTag, ((ContentRecommendation) other).getIdTag());
/frameworks/base/core/java/android/content/
H A DClipData.java76 * creating shortcuts (such as placing icons on the home screen) or other
103 * or other binary data as an attachment. This is accomplished through the
126 * URI consisting of a complicated structure that only other applications with
311 * and other things can be retrieved.
386 * and other things can be retrieved.
436 * and other things can be retrieved.
675 * @param other The existing ClipData that is to be copied.
677 public ClipData(ClipData other) { argument
678 mClipDescription = other.mClipDescription;
679 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);
429 * any other types to byte arrays.
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbAlsaManager.java102 AlsaDevice other = (AlsaDevice)obj;
103 return (mType == other.mType && mCard == other.mCard && mDevice == other.mDevice);
/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
H A DXmlConfigTests.java188 NetworkSecurityConfig other = appConfig.getConfigForHostname("google.com");
189 assertEquals(config, other);
204 NetworkSecurityConfig other = appConfig.getConfigForHostname("google.com");
205 MoreAsserts.assertNotEqual(config, other);
/frameworks/native/services/inputflinger/
H A DInputWindow.h143 * overlay other windows for the purpose of implementing the secure views feature.
144 * Trusted overlays, such as IME windows, can partly obscure other windows without causing
151 bool overlaps(const InputWindowInfo* other) const;
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTelephonyTest.java209 InstanceKey other = (InstanceKey) obj;
210 return (other.mClass == mClass && other.mInstName.equals(mInstName)
211 && other.mObj == mObj);
/frameworks/rs/cpu_ref/
H A DrsCpuCore.h36 typedef void (*ReduceCombinerFunc_t)(uint8_t *accum, const uint8_t *other);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java286 * that it can be drawn above other children.
627 // Animation might be ended by other animators during a layout.
682 // if animator is running or we have other active recover animations, we try
790 View other = lm.getChildAt(i);
791 if (other == viewHolder.itemView) {
794 if (other.getBottom() < top || other.getTop() > bottom
795 || other.getRight() < left || other.getLeft() > right) {
798 final ViewHolder otherVh = mRecyclerView.getChildViewHolder(other);
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java149 * Compare this key against other native keys, request keys, result keys, and
210 // TODO: remove this; other places should use #getTypeReference() instead
274 public CameraMetadataNative(CameraMetadataNative other) { argument
276 mMetadataPtr = nativeAllocateCopy(other);
283 * Move the contents from {@code other} into a new camera metadata instance.</p>
285 * <p>After this call, {@code other} will become empty.</p>
287 * @param other the previous metadata instance which will get pilfered
288 * @return a new metadata instance with the values from {@code other} moved into it
290 public static CameraMetadataNative move(CameraMetadataNative other) { argument
292 newObject.swap(other);
1078 nativeAllocateCopy(CameraMetadataNative other) argument
1083 nativeSwap(CameraMetadataNative other) argument
1109 swap(CameraMetadataNative other) argument
[all...]
/frameworks/base/tools/apilint/
H A Dapilint.py486 other = "unregister" + m.name[8:]
487 if other not in methods:
490 other = "register" + m.name[10:]
491 if other not in methods:
499 other = "remove" + m.name[3:]
500 if other not in methods:
503 other = "add" + m.name[6:]
504 if other not in methods:
/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfigurationMap.java220 * listed in the return value of this method. Including any other output Surface as a target
807 * <p>In other words, using a repeating YUV request would result in a steady frame rate
848 * All other formats may or may not have an allowed stall duration on a per-capability basis;
930 final StreamConfigurationMap other = (StreamConfigurationMap) obj;
932 return Arrays.equals(mConfigurations, other.mConfigurations) &&
933 Arrays.equals(mMinFrameDurations, other.mMinFrameDurations) &&
934 Arrays.equals(mStallDurations, other.mStallDurations) &&
935 Arrays.equals(mDepthConfigurations, other.mDepthConfigurations) &&
937 other.mHighSpeedVideoConfigurations);
1056 * <p>All other format
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp721 const History* other; local
728 other = &future;
739 // So other->eventTime <= current->eventTime <= sampleTime.
740 other = touchState.getHistory(1);
741 nsecs_t delta = current->eventTime - other->eventTime;
779 if (other->idBits.hasBit(id)
781 const PointerCoords& otherCoords = other->getPointerById(id);
789 "other (%0.3f, %0.3f), alpha %0.3f",
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java1081 * @param right Index of the other element to compare.
1545 Spanned other = (Spanned) o;
1547 Object[] otherSpans = other.getSpans(0, other.length(), Object.class);
1553 if (other != otherSpan ||
1554 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
1555 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) ||
1556 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) {
1560 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
1561 getSpanEnd(thisSpan) != other
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java98 * use by other applications. Applications should release the camera
317 * the same camera is opened by other applications, this will throw a
321 * otherwise it will remain locked and be unavailable to other applications.
326 * <p>Callbacks from other methods are delivered to the event loop of the
368 * given hal API version. If the same camera is opened by other applications
373 * otherwise it will remain locked and be unavailable to other applications.
378 * Callbacks from other methods are delivered to the event loop of the
481 * <p>Intended to use by the camera2 shim only, do <i>not</i> use this for other code.</p>
552 * temporarily for another process to use; once the other process is done
566 * Re-locks the camera to prevent other processe
2442 copyFrom(Parameters other) argument
2460 same(Parameters other) argument
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp764 sp<AMessage> AMessage::changesFrom(const sp<const AMessage> &other, bool deep) const { argument
765 if (other == NULL) {
770 if (mWhat != other->mWhat) {
773 if (mHandler != other->mHandler) {
779 const Item *oitem = other->findItem(item.mName, item.mType);
/frameworks/base/core/java/android/content/res/
H A DResourcesImpl.java650 // simply turning off all preloading), as well as any other configs specified
1094 void setTo(ThemeImpl other) { argument
1096 synchronized (other.mKey) {
1097 AssetManager.copyTheme(mTheme, other.mTheme);
1099 mThemeResId = other.mThemeResId;
1100 mKey.setTo(other.getKey());
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp157 int other; member in struct:android::graphics_memory_pss
189 ALOGW("failed to get other pss: %zd", pss);
192 graphics_mem->other = pss / 1024;
456 stats[HEAP_OTHER_MEMTRACK].pss = graphics_mem.other;
457 stats[HEAP_OTHER_MEMTRACK].privateDirty = graphics_mem.other;
525 pss = uss = memtrack = graphics_mem.graphics + graphics_mem.gl + graphics_mem.other;
1106 // Sanity check the number of other statistics expected in Java matches here.

Completed in 1243 milliseconds

<<111213141516