Searched defs:other (Results 151 - 175 of 1518) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebMediaStream.h11 * documentation and/or other materials provided with the distribution.
48 WebMediaStream(const WebMediaStream& other) { assign(other); } argument
51 WebMediaStream& operator=(const WebMediaStream& other) argument
53 assign(other);
H A DWebMediaStreamTrack.h11 * documentation and/or other materials provided with the distribution.
58 WebMediaStreamTrack(const WebMediaStreamTrack& other) { assign(other); } argument
61 WebMediaStreamTrack& operator=(const WebMediaStreamTrack& other) argument
63 assign(other);
H A DWebMediaStreamTrackSourcesRequest.h11 * documentation and/or other materials provided with the distribution.
48 WebMediaStreamTrackSourcesRequest(const WebMediaStreamTrackSourcesRequest& other) { assign(other); } argument
51 WebMediaStreamTrackSourcesRequest& operator=(const WebMediaStreamTrackSourcesRequest& other) argument
53 assign(other);
H A DWebPrerender.h12 * in the documentation and/or other materials provided with the
63 WebPrerender(const WebPrerender& other) { assign(other); } argument
64 WebPrerender& operator=(const WebPrerender& other) argument
66 assign(other);
H A DWebRTCICECandidate.h12 * in the documentation and/or other materials provided with the
46 WebRTCICECandidate(const WebRTCICECandidate& other) { assign(other); } argument
49 WebRTCICECandidate& operator=(const WebRTCICECandidate& other) argument
51 assign(other);
H A DWebRTCSessionDescription.h12 * in the documentation and/or other materials provided with the
58 WebRTCSessionDescription(const WebRTCSessionDescription& other) { assign(other); } argument
61 WebRTCSessionDescription& operator=(const WebRTCSessionDescription& other) argument
63 assign(other);
H A DWebRTCSessionDescriptionRequest.h12 * in the documentation and/or other materials provided with the
52 WebRTCSessionDescriptionRequest(const WebRTCSessionDescriptionRequest& other) { assign(other); } argument
55 WebRTCSessionDescriptionRequest& operator=(const WebRTCSessionDescriptionRequest& other) argument
57 assign(other);
H A DWebRTCVoidRequest.h12 * in the documentation and/or other materials provided with the
51 WebRTCVoidRequest(const WebRTCVoidRequest& other) { assign(other); } argument
54 WebRTCVoidRequest& operator=(const WebRTCVoidRequest& other) argument
56 assign(other);
H A DWebVector.h12 * in the documentation and/or other materials provided with the
54 // It is also possible to assign from other types of random access
84 WebVector(const WebVector<T>& other) argument
86 initializeFrom(other.m_ptr, other.m_size);
90 WebVector(const C& other) argument
92 initializeFrom(other.size() ? &other[0] : 0, other.size());
95 WebVector& operator=(const WebVector& other) argument
103 operator =(const C& other) argument
111 assign(const C& other) argument
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebGeolocationError.h12 * documentation and/or other materials provided with the distribution.
45 WebGeolocationError(const WebGeolocationError& other) { assign(other); } argument
H A DWebMIDIPermissionRequest.h12 * in the documentation and/or other materials provided with the
44 // In other words, the request must be canceled when the underlying
48 BLINK_EXPORT WebMIDIPermissionRequest(const WebMIDIPermissionRequest& other) argument
49 : m_initializer(other.m_initializer) { }
H A DWebMediaDevicesRequest.h11 * documentation and/or other materials provided with the distribution.
47 WebMediaDevicesRequest& operator=(const WebMediaDevicesRequest& other) argument
49 assign(other);
H A DWebSpeechRecognitionHandle.h11 * documentation and/or other materials provided with the distribution.
46 WebSpeechRecognitionHandle(const WebSpeechRecognitionHandle& other) { assign(other); } argument
47 WebSpeechRecognitionHandle& operator=(const WebSpeechRecognitionHandle& other) argument
49 assign(other);
H A DWebUserMediaRequest.h12 * in the documentation and/or other materials provided with the
54 WebUserMediaRequest& operator=(const WebUserMediaRequest& other) argument
56 assign(other);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DImageIndex.cpp16 ImageIndex::ImageIndex(const ImageIndex &other) argument
17 : type(other.type),
18 mipIndex(other.mipIndex),
19 layerIndex(other.layerIndex)
22 ImageIndex &ImageIndex::operator=(const ImageIndex &other) argument
24 type = other.type;
25 mipIndex = other.mipIndex;
26 layerIndex = other.layerIndex;
/external/chromium_org/third_party/icu/source/common/
H A Dchariter.cpp16 ForwardCharacterIterator::ForwardCharacterIterator(const ForwardCharacterIterator &other) argument
17 : UObject(other)
/external/chromium_org/third_party/icu/source/i18n/
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 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 Drbt_data.cpp36 TransliterationRuleData::TransliterationRuleData(const TransliterationRuleData& other) : argument
37 UMemory(other), ruleSet(other.ruleSet),
39 variablesBase(other.variablesBase),
40 variablesLength(other.variablesLength)
47 while ((e = other.variableNames.nextElement(pos)) != 0) {
58 if (other.variables != 0) {
66 variables[i] = other.variables[i]->clone();
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);
H A Dtmutamt.cpp33 TimeUnitAmount::TimeUnitAmount(const TimeUnitAmount& other) argument
34 : Measure(other)
40 TimeUnitAmount::operator=(const TimeUnitAmount& other) { argument
41 Measure::operator=(other);
47 TimeUnitAmount::operator==(const UObject& other) const {
48 return Measure::operator==(other);
/external/chromium_org/third_party/icu/source/samples/case/
H A Dcase.cpp18 UnicodeString other = s; local
19 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsfwdchit.h64 SimpleFwdCharIterator(const SimpleFwdCharIterator &other) argument
65 : ForwardCharacterIterator(other) {}
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field.cc13 // in the documentation and/or other materials provided with the
58 void RepeatedPtrFieldBase::Swap(RepeatedPtrFieldBase* other) { argument
59 if (this == other) return;
65 elements_ = other->elements_;
66 current_size_ = other->current_size_;
67 allocated_size_ = other->allocated_size_;
68 total_size_ = other->total_size_;
70 other->elements_ = swap_elements;
71 other->current_size_ = swap_current_size;
72 other
[all...]
/external/chromium_org/third_party/skia/tests/
H A DSListTest.cpp93 SkTInternalSList<SListEntry> other; local
95 other.swap(&list);
97 verifyList(reporter, other, "swap", &testArray[testArraySize-1], testArraySize, -1);
99 list.pushAll(&other);
101 verifyEmptyList(reporter, other, "pushAll-empty");
103 other.push(list.pop());
104 other.pushAll(&list);
106 verifyList(reporter, other, "pushAll", &testArray[0], testArraySize, 1);

Completed in 580 milliseconds

1234567891011>>