Searched refs:other (Results 51 - 75 of 3814) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/shared_impl/
H A Dcompositor_layer_data.cc25 const CompositorLayerData& other) {
26 DCHECK(other.is_null() || other.is_valid());
28 common = other.common;
29 Copy(&color, other.color);
30 Copy(&texture, other.texture);
31 Copy(&image, other.image);
24 operator =( const CompositorLayerData& other) argument
/external/icu/icu4c/source/i18n/
H A Dcurrunit.cpp34 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) : argument
35 MeasureUnit(other) {
36 u_strcpy(isoCode, other.isoCode);
39 CurrencyUnit& CurrencyUnit::operator=(const CurrencyUnit& other) { argument
40 if (this == &other) {
43 MeasureUnit::operator=(other);
44 u_strcpy(isoCode, other.isoCode);
/external/chromium_org/third_party/icu/source/i18n/
H A Dmeasure.cpp33 Measure::Measure(const Measure& other) : argument
34 UObject(other), unit(0) {
35 *this = other;
38 Measure& Measure::operator=(const Measure& other) { argument
39 if (this != &other) {
41 number = other.number;
42 unit = (MeasureUnit*) other.unit->clone();
51 UBool Measure::operator==(const UObject& other) const {
52 const Measure* m = (const Measure*) &other;
53 return typeid(*this) == typeid(other)
[all...]
H A Dcurrunit.cpp33 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) : argument
34 MeasureUnit(other) {
35 *this = other;
38 CurrencyUnit& CurrencyUnit::operator=(const CurrencyUnit& other) { argument
39 if (this != &other) {
40 u_strcpy(isoCode, other.isoCode);
52 UBool CurrencyUnit::operator==(const UObject& other) const {
53 const CurrencyUnit& c = (const CurrencyUnit&) other;
54 return typeid(*this) == typeid(other) &&
H A Dtmunit.cpp76 TimeUnit::TimeUnit(const TimeUnit& other) argument
77 : MeasureUnit(other) {
78 *this = other;
89 TimeUnit::operator=(const TimeUnit& other) { argument
90 if (this == &other) {
93 fTimeUnitField = other.fTimeUnitField;
99 TimeUnit::operator==(const UObject& other) const {
100 return (typeid(*this) == typeid(other)
101 && fTimeUnitField == ((TimeUnit*)&other)->fTimeUnitField);
/external/proguard/src/proguard/evaluation/value/
H A DUnknownDoubleValue.java55 public DoubleValue generalize(DoubleValue other) argument
60 public DoubleValue add(DoubleValue other) argument
65 public DoubleValue subtract(DoubleValue other) argument
70 public DoubleValue subtractFrom(DoubleValue other) argument
75 public DoubleValue multiply(DoubleValue other) argument
80 public DoubleValue divide(DoubleValue other) argument
85 public DoubleValue divideOf(DoubleValue other) argument
90 public DoubleValue remainder(DoubleValue other) argument
95 public DoubleValue remainderOf(DoubleValue other) argument
100 public IntegerValue compare(DoubleValue other) argument
[all...]
H A DUnknownFloatValue.java55 public FloatValue generalize(FloatValue other) argument
60 public FloatValue add(FloatValue other) argument
65 public FloatValue subtract(FloatValue other) argument
70 public FloatValue subtractFrom(FloatValue other) argument
75 public FloatValue multiply(FloatValue other) argument
80 public FloatValue divide(FloatValue other) argument
85 public FloatValue divideOf(FloatValue other) argument
90 public FloatValue remainder(FloatValue other) argument
95 public FloatValue remainderOf(FloatValue other) argument
100 public IntegerValue compare(FloatValue other) argument
[all...]
/external/chromium_org/components/autofill/core/common/
H A Dform_data_predictions.cc12 FormDataPredictions::FormDataPredictions(const FormDataPredictions& other) argument
13 : data(other.data),
14 signature(other.signature),
15 experiment_id(other.experiment_id),
16 fields(other.fields) {
H A Dform_field_data_predictions.cc13 const FormFieldDataPredictions& other)
14 : field(other.field),
15 signature(other.signature),
16 heuristic_type(other.heuristic_type),
17 server_type(other.server_type),
18 overall_type(other.overall_type) {
12 FormFieldDataPredictions( const FormFieldDataPredictions& other) argument
/external/chromium_org/content/common/input/
H A Dsynthetic_pinch_gesture_params.cc16 const SyntheticPinchGestureParams& other)
17 : SyntheticGestureParams(other),
18 scale_factor(other.scale_factor),
19 anchor(other.anchor),
21 other.relative_pointer_speed_in_pixels_s) {}
15 SyntheticPinchGestureParams( const SyntheticPinchGestureParams& other) argument
H A Dsynthetic_smooth_scroll_gesture_params.cc20 const SyntheticSmoothScrollGestureParams& other)
21 : SyntheticGestureParams(other),
22 anchor(other.anchor),
23 distances(other.distances),
24 prevent_fling(other.prevent_fling),
25 speed_in_pixels_s(other.speed_in_pixels_s) {}
19 SyntheticSmoothScrollGestureParams( const SyntheticSmoothScrollGestureParams& other) argument
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSTransitionData.cpp17 CSSTransitionData::CSSTransitionData(const CSSTransitionData& other) argument
18 : CSSTimingData(other)
19 , m_propertyList(other.m_propertyList)
23 bool CSSTransitionData::transitionsMatchForStyleRecalc(const CSSTransitionData& other) const
25 return m_propertyList == other.m_propertyList;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-stats.h30 bool Equivalent(const HeapProfileStats& other) const {
31 return allocs - frees == other.allocs - other.frees &&
32 alloc_size - free_size == other.alloc_size - other.free_size;
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java36 public Vector2(Vector2 other) { argument
37 set(other);
40 public final void add(Vector2 other) { argument
41 x += other.x;
42 y += other.y;
50 public final void subtract(Vector2 other) { argument
51 x -= other.x;
52 y -= other.y;
60 public final void multiply(Vector2 other) { argument
61 x *= other
72 set(Vector2 other) argument
82 dot(Vector2 other) argument
94 distance2(Vector2 other) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageScaleConstraints.cpp12 * in the documentation and/or other materials provided with the
44 void PageScaleConstraints::overrideWith(const PageScaleConstraints& other) argument
46 if (other.initialScale != -1) {
47 initialScale = other.initialScale;
49 minimumScale = std::min(minimumScale, other.initialScale);
51 if (other.minimumScale != -1)
52 minimumScale = other.minimumScale;
53 if (other.maximumScale != -1)
54 maximumScale = other.maximumScale;
55 if (!other
[all...]
/external/protobuf/src/google/protobuf/
H A Drepeated_field.cc13 // in the documentation and/or other materials provided with the
54 void RepeatedPtrFieldBase::Swap(RepeatedPtrFieldBase* other) { argument
64 elements_ = other->elements_;
65 current_size_ = other->current_size_;
66 allocated_size_ = other->allocated_size_;
67 total_size_ = other->total_size_;
68 memcpy(initial_space_, other->initial_space_, sizeof(initial_space_));
70 other->elements_ = swap_elements;
71 other->current_size_ = swap_current_size;
72 other
[all...]
/external/chromium_org/ui/message_center/
H A Dnotification.cc35 RichNotificationData::RichNotificationData(const RichNotificationData& other) argument
36 : priority(other.priority),
37 never_timeout(other.never_timeout),
38 timestamp(other.timestamp),
39 context_message(other.context_message),
40 image(other.image),
41 small_image(other.small_image),
42 items(other.items),
43 progress(other.progress),
44 buttons(other
73 Notification(const Notification& other) argument
87 operator =(const Notification& other) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageFrame.cpp12 * documentation and/or other materials provided with the distribution.
48 ImageFrame& ImageFrame::operator=(const ImageFrame& other) argument
50 if (this == &other)
53 m_bitmap = other.m_bitmap;
59 m_pixelsChanged = other.m_pixelsChanged;
60 setMemoryAllocator(other.allocator());
61 setOriginalFrameRect(other.originalFrameRect());
62 setStatus(other.status());
63 setDuration(other.duration());
64 setDisposalMethod(other
94 copyBitmapData(const ImageFrame& other) argument
[all...]
/external/chromium_org/components/navigation_interception/
H A Dnavigation_params.cc9 NavigationParams::NavigationParams(const NavigationParams& other) { argument
10 Assign(other);
32 void NavigationParams::Assign(const NavigationParams& other) { argument
33 url_ = other.url();
34 referrer_ = other.referrer();
35 has_user_gesture_ = other.has_user_gesture();
36 is_post_ = other.is_post();
37 transition_type_ = other.transition_type();
38 is_redirect_ = other.is_redirect();
/external/chromium_org/base/profiler/
H A Dtracked_time.cc18 Duration& Duration::operator+=(const Duration& other) { argument
19 ms_ += other.ms_;
23 Duration Duration::operator+(const Duration& other) const {
24 return Duration(ms_ + other.ms_);
27 bool Duration::operator==(const Duration& other) const {
28 return ms_ == other.ms_;
31 bool Duration::operator!=(const Duration& other) const {
32 return ms_ != other.ms_;
35 bool Duration::operator>(const Duration& other) const {
36 return ms_ > other
[all...]
/external/deqp/framework/randomshaders/
H A DrsgToken.cpp45 Token& Token::operator= (const Token& other) argument
53 m_type = other.m_type;
57 m_arg.identifier = deStrdup(other.m_arg.identifier);
62 m_arg.floatValue = other.m_arg.floatValue;
64 m_arg.intValue = other.m_arg.intValue;
66 m_arg.boolValue = other.m_arg.boolValue;
71 Token::Token (const Token& other) argument
74 *this = other;
77 bool Token::operator!= (const Token& other) const
79 if (m_type != other
[all...]
/external/lldb/examples/python/
H A Dsbvalue.py114 def __add__(self, other):
115 return int(self) + int(other)
117 def __sub__(self, other):
118 return int(self) - int(other)
120 def __mul__(self, other):
121 return int(self) * int(other)
123 def __floordiv__(self, other):
124 return int(self) // int(other)
126 def __mod__(self, other):
127 return int(self) % int(other)
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceLoadTiming.h11 * documentation and/or other materials provided with the distribution.
63 bool operator==(const ResourceLoadTiming& other) const
65 return requestTime == other.requestTime
66 && proxyStart == other.proxyStart
67 && proxyEnd == other.proxyEnd
68 && dnsStart == other.dnsStart
69 && dnsEnd == other.dnsEnd
70 && connectStart == other.connectStart
71 && connectEnd == other.connectEnd
72 && serviceWorkerFetchStart == other
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dvector3d_f.cc25 Vector3dF::Vector3dF(const Vector2dF& other) argument
26 : x_(other.x()),
27 y_(other.y()),
39 void Vector3dF::Add(const Vector3dF& other) { argument
40 x_ += other.x_;
41 y_ += other.y_;
42 z_ += other.z_;
45 void Vector3dF::Subtract(const Vector3dF& other) { argument
46 x_ -= other.x_;
47 y_ -= other
66 Cross(const Vector3dF& other) argument
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_pinnable_buffer_piece.cc22 void SpdyPinnableBufferPiece::Swap(SpdyPinnableBufferPiece* other) { argument
24 length_ = other->length_;
25 other->length_ = length;
28 buffer_ = other->buffer_;
29 other->buffer_ = buffer;
31 storage_.swap(other->storage_);

Completed in 1171 milliseconds

1234567891011>>