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

123

/frameworks/base/include/utils/
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_
355 operator =(const String8& other) argument
361 operator =(const char* other) argument
367 operator +=(const String8& other) argument
380 operator +=(const char* other) argument
[all...]
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 DRefBase.h181 sp(T* other);
182 sp(const sp<T>& other);
183 template<typename U> sp(U* other);
184 template<typename U> sp(const sp<U>& other);
190 sp& operator = (T* other);
191 sp& operator = (const sp<T>& other);
193 template<typename U> sp& operator = (const sp<U>& other);
194 template<typename U> sp& operator = (U* other);
197 void force_set(T* other);
241 wp(T* other);
335 operator =(const sp<T>& other) argument
343 operator =(T* other) argument
352 operator =(const sp<U>& other) argument
361 operator =(U* other) argument
370 force_set(T* other) argument
401 wp(T* other) argument
408 wp(const wp<T>& other) argument
415 wp(const sp<T>& other) argument
424 wp(U* other) argument
431 wp(const wp<U>& other) argument
441 wp(const sp<U>& other) argument
456 operator =(T* other) argument
467 operator =(const wp<T>& other) argument
477 operator =(const sp<T>& other) argument
488 operator =(U* other) argument
499 operator =(const wp<U>& other) argument
509 operator =(const sp<U>& other) argument
520 set_object_and_refs(T* other, weakref_type* refs) argument
[all...]
/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/media/libdrm/mobile2/src/dcf/
H A DDrmDcfCommon.cpp60 Box::Box(const Box& other) argument
62 mSize = other.mSize;
63 mType = other.mType;
64 mLargeSize = other.mLargeSize;
67 if(other.mUserType)
70 memcpy(mUserType,other.mUserType,USER_TYPE_LEN);
74 Box& Box::operator=(const Box& other) argument
76 if(this == &other)
87 if(other.mUserType)
90 memcpy(mUserType, other
[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.
1735 * then cell radio and possibly other radio
4984 fillIn(Intent other, int flags) argument
5096 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/core/java/android/accounts/
H A DAccount.java35 final Account other = (Account)o;
36 return name.equals(other.name) && type.equals(other.type);
H A DAuthenticatorDescription.java102 final AuthenticatorDescription other = (AuthenticatorDescription) o;
103 return 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/libdrm/mobile2/include/dcf/
H A DDrmRawContent.h71 DrmRawContent& operator=(const DrmRawContent& other){return *this;} argument
/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/awt/java/awt/
H A DAlphaComposite.java258 AlphaComposite other = (AlphaComposite)obj;
259 return (this.rule == other.getRule() && this.alpha == other.getAlpha());
/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
305 mString = allocFromUTF8(other, strlen(other));
312 status_t String8::setTo(const char* other, size_t len) argument
315 mString = allocFromUTF8(other, len);
322 status_t String8::setTo(const char16_t* other, size_t len) argument
325 mString = allocFromUTF16(other, le
332 setTo(const char32_t* other, size_t len) argument
342 append(const String8& other) argument
355 append(const char* other) argument
360 append(const char* other, size_t otherLen) argument
371 real_append(const char* other, size_t otherLen) argument
421 find(const char* other, size_t start) const argument
[all...]
/frameworks/base/libs/surfaceflinger/
H A DTokenizer.h31 Tokenizer(const Tokenizer& other);
/frameworks/base/opengl/libagl/
H A DTokenizer.h33 Tokenizer(const Tokenizer& other);

Completed in 291 milliseconds

123