Searched refs:other (Results 351 - 375 of 396) sorted by relevance

<<111213141516

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java154 IntArray other = (IntArray) obj;
155 return Arrays.equals(mArray, other.mArray);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteProviderService.java531 public boolean hasMessenger(Messenger other) { argument
532 return mMessenger.getBinder() == other.getBinder();
589 * This handler should not be used to handle any messages other than those
/frameworks/base/core/java/android/net/
H A DUri.java67 because the internal fields are final and the memory model guarantees other
69 that some threads will immediately see changes from other threads on
105 matching. In other words, the authority component wins."
326 * default port explicitly and the other leaves it implicit, they will not
334 Uri other = (Uri) o;
336 return toString().equals(other.toString());
351 public int compareTo(Uri other) { argument
352 return toString().compareTo(other.toString());
363 * to logs and other places where PII should be avoided.
1807 * all other character
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java296 final Network other;
298 other = (Network) o;
302 return ssid.equals(other.ssid) && key_mgmt.equals(other.key_mgmt);
/frameworks/native/include/media/openmax/
H A DOMX_Component.h99 OMX_OTHER_PORTDEFINITIONTYPE other; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon1395
/frameworks/rs/api/
H A Drs_for_each.spec22 The other functions are used to get the characteristics of the invocation of
249 &nbsp;&nbsp;// to the other dimensions, extract them from the kernel context:<br/>
359 than one face present. In all other cases, it returns false. See @rsGetDimX() for an
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp36 // a value between "other" + 1 and "other" + INT32_MAX, the choice of
38 // In general, this means (new_self) returned is max(self, other) + 1.
40 static uint32_t incrementSequence(uint32_t self, uint32_t other) { argument
41 int32_t diff = (int32_t) self - (int32_t) other;
43 return self + 1; // we're already ahead of other.
45 return other + 1; // we're behind, so move just ahead of other.
182 // On the other hand, this barrier is required.
303 case EINTR: // wait was interrupted by signal or other spuriou
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java118 * An interface for the RemoteAdapter to notify other classes when adapters
716 // Otherwise, preload other indices as necessary
766 RemoteViewsCacheKey other = (RemoteViewsCacheKey) o;
767 return other.filter.equals(filter) && other.widgetId == widgetId;
1101 // Queue up other indices to be preloaded based on this position
H A DGridView.java1951 final View other = getChildAt(i);
1952 other.getDrawingRect(otherRect);
1953 offsetDescendantRectToMyCoords(other, otherRect);
H A DListView.java1896 * Header and Footer views are not scrapped / recycled like other views but they are still
2136 * @param lookDown Whether to look down for other positions.
2177 * @param lookDown whether to look down for other positions
2528 // if the global result is going to be some other view within this
3621 * Sets the drawable that will be drawn above all other list content.
3634 * @return The drawable that will be drawn above all other list content
3641 * Sets the drawable that will be drawn below all other list content.
3653 * @return The drawable that will be drawn below all other list content
3689 View other = getChildAt(i);
3690 other
[all...]
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java62 * {@link #getSessionToken() session token} to other processes to allow them to
65 * To receive commands, media keys, and other events a {@link Callback} must be
90 * System only flag for a session that needs to have priority over all other
135 * user other than your own you must hold the
697 Token other = (Token) obj;
699 if (other.mBinder != null)
701 } else if (!mBinder.asBinder().equals(other.mBinder.asBinder()))
834 * not hold audio focus in order to allow other sessions play seamlessly. The state of
844 * hold audio focus in order to allow other sessions play seamlessly. The state of playback
857 * focus in order to allow other session
[all...]
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java178 public boolean equals(Object other) { argument
179 if (!(other instanceof AgentInfo)) {
182 AgentInfo o = (AgentInfo) other;
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp275 // been pressed. When it expires, we preempt dispatch and drop all other pending events.
440 // the touch into the other window.
1720 // Unlike key events, generic motion events don't tend to transfer focus to other
2093 // Notify other system components and prepare to start the next dispatch cycle.
2116 // Notify other system components.
3694 // The fallback keycode cannot change at any other point in the lifecycle.
4084 * by synthesizing a key down but that will cause other problems.
4155 // other value and we need to track the motion so we can send cancellation events for
4311 void InputDispatcher::InputState::copyPointerStateTo(InputState& other) const {
4315 for (size_t j = 0; j < other
4466 copyFrom(const TouchState& other) argument
[all...]
H A DInputDispatcher.h194 * and other system components.
236 /* Intercepts a touch, trackball or other motion event before queueing it.
263 * into other applications.
266 * is safe to call while holding other locks. (Most other methods make no such guarantees!)
335 * window associated with the other channel.
737 void copyPointerStateTo(InputState& other) const;
981 void copyFrom(const TouchState& other);
H A DInputReader.cpp1546 void RawPointerData::copyFrom(const RawPointerData& other) { argument
1547 pointerCount = other.pointerCount;
1548 hoveringIdBits = other.hoveringIdBits;
1549 touchingIdBits = other.touchingIdBits;
1552 pointers[i] = other.pointers[i];
1555 idToIndex[id] = other.idToIndex[id];
1589 void CookedPointerData::copyFrom(const CookedPointerData& other) { argument
1590 pointerCount = other.pointerCount;
1591 hoveringIdBits = other.hoveringIdBits;
1592 touchingIdBits = other
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackLayoutAlgorithm.java1219 * {@param other} rect in the {@param extent} side.
1221 private int getScaleForExtent(Rect instance, Rect other, int value, int minValue, argument
1224 float scale = Utilities.clamp01((float) instance.width() / other.width());
1227 float scale = Utilities.clamp01((float) instance.height() / other.height());
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java1218 * @hide Return true if the sequence of 'other' is better than this. Assumes
1219 * that 'this' is your current sequence and 'other' is a new one you have
1222 public boolean isOtherSeqNewer(Configuration other) { argument
1223 if (other == null) {
1227 if (other.seq == 0) {
1228 // If the other sequence is not specified, then we must assume
1234 // other is better. Yes we have a preference for other. Sue us.
1237 int diff = other.seq - seq;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java202 * this flag to <code>true</code> so that views will be avilable to other RecyclerViews
408 * <p>Laying out invisible elements will eventually come with performance cost. On the other
457 // 1) by checking children and other variables, find an anchor coordinate and an anchor
2127 public SavedState(SavedState other) { argument
2128 mAnchorPosition = other.mAnchorPosition;
2129 mAnchorOffset = other.mAnchorOffset;
2130 mAnchorLayoutFromEnd = other.mAnchorLayoutFromEnd;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/core/jni/
H A DAndroid.mk286 # b/22414716: thread_local (android/graphics/Paint.cpp) and Clang don't like each other at the
/frameworks/base/include/androidfw/
H A DResourceTypes.h92 * the first set of regions is larger than the other set of regions. The
1384 // linking with other resource tables.
1414 // to supply meta-data about the attribute; for all other resource types
1538 // Adds mappings from the other DynamicRefTable
1539 status_t addMappings(const DynamicRefTable& other);
1612 * to follow references to other resources to get the "real" value to
1679 status_t setTo(const Theme& other);
1690 * to follow references to other resources to get the "real" value to
1857 // outData (using free(3)). On failure, any status_t value other than
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp403 /// section and all other reference to this symbol should refer to this
449 (ResolveInfo::Visibility)pSym.other());
451 // output all other alias symbols if any
467 (ResolveInfo::Visibility)alias->other());
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.cpp1719 bool HWC2On1Adapter::Display::Config::merge(const Config& other) argument
1725 if (getAttribute(attribute) != other.getAttribute(attribute)) {
1729 int32_t otherColorTransform = other.getAttribute(ColorTransform);
1733 other.mHwc1Ids.at(otherColorTransform));
1737 other.mHwc1Ids.at(otherColorTransform));
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java1723 // Check if we need to destroy any services (if no other app widgets are
2681 * If there are other widgets with the same package, leaves it in the cache, otherwise it
2699 // Check if there is any other widget with the same package name.
3095 // Remove hosts and notify providers in other profiles.
3323 // profile and not the other way around.
3722 ProviderId other = (ProviderId) obj;
3723 if (uid != other.uid) {
3727 if (other.componentName != null) {
3730 } else if (!componentName.equals(other.componentName)) {
3825 HostId other
[all...]
/frameworks/base/core/java/android/text/
H A DLayout.java144 * width, and other standard properties.
164 * width, and other standard properties.
898 * the direction other than the paragraph's primary direction.
1210 float other = Math.abs(getHorizontal(aft, primary) - horiz);
1212 if (other < dist) {
1213 dist = other;

Completed in 1462 milliseconds

<<111213141516