Searched defs:other (Results 26 - 50 of 87) sorted by relevance

1234

/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dlearning_rate_controller-inl.h109 void CopyFrom(const LearningRateController &other) { argument
110 iteration_num_ = other.iteration_num_;
111 sample_num_ = other.sample_num_;
112 mini_batch_size_ = other.mini_batch_size_;
113 mini_batch_counter_ = other.mini_batch_counter_;
114 mode_ = other.mode_;
115 is_first_sample_ = other.is_first_sample_;
H A Dsparse_weight_vector.h45 explicit SparseWeightVector(const SparseWeightVector<Key, Hash> &other) { argument
46 CopyFrom(other);
48 void operator=(const SparseWeightVector<Key, Hash> &other) { argument
49 CopyFrom(other);
51 void CopyFrom(const SparseWeightVector<Key, Hash> &other) { argument
52 w_ = other.w_;
53 wmin_ = other.wmin_;
54 wmax_ = other.wmax_;
55 normalizer_ = other.normalizer_;
/frameworks/native/include/utils/
H A DString8.h67 void setTo(const String8& other);
68 status_t setTo(const char* other);
69 status_t setTo(const char* other, size_t numChars);
70 status_t setTo(const char16_t* other, size_t numChars);
71 status_t setTo(const char32_t* other,
74 status_t append(const String8& other);
75 status_t append(const char* other);
76 status_t append(const char* other, size_t numChars);
89 inline String8& operator=(const String8& other);
90 inline String8& operator=(const char* other);
276 operator =(const String8& other) argument
282 operator =(const char* other) argument
288 operator +=(const String8& other) argument
301 operator +=(const char* other) argument
[all...]
H A DBasicHashtable.h54 BasicHashtableImpl(const BasicHashtableImpl& other);
64 void setTo(const BasicHashtableImpl& other);
159 * bool operator==(const TKey& other) const; // return true if equal
160 * bool operator!=(const TKey& other) const; // return true if unequal
185 BasicHashtable(const BasicHashtable& other);
191 /* Making this hashtable a copy of the other hashtable.
194 * other: The hashtable to copy.
196 inline BasicHashtable<TKey, TEntry>& operator =(const BasicHashtable<TKey, TEntry> & other) { argument
197 setTo(other);
359 BasicHashtable<TKey, TEntry>::BasicHashtable(const BasicHashtable<TKey, TEntry>& other) argument
[all...]
/frameworks/native/opengl/libagl/
H A DTokenizer.cpp32 Tokenizer::Tokenizer(const Tokenizer& other) argument
33 : mRanges(other.mRanges)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
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/av/services/camera/libcameraservice/camera2/
H A DCameraMetadata.cpp35 CameraMetadata::CameraMetadata(const CameraMetadata &other) { argument
36 mBuffer = clone_camera_metadata(other.mBuffer);
39 CameraMetadata &CameraMetadata::operator=(const CameraMetadata &other) { argument
40 return operator=(other.mBuffer);
74 void CameraMetadata::acquire(CameraMetadata &other) { argument
75 acquire(other.release());
78 status_t CameraMetadata::append(const CameraMetadata &other) { argument
79 return append_camera_metadata(mBuffer, other.mBuffer);
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java349 * @param other The info from which to update the properties.
353 public void updateDynamicallyConfigurableProperties(AccessibilityServiceInfo other) { argument
354 eventTypes = other.eventTypes;
355 packageNames = other.packageNames;
356 feedbackType = other.feedbackType;
357 notificationTimeout = other.notificationTimeout;
358 flags = other.flags;
/frameworks/base/core/java/android/content/
H A DClipData.java72 * creating shortcuts (such as placing icons on the home screen) or other
99 * or other binary data as an attachment. This is accomplished through the
122 * URI consisting of a complicated structure that only other applications with
307 * and other things can be retrieved.
382 * and other things can be retrieved.
432 * and other things can be retrieved.
649 * @param other The existing ClipData that is to be copied.
651 public ClipData(ClipData other) { argument
652 mClipDescription = other.mClipDescription;
653 mIcon = 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/view/
H A DDisplayInfo.java171 public DisplayInfo(DisplayInfo other) { argument
172 copyFrom(other);
184 public boolean equals(DisplayInfo other) { argument
185 return other != null
186 && layerStack == other.layerStack
187 && flags == other.flags
188 && type == other.type
189 && Objects.equal(address, other.address)
190 && Objects.equal(name, other.name)
191 && appWidth == other
211 copyFrom(DisplayInfo other) argument
[all...]
H A DPointerIcon.java352 public boolean equals(Object other) { argument
353 if (this == other) {
357 if (other == null || !(other instanceof PointerIcon)) {
361 PointerIcon otherIcon = (PointerIcon) other;
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTargetDrawable.java94 public TargetDrawable(TargetDrawable other) { argument
95 mResourceId = other.mResourceId;
97 mDrawable = other.mDrawable != null ? other.mDrawable.mutate() : null;
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardSecurityViewFlipper.java256 public LayoutParams(ViewGroup.LayoutParams other) { argument
257 super(other);
260 public LayoutParams(LayoutParams other) { argument
261 super(other);
263 maxWidth = other.maxWidth;
264 maxHeight = other.maxHeight;
/frameworks/base/services/input/
H A DInputListener.cpp34 const NotifyConfigurationChangedArgs& other) :
35 eventTime(other.eventTime) {
54 NotifyKeyArgs::NotifyKeyArgs(const NotifyKeyArgs& other) : argument
55 eventTime(other.eventTime), deviceId(other.deviceId), source(other.source),
56 policyFlags(other.policyFlags),
57 action(other.action), flags(other.flags),
58 keyCode(other
33 NotifyConfigurationChangedArgs( const NotifyConfigurationChangedArgs& other) argument
85 NotifyMotionArgs(const NotifyMotionArgs& other) argument
112 NotifySwitchArgs(const NotifySwitchArgs& other) argument
128 NotifyDeviceResetArgs(const NotifyDeviceResetArgs& other) argument
[all...]
H A DSpriteController.h42 inline bool operator== (const SpriteTransformationMatrix& other) { argument
43 return dsdx == other.dsdx
44 && dtdx == other.dtdx
45 && dsdy == other.dsdy
46 && dtdy == other.dtdy;
49 inline bool operator!= (const SpriteTransformationMatrix& other) { argument
50 return !(*this == other);
84 * A sprite is a simple graphical object that is displayed on-screen above other layers.
132 * by other components.
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h283 typedef LinearAllocator<NewDataType, ChunkSize> other; typedef in struct:mcld::LinearAllocator::rebind
301 typedef LinearAllocator<NewDataType, 0> other; typedef in struct:mcld::LinearAllocator::rebind
329 typedef MallocAllocator<OtherDataType> other; typedef in struct:mcld::MallocAllocator::rebind
383 typedef MallocAllocator<OtherDataType> other; typedef in struct:mcld::MallocAllocator::rebind
/frameworks/native/libs/utils/
H A DBasicHashtable.cpp35 BasicHashtableImpl::BasicHashtableImpl(const BasicHashtableImpl& other) : argument
36 mBucketSize(other.mBucketSize), mHasTrivialDestructor(other.mHasTrivialDestructor),
37 mCapacity(other.mCapacity), mLoadFactor(other.mLoadFactor),
38 mSize(other.mSize), mFilledBuckets(other.mFilledBuckets),
39 mBucketCount(other.mBucketCount), mBuckets(other.mBuckets) {
60 void BasicHashtableImpl::setTo(const BasicHashtableImpl& other) { argument
[all...]
H A DString16.cpp161 void String16::setTo(const String16& other) argument
163 SharedBuffer::bufferFromData(other.mString)->acquire();
165 mString = other.mString;
168 status_t String16::setTo(const String16& other, size_t len, size_t begin) argument
170 const size_t N = other.size();
178 setTo(other);
182 if (&other == this) {
186 return setTo(other.string()+begin, len);
189 status_t String16::setTo(const char16_t* other) argument
191 return setTo(other, strlen1
194 setTo(const char16_t* other, size_t len) argument
208 append(const String16& other) argument
[all...]
/frameworks/native/libs/utils/tests/
H A DBasicHashtable_test.cpp38 ComplexKey(const ComplexKey& other) : k(other.k) { argument
46 bool operator ==(const ComplexKey& other) const {
47 return k == other.k;
50 bool operator !=(const ComplexKey& other) const {
51 return k != other.k;
70 ComplexValue(const ComplexValue& other) : v(other.v) { argument
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h204 // egl_display_ptr(egl_display_ptr&& other) {
205 // mDpy = other.mDpy;
206 // other.mDpy = NULL;
209 egl_display_ptr(const egl_display_ptr& other): mDpy(other.mDpy) { argument
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp36 Transform::Transform(const Transform& other) argument
37 : mMatrix(other.mMatrix), mType(other.mType) {
/frameworks/base/core/java/android/util/
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/com/android/internal/view/menu/
H A DActionMenuView.java602 public LayoutParams(ViewGroup.LayoutParams other) { argument
603 super(other);
606 public LayoutParams(LayoutParams other) { argument
607 super((LinearLayout.LayoutParams) other);
608 isOverflowButton = other.isOverflowButton;
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp116 static jboolean Region_quickRejectRgn(JNIEnv* env, jobject region, jobject other) { argument
117 return GetSkRegion(env, region)->quickReject(*GetSkRegion(env, other));

Completed in 349 milliseconds

1234