Searched refs:other (Results 376 - 400 of 525) sorted by relevance

<<11121314151617181920>>

/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/
H A DAndroid.mk80 # by only including service makefiles and not any tests or other
/frameworks/base/services/tests/notification/src/com/android/server/notification/
H A DBuzzBeepBlinkTest.java506 NotificationRecord other = getNoisyOtherNotification();
510 mService.buzzBeepBlinkLocked(other); // this takes the audio stream
521 NotificationRecord other = getQuietOtherNotification();
528 mService.buzzBeepBlinkLocked(other);
783 NotificationRecord other = getNoisyOtherNotification();
787 mService.buzzBeepBlinkLocked(other); // this takes the vibrate stream
798 NotificationRecord other = getQuietOtherNotification();
805 mService.buzzBeepBlinkLocked(other);
/frameworks/base/telephony/java/android/telephony/mbms/
H A DDownloadRequest.java181 public static DownloadRequest copy(DownloadRequest other) { argument
182 return new DownloadRequest(other);
/frameworks/base/tools/aapt2/flatten/
H A DXmlFlattener_test.cpp257 R"(<element value="\?hello" pattern="\\d{5}" other="&quot;">\\d{5}</element>)");
269 const StringPiece16 kOther = u"other";
/frameworks/compile/mclinker/lib/Support/Unix/
H A DPathV3.inc47 // if we meet other else
/frameworks/compile/mclinker/lib/Support/Windows/
H A DPathV3.inc41 // if we meet other else
/frameworks/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java239 /*package*/ static void nSet(long native_object, long other) { argument
245 Matrix_Delegate src = sManager.getDelegate(other);
455 Matrix_Delegate other = sManager.getDelegate(other_matrix);
456 if (d != null && other != null) {
457 d.preTransform(other.mValues);
523 Matrix_Delegate other = sManager.getDelegate(other_matrix);
524 if (d != null && other != null) {
525 d.postTransform(other.mValues);
/frameworks/base/core/java/android/app/
H A DNotificationManager.java434 * All other fields are ignored for channels that already exist.
1043 final Policy other = (Policy) o;
1044 return other.priorityCategories == priorityCategories
1045 && other.priorityCallSenders == priorityCallSenders
1046 && other.priorityMessageSenders == priorityMessageSenders
1047 && other.suppressedVisualEffects == suppressedVisualEffects;
H A DActivityManager.java853 * there are other tasks in the stack.
1285 public void copyFrom(TaskDescription other) { argument
1286 mLabel = other.mLabel;
1287 mIcon = other.mIcon;
1288 mIconFilename = other.mIconFilename;
1289 mColorPrimary = other.mColorPrimary;
1290 mColorBackground = other.mColorBackground;
1291 mStatusBarColor = other.mStatusBarColor;
1292 mNavigationBarColor = other.mNavigationBarColor;
1297 * if they weren't set on {@code other}
1300 copyFromPreserveHiddenFields(TaskDescription other) argument
[all...]
/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
1036 NdefRecord other = (NdefRecord) obj;
1037 if (!Arrays.equals(mId, other.mId)) return false;
1038 if (!Arrays.equals(mPayload, other.mPayload)) return false;
1039 if (mTnf != other.mTnf) return false;
1040 return Arrays.equals(mType, other.mType);
/frameworks/base/core/java/android/widget/
H A DActionMenuView.java818 public LayoutParams(ViewGroup.LayoutParams other) { argument
819 super(other);
822 public LayoutParams(LayoutParams other) { argument
823 super((LinearLayout.LayoutParams) other);
824 isOverflowButton = other.isOverflowButton;
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeSwitchingController.java122 * @param other the object to be compared.
124 * to, or greater than the specified <code>other</code> object.
127 public int compareTo(ImeSubtypeListItem other) { argument
128 int result = compareNullableCharSequences(mImeName, other.mImeName);
133 result = (mIsSystemLocale ? -1 : 0) - (other.mIsSystemLocale ? -1 : 0);
138 result = (mIsSystemLanguage ? -1 : 0) - (other.mIsSystemLanguage ? -1 : 0);
142 return compareNullableCharSequences(mSubtypeName, other.mSubtypeName);
/frameworks/base/services/net/java/android/net/ip/
H A DRouterAdvertisementDaemon.java135 public RaParams(RaParams other) { argument
136 hasDefaultRoute = other.hasDefaultRoute;
137 mtu = other.mtu;
138 prefixes = (HashSet) other.prefixes.clone();
139 dnses = (HashSet) other.dnses.clone();
H A DIpManager.java119 // expose DHCPv4 results to other APIs (e.g., WifiInfo#setInetAddress).
372 public ProvisioningConfiguration(ProvisioningConfiguration other) { argument
373 mEnableIPv4 = other.mEnableIPv4;
374 mEnableIPv6 = other.mEnableIPv6;
375 mUsingIpReachabilityMonitor = other.mUsingIpReachabilityMonitor;
376 mRequestedPreDhcpActionMs = other.mRequestedPreDhcpActionMs;
377 mInitialConfig = InitialConfiguration.copy(other.mInitialConfig);
378 mStaticIpConfig = other.mStaticIpConfig;
379 mApfCapabilities = other.mApfCapabilities;
380 mProvisioningTimeoutMs = other
[all...]
/frameworks/support/tv-provider/src/android/support/media/tv/
H A DBasePreviewProgram.java301 public boolean equals(Object other) { argument
302 if (!(other instanceof BasePreviewProgram)) {
305 return mValues.equals(((BasePreviewProgram) other).mValues);
538 * @param other The Program you're copying from.
540 public Builder(BasePreviewProgram other) { argument
541 mValues = new ContentValues(other.mValues);
H A DBaseProgram.java274 public boolean equals(Object other) { argument
275 if (!(other instanceof BaseProgram)) {
278 return mValues.equals(((BaseProgram) other).mValues);
513 * @param other The Program you're copying from.
515 public Builder(BaseProgram other) { argument
516 mValues = new ContentValues(other.mValues);
759 * Sets whether this channel can be searched for in other applications.
840 * thumbs-up count and the other for thumbs-down count, with a comma between them.
H A DChannel.java336 public boolean equals(Object other) { argument
337 if (!(other instanceof Channel)) {
340 return mValues.equals(((Channel) other).mValues);
577 public Builder(Channel other) { argument
578 mValues = new ContentValues(other.mValues);
817 * Sets whether this channel can be searched for in other applications.
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java835 public LayoutParams(ViewGroup.LayoutParams other) { argument
836 super(other);
839 public LayoutParams(LayoutParams other) { argument
840 super((ViewGroup.LayoutParams) other);
841 isOverflowButton = other.isOverflowButton;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DStaggeredGridLayoutManager.java1959 final Span other = mSpans[i];
1960 int otherLine = other.getEndLine(defaultLine);
1962 min = other;
1972 final Span other = mSpans[i];
1973 int otherLine = other.getStartLine(defaultLine);
1975 max = other;
2974 FullSpanItem other = mFullSpanItems.get(i);
2975 if (other.mPosition == fullSpanItem.mPosition) {
2982 if (other.mPosition >= fullSpanItem.mPosition) {
3147 public SavedState(SavedState other) { argument
[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/base/services/core/java/com/android/server/am/
H A DRecentTasks.java241 * Removes recent tasks and any other state kept in memory for the passed in user. Does not
585 TaskRecord other = task.mNextAffiliate;
586 if (other == null) {
587 other = task.mPrevAffiliate;
589 if (other != null) {
590 int otherIndex = indexOf(other);
594 if (other == task.mNextAffiliate) {
618 "addRecent: couldn't find other affiliation " + other);
743 // There is still a slim chance that there are other task
[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 mNumExcessiveCpu += other.mNumExcessiveCpu;
253 if (other.mNumCachedKill > 0) {
254 addCachedKill(other.mNumCachedKill, other.mMinCachedKillPss,
255 other.mAvgCachedKillPss, other.mMaxCachedKillPss);
/frameworks/av/include/media/nbaio/
H A DNBLog.h100 EntryIterator(const EntryIterator &other);
111 bool operator!=(const EntryIterator &other) const;
112 int operator-(const EntryIterator &other) const;
474 // That would allow us to record other information about the source location beyond timestamps.
/frameworks/av/media/libnbaio/include/media/nbaio/
H A DNBLog.h100 EntryIterator(const EntryIterator &other);
111 bool operator!=(const EntryIterator &other) const;
112 int operator-(const EntryIterator &other) const;
474 // That would allow us to record other information about the source location beyond timestamps.

Completed in 706 milliseconds

<<11121314151617181920>>