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

1234567891011

/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
H A Dandroid_os_Debug.cpp86 // Dalvik other extra sections.
187 int other; member in struct:android::graphics_memory_pss
219 ALOGW("failed to get other pss: %zd", pss);
222 graphics_mem->other = pss / 1024;
500 stats[HEAP_OTHER_MEMTRACK].pss = graphics_mem.other;
501 stats[HEAP_OTHER_MEMTRACK].privateDirty = graphics_mem.other;
593 pss = uss = memtrack = graphics_mem.graphics + graphics_mem.gl + graphics_mem.other;
1191 // Sanity check the number of other statistics expected in Java matches here.
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java151 public boolean preConcat(Matrix other) {
199 public boolean postConcat(Matrix other) {
452 * Preconcats the matrix with the specified matrix. M' = M * other
454 public boolean preConcat(Matrix other) { argument
455 nPreConcat(native_instance, other.native_instance);
516 * Postconcats the matrix with the specified matrix. M' = other * M
518 public boolean postConcat(Matrix other) { argument
519 nPostConcat(native_instance, other.native_instance);
/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/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java294 AccessPoint(Context context, AccessPoint other) { argument
296 copyFrom(other);
336 * equal to, or greater than the other AccessPoint.
350 public int compareTo(@NonNull AccessPoint other) { argument
352 if (isActive() && !other.isActive()) return -1;
353 if (!isActive() && other.isActive()) return 1;
356 if (isReachable() && !other.isReachable()) return -1;
357 if (!isReachable() && other.isReachable()) return 1;
360 if (isSaved() && !other.isSaved()) return -1;
361 if (!isSaved() && other
386 equals(Object other) argument
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsState.java838 public Setting(Setting other) { argument
839 name = other.name;
840 value = other.value;
841 defaultValue = other.defaultValue;
842 packageName = other.packageName;
843 id = other.id;
844 defaultFromSystem = other.defaultFromSystem;
845 tag = other.tag;
1050 // profile for the purpose of determining whether the other end is a
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java184 public boolean equals(Object other) { argument
185 if (!(other instanceof AgentInfo)) {
188 AgentInfo o = (AgentInfo) other;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowSurfaceController.java129 void reparentChildrenInTransaction(WindowSurfaceController other) { argument
130 if (SHOW_TRANSACTIONS) Slog.i(TAG, "REPARENT from: " + this + " to: " + other);
131 if ((mSurfaceControl != null) && (other.mSurfaceControl != null)) {
132 mSurfaceControl.reparentChildren(other.getHandle());
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DResourceBundle.java436 public void inheritConfigurationFrom(LayoutFileBundle other) { argument
437 mFileName = other.mFileName;
438 mModulePackage = other.mModulePackage;
439 mBindingClass = other.mBindingClass;
440 mFullBindingClass = other.mFullBindingClass;
441 mBindingClassName = other.mBindingClassName;
442 mBindingPackage = other.mBindingPackage;
443 mHasVariations = other.mHasVariations;
444 mIsMerge = other.mIsMerge;
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java71 * currently attached to the grid as children. All other adapter positions do not have
82 * Whenever layout parameters for a known LayoutRecord change, other LayoutRecords before
84 * of columns it spans changes, all bets for other items in the same direction are off
474 // There may be other offscreen views, but we need to maintain
491 // There may be other offscreen views, but we need to maintain
1444 public LayoutParams(ViewGroup.LayoutParams other) { argument
1445 super(other);
/frameworks/native/headers/media_plugin/media/openmax/
H A DOMX_Component.h99 OMX_OTHER_PORTDEFINITIONTYPE other; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon1526
/frameworks/native/include/media/openmax/
H A DOMX_Component.h99 OMX_OTHER_PORTDEFINITIONTYPE other; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon1637
/frameworks/native/libs/input/
H A DInputTransport.cpp736 const History* other; local
743 other = &future;
754 // So other->eventTime <= current->eventTime <= sampleTime.
755 other = touchState.getHistory(1);
756 nsecs_t delta = current->eventTime - other->eventTime;
794 if (other->idBits.hasBit(id)
796 const PointerCoords& otherCoords = other->getPointerById(id);
804 "other (%0.3f, %0.3f), alpha %0.3f",
H A DKeyCharacterMap.cpp94 KeyCharacterMap::KeyCharacterMap(const KeyCharacterMap& other) : argument
95 RefBase(), mType(other.mType), mKeysByScanCode(other.mKeysByScanCode),
96 mKeysByUsageCode(other.mKeysByUsageCode) {
97 for (size_t i = 0; i < other.mKeys.size(); i++) {
98 mKeys.add(other.mKeys.keyAt(i), new Key(*other.mKeys.valueAt(i)));
689 KeyCharacterMap::Key::Key(const Key& other) : argument
690 label(other.label), number(other
710 Behavior(const Behavior& other) argument
[all...]
/frameworks/native/libs/vr/libvrflinger/
H A Dhardware_composer.cpp878 // insulate VrFlinger and HWC z-order semantics from each other.
888 // The bottom layer is opaque, other layers blend.
1099 Layer::Layer(Layer&& other) { *this = std::move(other); } argument
1101 Layer& Layer::operator=(Layer&& other) { argument
1102 if (this != &other) {
1105 swap(hardware_composer_layer_, other.hardware_composer_layer_);
1106 swap(z_order_, other.z_order_);
1107 swap(blending_, other.blending_);
1108 swap(transform_, other
[all...]
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h254 State& operator=(const State& other) { argument
257 layersSortedByZ = other.layersSortedByZ;
258 displays = other.displays;
665 // 3. When accessing mHwc on a thread other than the main thread, we always
707 // it may be read from other threads with mStateLock held
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DInformationElementUtil.java365 public ExtendedCapabilities(ExtendedCapabilities other) { argument
366 capabilitiesBitSet = other.capabilitiesBitSet;
/frameworks/base/core/java/android/content/
H A DIntentFilter.java930 public boolean match(AuthorityEntry other) { argument
931 if (mWild != other.mWild) {
934 if (!mHost.equals(other.mHost)) {
937 if (mPort != other.mPort) {
946 final AuthorityEntry other = (AuthorityEntry)obj;
947 return match(other);
1407 * filter in order to match. In other words, adding a category to the
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java1470 * @hide Return true if the sequence of 'other' is better than this. Assumes
1471 * that 'this' is your current sequence and 'other' is a new one you have
1474 public boolean isOtherSeqNewer(Configuration other) { argument
1475 if (other == null) {
1479 if (other.seq == 0) {
1480 // If the other sequence is not specified, then we must assume
1486 // other is better. Yes we have a preference for other. Sue us.
1489 int diff = other.seq - seq;
/frameworks/base/core/java/android/print/
H A DPrintAttributes.java379 PrintAttributes other = (PrintAttributes) obj;
380 if (mColorMode != other.mColorMode) {
383 if (mDuplexMode != other.mDuplexMode) {
387 if (other.mMinMargins != null) {
390 } else if (!mMinMargins.equals(other.mMinMargins)) {
394 if (other.mMediaSize != null) {
397 } else if (!mMediaSize.equals(other.mMediaSize)) {
401 if (other.mResolution != null) {
404 } else if (!mResolution.equals(other.mResolution)) {
441 public void copyFrom(PrintAttributes other) { argument
[all...]
/frameworks/base/core/java/android/view/
H A DDisplay.java1223 public boolean equals(Object other) { argument
1224 if (this == other) {
1227 if (!(other instanceof Mode)) {
1230 Mode that = (Mode) other;
1369 public boolean equals(Object other) { argument
1370 if (this == other) {
1374 if (!(other instanceof HdrCapabilities)) {
1377 HdrCapabilities that = (HdrCapabilities) other;
H A DSurfaceControl.java132 * be disabled, but other measures can take place, for instance the
153 * composited on top of each-other into the surface. A pre-multiplied
335 + "Set the other properties and make the surface visible within "
354 public SurfaceControl(SurfaceControl other) { argument
355 mName = other.mName;
356 mNativeObject = other.mNativeObject;
357 other.mCloseGuard.close();
358 other.mNativeObject = 0;
626 public PhysicalDisplayInfo(PhysicalDisplayInfo other) { argument
627 copyFrom(other);
635 equals(PhysicalDisplayInfo other) argument
653 copyFrom(PhysicalDisplayInfo other) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java785 private ChooserTargetInfo(ChooserTargetInfo other, Intent fillInIntent, int flags) { argument
786 mSourceInfo = other.mSourceInfo;
787 mBackupResolveInfo = other.mBackupResolveInfo;
788 mChooserTarget = other.mChooserTarget;
789 mBadgeIcon = other.mBadgeIcon;
790 mBadgeContentDescription = other.mBadgeContentDescription;
791 mDisplayIcon = other.mDisplayIcon;
794 mModifiedScore = other.mModifiedScore;
/frameworks/base/core/java/com/android/internal/app/procstats/
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/base/core/java/com/android/internal/widget/
H A DLinearLayoutManager.java210 * this flag to <code>true</code> so that views will be available to other RecyclerViews
466 // 1) by checking children and other variables, find an anchor coordinate and an anchor
2240 public SavedState(SavedState other) { argument
2241 mAnchorPosition = other.mAnchorPosition;
2242 mAnchorOffset = other.mAnchorOffset;
2243 mAnchorLayoutFromEnd = other.mAnchorLayoutFromEnd;

Completed in 1282 milliseconds

1234567891011