Searched refs:other (Results 1 - 25 of 68) sorted by relevance

123

/frameworks/base/include/utils/
H A DString16.h88 void setTo(const String16& other);
89 status_t setTo(const char16_t* other);
90 status_t setTo(const char16_t* other, size_t len);
91 status_t setTo(const String16& other,
95 status_t append(const String16& other);
96 status_t append(const char16_t* other, size_t len);
98 inline String16& operator=(const String16& other);
100 inline String16& operator+=(const String16& other);
101 inline String16 operator+(const String16& other) const;
120 inline int compare(const String16& other) cons
172 operator =(const String16& other) argument
178 operator +=(const String16& other) argument
[all...]
H A DString8.h45 * If you are going to use other GetUtf... functions defined in this header
48 * other functions do not check whether the string is valid UTF-8 or not.
163 void setTo(const String8& other);
164 status_t setTo(const char* other);
165 status_t setTo(const char* other, size_t numChars);
166 status_t setTo(const char16_t* other, size_t numChars);
167 status_t setTo(const char32_t* other,
170 status_t append(const String8& other);
171 status_t append(const char* other);
172 status_t append(const char* other, size_
358 operator =(const String8& other) argument
364 operator =(const char* other) argument
370 operator +=(const String8& other) argument
383 operator +=(const char* other) argument
[all...]
H A DRefBase.h197 sp(T* other);
198 sp(const sp<T>& other);
199 template<typename U> sp(U* other);
200 template<typename U> sp(const sp<U>& other);
206 sp& operator = (T* other);
207 sp& operator = (const sp<T>& other);
209 template<typename U> sp& operator = (const sp<U>& other);
210 template<typename U> sp& operator = (U* other);
213 void force_set(T* other);
257 wp(T* other);
349 sp(T* other) argument
356 sp(const sp<T>& other) argument
363 sp(U* other) argument
369 sp(const sp<U>& other) argument
382 operator =(const sp<T>& other) argument
391 operator =(T* other) argument
400 operator =(const sp<U>& other) argument
410 operator =(U* other) argument
419 force_set(T* other) argument
450 wp(T* other) argument
457 wp(const wp<T>& other) argument
464 wp(const sp<T>& other) argument
473 wp(U* other) argument
480 wp(const wp<U>& other) argument
490 wp(const sp<U>& other) argument
505 operator =(T* other) argument
516 operator =(const wp<T>& other) argument
528 operator =(const sp<T>& other) argument
540 operator =(U* other) argument
551 operator =(const wp<U>& other) argument
563 operator =(const sp<U>& other) argument
575 set_object_and_refs(T* other, weakref_type* refs) argument
[all...]
H A DBitSet.h64 inline bool operator== (const BitSet32& other) const { return value == other.value; }
65 inline bool operator!= (const BitSet32& other) const { return value != other.value; }
/frameworks/base/core/java/android/util/
H A DPair.java47 final Pair<F, S> other;
49 other = (Pair<F, S>) o;
53 return first.equals(other.first) && second.equals(other.second);
H A DTypedValue.java156 * This tells you how to interpret the other fields in the object. */
362 * @param base The base value of this fraction. In other words, a
364 * @param pbase The parent base value of this fraction. In other
386 * @param base The base value of this fraction. In other words, a
388 * @param pbase The parent base value of this fraction. In other
466 public void setTo(TypedValue other) argument
468 type = other.type;
469 string = other.string;
470 data = other.data;
471 assetCookie = other
[all...]
/frameworks/base/core/java/android/os/
H A DWorkSource.java81 * @param other The WorkSource to compare against.
84 public boolean diff(WorkSource other) { argument
86 if (N != other.mNum) {
90 final int[] uids2 = other.mUids;
101 * work source. If <var>other</var> is null, the current work source
104 public void set(WorkSource other) { argument
105 if (other == null) {
109 mNum = other.mNum;
110 if (other.mUids != null) {
112 System.arraycopy(other
129 setReturningDiffs(WorkSource other) argument
150 add(WorkSource other) argument
157 addReturningNewbs(WorkSource other) argument
183 remove(WorkSource other) argument
205 updateLocked(WorkSource other, boolean set, boolean returnNewbs) argument
[all...]
/frameworks/base/core/java/android/content/
H A DSyncOperation.java68 SyncOperation(SyncOperation other) { argument
69 this.account = other.account;
70 this.syncSource = other.syncSource;
71 this.authority = other.authority;
72 this.extras = new Bundle(other.extras);
73 this.expedited = other.expedited;
114 SyncOperation other = (SyncOperation)o;
115 if (earliestRunTime == other.earliestRunTime) {
118 return (earliestRunTime < other.earliestRunTime) ? -1 : 1;
H A DPeriodicSync.java77 final PeriodicSync other = (PeriodicSync) o;
79 return account.equals(other.account)
80 && authority.equals(other.authority)
81 && period == other.period
82 && SyncStorageEngine.equals(extras, other.extras);
H A DSyncAdapterType.java86 final SyncAdapterType other = (SyncAdapterType)o;
88 return authority.equals(other.authority) && accountType.equals(other.accountType);
H A DIntent.java121 * at the other information in the intent (the action, data/type, and
125 * all of the other Intent attributes become optional.</p>
133 * <p>Here are some examples of other operations you can specify as intents
178 * class to be run. Often these will not include any other information,
303 * MAIN action is a main entry point (not requiring any other information in
443 * also supports two other standard categories: ALTERNATIVE and
615 * Used to indicate that some piece of data should be attached to some other
1082 * or other appropriate UI for placing a call.
1466 * charging state, level, and other information about the battery.
1759 * then cell radio and possibly other radio
5008 fillIn(Intent other, int flags) argument
5120 filterEquals(Intent other) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DCommandDetails.java43 public boolean compareTo(CommandDetails other) { argument
44 return (this.compRequired == other.compRequired &&
45 this.commandNumber == other.commandNumber &&
46 this.commandQualifier == other.commandQualifier &&
47 this.typeOfCommand == other.typeOfCommand);
/frameworks/base/media/libstagefright/include/
H A Dstagefright_string.h43 bool operator<(const string &other) const;
44 bool operator==(const string &other) const;
/frameworks/base/media/libstagefright/
H A Dstring.cpp70 bool string::operator<(const string &other) const {
71 return mString < other.mString;
74 bool string::operator==(const string &other) const {
75 return mString == other.mString;
/frameworks/base/include/media/stagefright/foundation/
H A DAString.h69 bool operator==(const AString &other) const;
70 bool operator<(const AString &other) const;
71 bool operator>(const AString &other) const;
73 int compare(const AString &other) const;
/frameworks/base/core/java/android/accounts/
H A DAccount.java35 final Account other = (Account)o;
36 return name.equals(other.name) && type.equals(other.type);
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java93 Key other = (Key)otherObj;
94 if (type != other.type) {
97 if (!packageName.equals(other.packageName)) {
100 if (activity != other.activity) {
103 if (who != other.who) {
105 if (!who.equals(other.who)) {
108 } else if (other.who != null) {
112 if (requestCode != other.requestCode) {
115 if (requestIntent != other.requestIntent) {
117 if (!requestIntent.filterEquals(other
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceGroupAdapter.java96 public int compareTo(PreferenceLayout other) { argument
97 int compareNames = name.compareTo(other.name);
99 if (resId == other.resId) {
100 if (widgetResId == other.widgetResId) {
103 return widgetResId - other.widgetResId;
106 return resId - other.resId;
/frameworks/base/core/java/android/text/util/
H A DRfc822Token.java192 Rfc822Token other = (Rfc822Token) o;
193 return (stringEquals(mName, other.mName) &&
194 stringEquals(mAddress, other.mAddress) &&
195 stringEquals(mComment, other.mComment));
/frameworks/base/media/libstagefright/foundation/
H A DAString.cpp125 bool AString::operator==(const AString &other) const {
126 return mSize == other.mSize && !memcmp(mData, other.mData, mSize);
289 bool AString::operator<(const AString &other) const {
290 return compare(other) < 0;
293 bool AString::operator>(const AString &other) const {
294 return compare(other) > 0;
297 int AString::compare(const AString &other) const {
298 return strcmp(mData, other.mData);
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java180 InternalInsetsInfo other = (InternalInsetsInfo)o;
181 if (!contentInsets.equals(other.contentInsets)) {
184 if (!visibleInsets.equals(other.visibleInsets)) {
187 return mTouchableInsets == other.mTouchableInsets;
193 void set(InternalInsetsInfo other) { argument
194 contentInsets.set(other.contentInsets);
195 visibleInsets.set(other.visibleInsets);
196 mTouchableInsets = other.mTouchableInsets;
502 * always check for the result of this method before calling any other method.
512 * any other metho
[all...]
/frameworks/base/libs/utils/
H A DString16.cpp376 void String16::setTo(const String16& other) argument
378 SharedBuffer::bufferFromData(other.mString)->acquire();
380 mString = other.mString;
383 status_t String16::setTo(const String16& other, size_t len, size_t begin) argument
385 const size_t N = other.size();
393 setTo(other);
397 if (&other == this) {
401 return setTo(other.string()+begin, len);
404 status_t String16::setTo(const char16_t* other) argument
406 return setTo(other, strlen1
409 setTo(const char16_t* other, size_t len) argument
423 append(const String16& other) argument
[all...]
H A DString8.cpp295 void String8::setTo(const String8& other) argument
297 SharedBuffer::bufferFromData(other.mString)->acquire();
299 mString = other.mString;
302 status_t String8::setTo(const char* other) argument
304 const char *newString = allocFromUTF8(other, strlen(other));
313 status_t String8::setTo(const char* other, size_t len) argument
315 const char *newString = allocFromUTF8(other, len);
324 status_t String8::setTo(const char16_t* other, size_t len) argument
326 const char *newString = allocFromUTF16(other, le
335 setTo(const char32_t* other, size_t len) argument
346 append(const String8& other) argument
359 append(const char* other) argument
364 append(const char* other, size_t otherLen) argument
396 real_append(const char* other, size_t otherLen) argument
447 find(const char* other, size_t start) const argument
[all...]
/frameworks/base/opengl/libagl/
H A DTokenizer.h33 Tokenizer(const Tokenizer& other);
/frameworks/base/libs/ui/
H A DInput.cpp179 InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) : argument
180 mId(other.mId), mName(other.mName), mSources(other.mSources),
181 mKeyboardType(other.mKeyboardType),
182 mMotionRanges(other.mMotionRanges) {

Completed in 647 milliseconds

123