Home
last modified time | relevance | path

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

12345678910>>...205

/external/guava/guava-tests/test/com/google/common/base/
DSplitterTest.java54 ASSERT.that(letters).hasContentsInOrder("a", "b", "c"); in testCharacterSimpleSplit()
60 ASSERT.that(letters).hasContentsInOrder("a,b,c"); in testCharacterSimpleSplitWithNoDelimiter()
66 ASSERT.that(letters).hasContentsInOrder("a", "", "b", "c"); in testCharacterSplitWithDoubleDelimiter()
72 ASSERT.that(letters).hasContentsInOrder("a", "", " b", "c"); in testCharacterSplitWithDoubleDelimiterAndSpace()
78 ASSERT.that(letters).hasContentsInOrder("a", "b", "c", ""); in testCharacterSplitWithTrailingDelimiter()
84 ASSERT.that(letters).hasContentsInOrder("", "a", "b", "c"); in testCharacterSplitWithLeadingDelimiter()
90 ASSERT.that(testCharacteringMotto).hasContentsInOrder( in testCharacterSplitWithMulitpleLetters()
98 ASSERT.that(testCharacteringMotto).hasContentsInOrder( in testCharacterSplitWithMatcherDelimiter()
106 ASSERT.that(letters).hasContentsInOrder("a", "b", "c"); in testCharacterSplitWithDoubleDelimiterOmitEmptyStrings()
113 ASSERT.that(letters).hasContentsInOrder("a", "", "c"); in testCharacterSplitEmptyToken()
[all …]
/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.h118 TimeValue& operator += (const TimeValue& that ) {
119 this->seconds_ += that.seconds_ ;
120 this->nanos_ += that.nanos_ ;
128 TimeValue& operator -= (const TimeValue &that ) {
129 this->seconds_ -= that.seconds_ ;
130 this->nanos_ -= that.nanos_ ;
138 int operator < (const TimeValue &that) const { return that > *this; }
143 int operator > (const TimeValue &that) const {
144 if ( this->seconds_ > that.seconds_ ) {
146 } else if ( this->seconds_ == that.seconds_ ) {
[all …]
DPathV1.h174 Path(const Path &that) : path(that.path) {} in Path() argument
198 Path &operator=(const Path &that) {
199 path = that.path;
207 Path &operator=(StringRef that);
212 bool operator==(const Path &that) const;
217 bool operator!=(const Path &that) const { return !(*this == that); }
225 bool operator<(const Path& that) const;
634 PathWithStatus(const PathWithStatus &that) in PathWithStatus() argument
635 : Path(static_cast<const Path&>(that)), status(that.status), in PathWithStatus()
636 fsIsValid(that.fsIsValid) {} in PathWithStatus()
[all …]
/external/v8/src/
Dinterface.cc113 void Interface::Unify(Interface* that, bool* ok) { in Unify() argument
114 if (this->forward_) return this->Chase()->Unify(that, ok); in Unify()
115 if (that->forward_) return this->Unify(that->Chase(), ok); in Unify()
117 ASSERT(that->forward_ == NULL); in Unify()
120 if (this == that) return; in Unify()
121 if (this->IsValue()) return that->MakeValue(ok); in Unify()
122 if (that->IsValue()) return this->MakeValue(ok); in Unify()
130 that->Print(Nesting::current()); in Unify()
135 if (this->exports_ != NULL && (that->exports_ == NULL || in Unify()
136 this->exports_->occupancy() >= that->exports_->occupancy())) { in Unify()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DCollections2Test.java204 ASSERT.that(filtered).hasContentsInOrder("a", "b");
216 ASSERT.that(filtered).hasContentsInOrder("a", "b");
227 ASSERT.that(unfiltered).hasContentsInOrder("a", "yyy", "b");
228 ASSERT.that(filtered).hasContentsInOrder("a", "b");
231 ASSERT.that(unfiltered).hasContentsInOrder("yyy", "b");
232 ASSERT.that(filtered).hasContentsInOrder("b");
235 ASSERT.that(unfiltered).isEmpty();
236 ASSERT.that(filtered).isEmpty();
239 ASSERT.that(unfiltered).hasContentsInOrder("yyy");
240 ASSERT.that(filtered).isEmpty();
[all …]
DContiguousSetTest.java106 ASSERT.that(set.headSet(1)).isEmpty(); in testHeadSet()
107 ASSERT.that(set.headSet(2)).hasContentsInOrder(1); in testHeadSet()
108 ASSERT.that(set.headSet(3)).hasContentsInOrder(1, 2); in testHeadSet()
109 ASSERT.that(set.headSet(4)).hasContentsInOrder(1, 2, 3); in testHeadSet()
110 ASSERT.that(set.headSet(Integer.MAX_VALUE)).hasContentsInOrder(1, 2, 3); in testHeadSet()
111 ASSERT.that(set.headSet(1, true)).hasContentsInOrder(1); in testHeadSet()
112 ASSERT.that(set.headSet(2, true)).hasContentsInOrder(1, 2); in testHeadSet()
113 ASSERT.that(set.headSet(3, true)).hasContentsInOrder(1, 2, 3); in testHeadSet()
114 ASSERT.that(set.headSet(4, true)).hasContentsInOrder(1, 2, 3); in testHeadSet()
115 ASSERT.that(set.headSet(Integer.MAX_VALUE, true)).hasContentsInOrder(1, 2, 3); in testHeadSet()
[all …]
DConstraintsTest.java83 ASSERT.that(collection).hasContentsInOrder("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog"); in testConstrainedCollectionLegal()
84 ASSERT.that(constrained).hasContentsInOrder("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog"); in testConstrainedCollectionLegal()
99 ASSERT.that(constrained).hasContentsInOrder("foo", "bar"); in testConstrainedCollectionIllegal()
100 ASSERT.that(collection).hasContentsInOrder("foo", "bar"); in testConstrainedCollectionIllegal()
113 ASSERT.that(set).hasContentsInOrder("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog"); in testConstrainedSetLegal()
114 ASSERT.that(constrained).hasContentsInOrder("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog"); in testConstrainedSetLegal()
128 ASSERT.that(constrained).hasContentsInOrder("foo", "bar"); in testConstrainedSetIllegal()
129 ASSERT.that(set).hasContentsInOrder("foo", "bar"); in testConstrainedSetIllegal()
143 ASSERT.that(sortedSet).hasContentsInOrder("bar", "cat", "dog", "foo", "qux", TEST_ELEMENT); in testConstrainedSortedSetLegal()
144 ASSERT.that(constrained).hasContentsInOrder("bar", "cat", "dog", "foo", "qux", TEST_ELEMENT); in testConstrainedSortedSetLegal()
[all …]
DAbstractListMultimapTest.java185 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2, 3, 5); in testListMethods()
189 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2, 3, 4, 8, 5); in testListMethods()
197 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2, 3, 4, 5); in testListMethods()
201 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2, 3, 4, 10); in testListMethods()
214 ASSERT.that(sublist).hasContentsInOrder(2, 3, 4); in testListMethodsIncludingSublist()
216 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2, 3, 6, 10); in testListMethodsIncludingSublist()
232 ASSERT.that(sublist).hasContentsInOrder(2, 3, 4); in testSublistAfterListUpdate()
234 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2, 3, 6, 5); in testSublistAfterListUpdate()
235 ASSERT.that(sublist).hasContentsInOrder(2, 3, 6); in testSublistAfterListUpdate()
275 ASSERT.that(multimap.get("foo")).hasContentsInOrder(2, 3, 5); in testListIteratorUpdate()
[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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DAudioSpecificConfig.java994 AudioSpecificConfig that = (AudioSpecificConfig) o; in equals() local
996 if (aacScalefactorDataResilienceFlag != that.aacScalefactorDataResilienceFlag) { in equals()
999 if (aacSectionDataResilienceFlag != that.aacSectionDataResilienceFlag) { in equals()
1002 if (aacSpectralDataResilienceFlag != that.aacSpectralDataResilienceFlag) { in equals()
1005 if (audioObjectType != that.audioObjectType) { in equals()
1008 if (channelConfiguration != that.channelConfiguration) { in equals()
1011 if (coreCoderDelay != that.coreCoderDelay) { in equals()
1014 if (dependsOnCoreCoder != that.dependsOnCoreCoder) { in equals()
1017 if (directMapping != that.directMapping) { in equals()
1020 if (epConfig != that.epConfig) { in equals()
[all …]
/external/icu4c/common/
Dchariter.cpp68 CharacterIterator::CharacterIterator(const CharacterIterator &that) : in CharacterIterator() argument
69 ForwardCharacterIterator(that), in CharacterIterator()
70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end) in CharacterIterator()
75 CharacterIterator::operator=(const CharacterIterator &that) { in operator =() argument
76 ForwardCharacterIterator::operator=(that); in operator =()
77 textLength = that.textLength; in operator =()
78 pos = that.pos; in operator =()
79 begin = that.begin; in operator =()
80 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 ==()
72 if (fTime != that.fTime) { in operator ==()
75 if ((fFrom == NULL && that.fFrom == NULL) in operator ==()
76 || (fFrom != NULL && that.fFrom != NULL && *fFrom == *(that.fFrom))) { in operator ==()
77 if ((fTo == NULL && that.fTo == NULL) in operator ==()
78 || (fTo != NULL && that.fTo != NULL && *fTo == *(that.fTo))) { in operator ==()
86 TimeZoneTransition::operator!=(const TimeZoneTransition& that) const { in operator !=()
87 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 …]
/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 …]

12345678910>>...205