Home
last modified time | relevance | path

Searched refs:that (Results 1 – 25 of 3723) sorted by relevance

12345678910>>...149

/external/chromium/chrome/browser/sync/syncable/
Dsyncable_id.h51 inline Id(const Id& that) { in Id() argument
52 Copy(that); in Id()
54 inline Id& operator = (const Id& that) {
55 Copy(that);
58 inline void Copy(const Id& that) { in Copy() argument
59 this->s_ = that.s_; in Copy()
76 inline int compare(const Id& that) const { in compare() argument
77 return s_.compare(that.s_); in compare()
79 inline bool operator == (const Id& that) const {
80 return s_ == that.s_;
[all …]
/external/icu4c/layout/
DGlyphIterator.cpp43 GlyphIterator::GlyphIterator(GlyphIterator &that) in GlyphIterator() argument
44 : glyphStorage(that.glyphStorage) in GlyphIterator()
46 direction = that.direction; in GlyphIterator()
47 position = that.position; in GlyphIterator()
48 nextLimit = that.nextLimit; in GlyphIterator()
49 prevLimit = that.prevLimit; in GlyphIterator()
51 glyphPositionAdjustments = that.glyphPositionAdjustments; in GlyphIterator()
52 srcIndex = that.srcIndex; in GlyphIterator()
53 destIndex = that.destIndex; in GlyphIterator()
54 lookupFlags = that.lookupFlags; in GlyphIterator()
[all …]
/external/doclava/src/com/google/doclava/
DSourcePositionInfo.java28 public SourcePositionInfo(SourcePositionInfo that) { in SourcePositionInfo() argument
29 this.file = that.file; in SourcePositionInfo()
30 this.line = that.line; in SourcePositionInfo()
31 this.column = that.column; in SourcePositionInfo()
40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) { in add() argument
41 if (that == null) { in add()
44 int line = that.line; in add()
53 return new SourcePositionInfo(that.file, line, 0); in add()
56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, String str) { in findBeginning() argument
57 if (that == null) { in findBeginning()
[all …]
/external/llvm/include/llvm/Support/
DTimeValue.h115 TimeValue& operator += (const TimeValue& that ) {
116 this->seconds_ += that.seconds_ ;
117 this->nanos_ += that.nanos_ ;
125 TimeValue& operator -= (const TimeValue &that ) {
126 this->seconds_ -= that.seconds_ ;
127 this->nanos_ -= that.nanos_ ;
135 int operator < (const TimeValue &that) const { return that > *this; }
140 int operator > (const TimeValue &that) const {
141 if ( this->seconds_ > that.seconds_ ) {
143 } else if ( this->seconds_ == that.seconds_ ) {
[all …]
DPathV1.h188 Path(const Path &that) : path(that.path) {} in Path() argument
212 Path &operator=(const Path &that) {
213 path = that.path;
221 Path &operator=(StringRef that);
226 bool operator==(const Path &that) const;
231 bool operator!=(const Path &that) const { return !(*this == that); }
239 bool operator<(const Path& that) const;
648 PathWithStatus(const PathWithStatus &that) in PathWithStatus() argument
649 : Path(static_cast<const Path&>(that)), status(that.status), in PathWithStatus()
650 fsIsValid(that.fsIsValid) {} in PathWithStatus()
[all …]
/external/apache-http/src/org/apache/http/
DProtocolVersion.java180 ProtocolVersion that = (ProtocolVersion) obj; in equals() local
182 return ((this.protocol.equals(that.protocol)) && in equals()
183 (this.major == that.major) && in equals()
184 (this.minor == that.minor)); in equals()
198 public boolean isComparable(ProtocolVersion that) { in isComparable() argument
199 return (that != null) && this.protocol.equals(that.protocol); in isComparable()
219 public int compareToVersion(ProtocolVersion that) { in compareToVersion() argument
220 if (that == null) { in compareToVersion()
224 if (!this.protocol.equals(that.protocol)) { in compareToVersion()
227 this + " " + that); in compareToVersion()
[all …]
/external/chromium/base/memory/
Dscoped_nsobject.h52 bool operator==(NST* that) const { return object_ == that; }
53 bool operator!=(NST* that) const { return object_ != that; }
63 void swap(scoped_nsobject& that) { in swap() argument
64 NST* temp = that.object_; in swap()
65 that.object_ = object_; in swap()
125 bool operator==(id that) const { return object_ == that; }
126 bool operator!=(id that) const { return object_ != that; }
136 void swap(scoped_nsobject& that) { in swap() argument
137 id temp = that.object_; in swap()
138 that.object_ = object_; in swap()
/external/icu4c/common/
Dchariter.cpp66 CharacterIterator::CharacterIterator(const CharacterIterator &that) : in CharacterIterator() argument
67 ForwardCharacterIterator(that), in CharacterIterator()
68 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end) in CharacterIterator()
73 CharacterIterator::operator=(const CharacterIterator &that) { in operator =() argument
74 ForwardCharacterIterator::operator=(that); in operator =()
75 textLength = that.textLength; in operator =()
76 pos = that.pos; in operator =()
77 begin = that.begin; in operator =()
78 end = that.end; in operator =()
Dschriter.cpp60 StringCharacterIterator::StringCharacterIterator(const StringCharacterIterator& that) in StringCharacterIterator() argument
61 : UCharCharacterIterator(that), in StringCharacterIterator()
62 text(that.text) in StringCharacterIterator()
72 StringCharacterIterator::operator=(const StringCharacterIterator& that) { in operator =() argument
73 UCharCharacterIterator::operator=(that); in operator =()
74 text = that.text; in operator =()
81 StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const { in operator ==()
82 if (this == &that) { in operator ==()
90 if (typeid(*this) != typeid(that)) { in operator ==()
94 StringCharacterIterator& realThat = (StringCharacterIterator&)that; in operator ==()
/external/nist-sip/java/gov/nist/javax/sip/address/
DNetObject.java79 public boolean equals(Object that) { in equals() argument
80 if (!this.getClass().equals(that.getClass())) in equals()
83 Class<?> hisclass = that.getClass(); in equals()
107 if (f.getInt(this) != g.getInt(that)) in equals()
110 if (f.getShort(this) != g.getShort(that)) in equals()
113 if (f.getChar(this) != g.getChar(that)) in equals()
116 if (f.getLong(this) != g.getLong(that)) in equals()
119 if (f.getBoolean(this) != g.getBoolean(that)) in equals()
122 if (f.getDouble(this) != g.getDouble(that)) in equals()
125 if (f.getFloat(this) != g.getFloat(that)) in equals()
[all …]
/external/icu4c/i18n/
Dtztrans.cpp65 TimeZoneTransition::operator==(const TimeZoneTransition& that) const { in operator ==()
66 if (this == &that) { in operator ==()
69 if (typeid(*this) != typeid(that)) { in operator ==()
73 if (fTime != that.fTime) { in operator ==()
76 if ((fFrom == NULL && that.fFrom == NULL) in operator ==()
77 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) { in operator ==()
78 if ((fTo == NULL && that.fTo == NULL) in operator ==()
79 || (fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo))) { in operator ==()
87 TimeZoneTransition::operator!=(const TimeZoneTransition& that) const { in operator !=()
88 return !operator==(that); in operator !=()
Dtzrule.cpp55 TimeZoneRule::operator==(const TimeZoneRule& that) const { in operator ==()
56 return ((this == &that) || in operator ==()
57 (typeid(*this) == typeid(that) && in operator ==()
58 fName == that.fName && in operator ==()
59 fRawOffset == that.fRawOffset && in operator ==()
60 fDSTSavings == that.fDSTSavings)); in operator ==()
64 TimeZoneRule::operator!=(const TimeZoneRule& that) const { in operator !=()
65 return !operator==(that); in operator !=()
122 InitialTimeZoneRule::operator==(const TimeZoneRule& that) const { in operator ==()
123 return ((this == &that) || in operator ==()
[all …]
Ddtrule.cpp83 DateTimeRule::operator==(const DateTimeRule& that) const { in operator ==()
84 return ((this == &that) || in operator ==()
85 (typeid(*this) == typeid(that) && in operator ==()
86 fMonth == that.fMonth && in operator ==()
87 fDayOfMonth == that.fDayOfMonth && in operator ==()
88 fDayOfWeek == that.fDayOfWeek && in operator ==()
89 fWeekInMonth == that.fWeekInMonth && in operator ==()
90 fMillisInDay == that.fMillisInDay && in operator ==()
91 fDateRuleType == that.fDateRuleType && in operator ==()
92 fTimeRuleType == that.fTimeRuleType)); in operator ==()
[all …]
Dsearch.cpp179 UBool SearchIterator::operator==(const SearchIterator &that) const in operator ==()
181 if (this == &that) { in operator ==()
184 return (m_breakiterator_ == that.m_breakiterator_ && in operator ==()
185 m_search_->isCanonicalMatch == that.m_search_->isCanonicalMatch && in operator ==()
186 m_search_->isOverlap == that.m_search_->isOverlap && in operator ==()
187 m_search_->elementComparisonType == that.m_search_->elementComparisonType && in operator ==()
188 m_search_->matchedIndex == that.m_search_->matchedIndex && in operator ==()
189 m_search_->matchedLength == that.m_search_->matchedLength && in operator ==()
190 m_search_->textLength == that.m_search_->textLength && in operator ==()
191 getOffset() == that.getOffset() && in operator ==()
[all …]
/external/apache-http/src/org/apache/http/auth/
DAuthScope.java197 public int match(final AuthScope that) { in match() argument
199 if (LangUtils.equals(this.scheme, that.scheme)) { in match()
202 if (this.scheme != ANY_SCHEME && that.scheme != ANY_SCHEME) { in match()
206 if (LangUtils.equals(this.realm, that.realm)) { in match()
209 if (this.realm != ANY_REALM && that.realm != ANY_REALM) { in match()
213 if (this.port == that.port) { in match()
216 if (this.port != ANY_PORT && that.port != ANY_PORT) { in match()
220 if (LangUtils.equals(this.host, that.host)) { in match()
223 if (this.host != ANY_HOST && that.host != ANY_HOST) { in match()
244 AuthScope that = (AuthScope) o; in equals() local
[all …]
/external/webkit/Source/WebCore/platform/gtk/
DPopupMenuGtk.cpp224 void PopupMenuGtk::menuItemActivated(GtkMenuItem* item, PopupMenuGtk* that) in menuItemActivated() argument
226 ASSERT(that->client()); in menuItemActivated()
227 ASSERT(that->m_indexMap.contains(GTK_WIDGET(item))); in menuItemActivated()
228 that->client()->valueChanged(that->m_indexMap.get(GTK_WIDGET(item))); in menuItemActivated()
231 void PopupMenuGtk::menuUnmapped(GtkWidget*, PopupMenuGtk* that) in menuUnmapped() argument
233 ASSERT(that->client()); in menuUnmapped()
234 that->resetTypeAheadFindState(); in menuUnmapped()
235 that->client()->popupDidHide(); in menuUnmapped()
238 …opupMenuGtk::menuPositionFunction(GtkMenu*, gint* x, gint* y, gboolean* pushIn, PopupMenuGtk* that) in menuPositionFunction() argument
240 *x = that->m_menuPosition.x(); in menuPositionFunction()
[all …]
DGeolocationServiceGtk.cpp181 GeolocationServiceGtk* that) in getPositionCallback() argument
184 that->setError(PositionError::POSITION_UNAVAILABLE, error->message); in getPositionCallback()
188 position_changed(position, fields, timestamp, latitude, longitude, altitude, accuracy, that); in getPositionCallback()
191 …atitude, double longitude, double altitude, GeoclueAccuracy* accuracy, GeolocationServiceGtk* that) in position_changed() argument
194 that->setError(PositionError::POSITION_UNAVAILABLE, "Position could not be determined."); in position_changed()
198 that->m_timestamp = timestamp; in position_changed()
199 that->m_latitude = latitude; in position_changed()
200 that->m_longitude = longitude; in position_changed()
201 that->m_altitude = altitude; in position_changed()
204 geoclue_accuracy_get_details(accuracy, &level, &that->m_accuracy, &that->m_altitudeAccuracy); in position_changed()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DSIPObject.java85 SIPObject that = (SIPObject) other; in equals()
113 if (f.getInt(this) != g.getInt(that)) in equals()
116 if (f.getShort(this) != g.getShort(that)) in equals()
119 if (f.getChar(this) != g.getChar(that)) in equals()
122 if (f.getLong(this) != g.getLong(that)) in equals()
125 if (f.getBoolean(this) != g.getBoolean(that)) in equals()
128 if (f.getDouble(this) != g.getDouble(that)) in equals()
131 if (f.getFloat(this) != g.getFloat(that)) in equals()
134 } else if (g.get(that) == f.get(this)) in equals()
136 else if (f.get(this) == null && g.get(that) != null) in equals()
[all …]
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/
Dset-href-attribute-whitespace-expected.txt6 Set href that starts with a space
8 Set href that starts with a newline
10 Set href that starts with a tab
12 Set href that starts with a carriage return
14 Set href that starts with a combination of newlines, spaces and tabs
16 Set href that ends with a space
18 Set href that ends with a newline
20 Set href that ends with a tab
22 Set href that ends with a carriage return
24 Set href that ends with a combination of newlines, spaces and tabs
[all …]
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
Dirc.js21 var that = this;
55 sendFunc(that.server + ":" + that.port);
82 that.onText(parsed.parameters[0],
96 that.connected = true;
97 that.onConnect(parsed.body);
103 if (!that.connected) {
104 that.connected = true;
105 that.onConnect();
117 that.connected = false;
118 that.onDisconnect();
/external/chromium/chrome/browser/cocoa/
Dscoped_authorizationref.h38 bool operator==(AuthorizationRef that) const {
39 return authorization_ == that;
42 bool operator!=(AuthorizationRef that) const {
43 return authorization_ != that;
58 void swap(scoped_AuthorizationRef& that) { in swap() argument
59 AuthorizationRef temp = that.authorization_; in swap()
60 that.authorization_ = authorization_; in swap()
/external/chromium/base/mac/
Dscoped_cftyperef.h47 bool operator==(CFT that) const {
48 return object_ == that;
51 bool operator!=(CFT that) const {
52 return object_ != that;
63 void swap(ScopedCFTypeRef& that) { in swap() argument
64 CFT temp = that.object_; in swap()
65 that.object_ = object_; in swap()
/external/llvm/lib/VMCore/
DLLVMContextImpl.h47 KeyTy(const KeyTy& that) : val(that.val), type(that.type) {} in KeyTy()
48 bool operator==(const KeyTy& that) const {
49 return type == that.type && this->val == that.val;
51 bool operator!=(const KeyTy& that) const {
52 return !this->operator==(that);
70 KeyTy(const KeyTy& that) : val(that.val) {} in KeyTy()
71 bool operator==(const KeyTy& that) const {
72 return this->val.bitwiseIsEqual(that.val);
74 bool operator!=(const KeyTy& that) const {
75 return !this->operator==(that);
DConstantsContext.h316 bool operator==(const ExprMapKeyType& that) const {
317 return this->opcode == that.opcode &&
318 this->subclassdata == that.subclassdata &&
319 this->subclassoptionaldata == that.subclassoptionaldata &&
320 this->operands == that.operands &&
321 this->indices == that.indices;
323 bool operator<(const ExprMapKeyType & that) const {
324 if (this->opcode != that.opcode) return this->opcode < that.opcode;
325 if (this->operands != that.operands) return this->operands < that.operands;
326 if (this->subclassdata != that.subclassdata)
[all …]
/external/nist-sip/java/gov/nist/core/
DNameValue.java226 NameValue that = (NameValue) other; in equals()
227 if (this == that) in equals()
229 if (this.name == null && that.name != null || this.name != null in equals()
230 && that.name == null) in equals()
232 if (this.name != null && that.name != null in equals()
233 && this.name.compareToIgnoreCase(that.name) != 0) in equals()
235 if (this.value != null && that.value == null || this.value == null in equals()
236 && that.value != null) in equals()
238 if (this.value == that.value) in equals()
243 return this.value.equals(that.value); in equals()
[all …]

12345678910>>...149