Searched refs:that (Results 76 - 100 of 1359) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DAudioSpecificConfig.java516 throw new UnsupportedOperationException("can't serialize that yet");
529 throw new UnsupportedOperationException("can't serialize that yet");
994 AudioSpecificConfig that = (AudioSpecificConfig) o;
996 if (aacScalefactorDataResilienceFlag != that.aacScalefactorDataResilienceFlag) {
999 if (aacSectionDataResilienceFlag != that.aacSectionDataResilienceFlag) {
1002 if (aacSpectralDataResilienceFlag != that.aacSpectralDataResilienceFlag) {
1005 if (audioObjectType != that.audioObjectType) {
1008 if (channelConfiguration != that.channelConfiguration) {
1011 if (coreCoderDelay != that.coreCoderDelay) {
1014 if (dependsOnCoreCoder != that
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DAddress.java32 * that proxy information. For secure connections the address also includes the
35 * <p>HTTP requests that share the same {@code Address} may also share the same
116 * non-null list that contains minimally {@link Protocol#HTTP_1_1}.
151 Address that = (Address) other;
152 return equal(this.proxy, that.proxy)
153 && this.uriHost.equals(that.uriHost)
154 && this.uriPort == that.uriPort
155 && equal(this.sslSocketFactory, that.sslSocketFactory)
156 && equal(this.hostnameVerifier, that.hostnameVerifier)
157 && equal(this.certificatePinner, that
[all...]
/external/skia/src/gpu/
H A DGrPipeline.cpp4 * Use of this source code is governed by a BSD-style license that can be
47 // Set the fields that don't default init and return. The lack of a render target will
48 // indicate that this can be skipped.
137 bool GrPipeline::isEqual(const GrPipeline& that) const {
138 if (this->getRenderTarget() != that.getRenderTarget() ||
139 this->fFragmentStages.count() != that.fFragmentStages.count() ||
140 this->fNumColorStages != that.fNumColorStages ||
141 this->fScissorState != that.fScissorState ||
142 this->fFlags != that.fFlags ||
143 this->fStencilSettings != that
[all...]
H A DGrPathProcessor.cpp4 * Use of this source code is governed by a BSD-style license that can be
47 const GrPrimitiveProcessor& that,
49 if (this->classID() != that.classID() || !this->hasSameTextureAccesses(that)) {
53 const GrPathProcessor& other = that.cast<GrPathProcessor>();
61 that, theirs.fUsesLocalCoords) &&
46 canMakeEqual(const GrBatchTracker& m, const GrPrimitiveProcessor& that, const GrBatchTracker& t) const argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObject.java85 SIPObject that = (SIPObject) other;
113 if (f.getInt(this) != g.getInt(that))
116 if (f.getShort(this) != g.getShort(that))
119 if (f.getChar(this) != g.getChar(that))
122 if (f.getLong(this) != g.getLong(that))
125 if (f.getBoolean(this) != g.getBoolean(that))
128 if (f.getDouble(this) != g.getDouble(that))
131 if (f.getFloat(this) != g.getFloat(that))
134 } else if (g.get(that) == f.get(this))
136 else if (f.get(this) == null && g.get(that) !
[all...]
/external/guava/guava-gwt/src-super/java/nio/charset/
H A DCharset.java79 public final int compareTo(Charset that) { argument
80 return this.name.compareToIgnoreCase(that.name);
91 Charset that = (Charset) o;
92 return this.name.equals(that.name);
/external/guava/guava-tests/test/com/google/common/collect/
H A DLegacyComparable.java25 * A class that implements {@code Comparable} without generics, such as those
26 * found in libraries that support Java 1.4 and before. Our library needs to
52 LegacyComparable that = (LegacyComparable) object;
53 return this.value.compareTo(that.value);
58 LegacyComparable that = (LegacyComparable) object;
59 return this.value.equals(that.value);
H A DConstraintsTest.java83 ASSERT.that(collection).has()
85 ASSERT.that(constrained).has()
101 ASSERT.that(constrained).has().exactly("foo", "bar").inOrder();
102 ASSERT.that(collection).has().exactly("foo", "bar").inOrder();
115 ASSERT.that(set).has().exactly("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog").inOrder();
116 ASSERT.that(constrained).has()
131 ASSERT.that(constrained).has().exactly("foo", "bar").inOrder();
132 ASSERT.that(set).has().exactly("foo", "bar").inOrder();
146 ASSERT.that(sortedSet).has().exactly("bar", "cat", "dog", "foo", "qux", TEST_ELEMENT).inOrder();
147 ASSERT.that(constraine
[all...]
H A DContiguousSetTest.java98 * Make sure that we're using RegularContiguousSet.SerializedForm and not
135 ASSERT.that(set.headSet(1)).isEmpty();
136 ASSERT.that(set.headSet(2)).has().item(1);
137 ASSERT.that(set.headSet(3)).has().exactly(1, 2).inOrder();
138 ASSERT.that(set.headSet(4)).has().exactly(1, 2, 3).inOrder();
139 ASSERT.that(set.headSet(Integer.MAX_VALUE)).has().exactly(1, 2, 3).inOrder();
140 ASSERT.that(set.headSet(1, true)).has().item(1);
141 ASSERT.that(set.headSet(2, true)).has().exactly(1, 2).inOrder();
142 ASSERT.that(set.headSet(3, true)).has().exactly(1, 2, 3).inOrder();
143 ASSERT.that(se
[all...]
/external/llvm/test/MC/ARM/
H A Ddirective-arch_extension-mode-switch.s3 @ Ensure that a mode switch does not revert the architectural features that were
/external/llvm/test/MC/Mips/
H A Dcfi.s6 # Check that we can accept register names in CFI directives and that they are
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DGenericURI.java119 public boolean equals(Object that) { argument
120 if (this==that) return true;
121 else if (that instanceof URI) {
122 final URI o = (URI) that;
/external/icu/icu4c/source/i18n/unicode/
H A Dsearch.h41 * <tt>SearchIterator</tt> is an abstract base class that provides
56 * <tt>SearchIterator</tt> provides an API that is similar to that of
86 * Copy constructor that creates a SearchIterator instance with the same
103 * that's affected.
148 * Returns the index to the match in the text string that was searched.
155 * @return index of a substring within the text string that is being
182 * Returns the text that was matched by the most recent call to
198 * Set the BreakIterator that will be used to restrict the points
201 * @param breakiter A BreakIterator that wil
[all...]
/external/llvm/test/MC/COFF/
H A Dcomm-align.s5 # - that -aligncomm is not emitted for 1-byte alignment
6 # - that -aligncomm is emitted for the various alignments (greater than 1)
7 # - that the alignment is represented as a log_2 of the alignment
8 # - that the section switching occurs correctly
9 # - that functions after the switch also are emitted into the correct section
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ultraviolet/
H A DBaseLocationBox.java88 BaseLocationBox that = (BaseLocationBox) o;
90 if (baseLocation != null ? !baseLocation.equals(that.baseLocation) : that.baseLocation != null) return false;
91 if (purchaseLocation != null ? !purchaseLocation.equals(that.purchaseLocation) : that.purchaseLocation != null)
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowOverlayItem.java47 ShadowOverlayItem that = (ShadowOverlayItem) o;
49 return Strings.equals(title, that.title)
50 && Strings.equals(snippet, that.snippet)
51 && geoPoint == null ? that.geoPoint == null :
52 geoPoint.equals(that.geoPoint);
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedHashMultimapTest.java91 ASSERT.that(multimap.get("foo")).has().exactly(5, 3).inOrder();
92 ASSERT.that(multimap.get("bar")).has().exactly(4, 1).inOrder();
93 ASSERT.that(multimap.get("cow")).has().item(2);
95 ASSERT.that(multimap.keySet()).has().exactly("foo", "bar", "cow").inOrder();
96 ASSERT.that(multimap.values()).has().exactly(5, 4, 3, 2, 1).inOrder();
110 ASSERT.that(entry.getValue()).has().exactly(5, 3).inOrder();
113 ASSERT.that(entry.getValue()).has().exactly(4, 1).inOrder();
116 ASSERT.that(entry.getValue()).has().item(2);
122 ASSERT.that(multimap.replaceValues("foo", asList(6, 7))).has().exactly(5, 3).inOrder();
123 ASSERT.that(multima
[all...]
H A DConstraintsTest.java81 ASSERT.that(collection).has()
83 ASSERT.that(constrained).has()
99 ASSERT.that(constrained).has().exactly("foo", "bar").inOrder();
100 ASSERT.that(collection).has().exactly("foo", "bar").inOrder();
113 ASSERT.that(set).has().exactly("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog").inOrder();
114 ASSERT.that(constrained).has()
129 ASSERT.that(constrained).has().exactly("foo", "bar").inOrder();
130 ASSERT.that(set).has().exactly("foo", "bar").inOrder();
144 ASSERT.that(sortedSet).has().exactly("bar", "cat", "dog", "foo", "qux", TEST_ELEMENT).inOrder();
145 ASSERT.that(constraine
[all...]
H A DContiguousSetTest.java110 ASSERT.that(set.headSet(1)).isEmpty();
111 ASSERT.that(set.headSet(2)).has().item(1);
112 ASSERT.that(set.headSet(3)).has().exactly(1, 2).inOrder();
113 ASSERT.that(set.headSet(4)).has().exactly(1, 2, 3).inOrder();
114 ASSERT.that(set.headSet(Integer.MAX_VALUE)).has().exactly(1, 2, 3).inOrder();
115 ASSERT.that(set.headSet(1, true)).has().item(1);
116 ASSERT.that(set.headSet(2, true)).has().exactly(1, 2).inOrder();
117 ASSERT.that(set.headSet(3, true)).has().exactly(1, 2, 3).inOrder();
118 ASSERT.that(set.headSet(4, true)).has().exactly(1, 2, 3).inOrder();
119 ASSERT.that(se
[all...]
/external/v8/src/
H A Dunique.h2 // Use of this source code is governed by a BSD-style license that can be
103 template <class S> static Unique<T> cast(Unique<S> that) { argument
104 return Unique<T>(that.raw_address_, Handle<T>::cast(that.handle_));
183 bool Equals(const UniqueSet<T>* that) const {
184 if (that->size_ != this->size_) return false;
186 if (this->array_[i] != that->array_[i]) return false;
204 // Check if this set is a subset of the given set. O(|this| + |that|).
205 bool IsSubset(const UniqueSet<T>* that) const {
206 if (that
221 Intersect(const UniqueSet<T>* that, Zone* zone) const argument
248 Union(const UniqueSet<T>* that, Zone* zone) const argument
281 Subtract(const UniqueSet<T>* that, Zone* zone) const argument
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheEvictionTest.java172 ASSERT.that(keySet).has().exactly(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
177 ASSERT.that(keySet).has().exactly(3, 4, 5, 6, 7, 8, 9, 0, 1, 2);
182 ASSERT.that(keySet).has().exactly(6, 7, 8, 9, 0, 1, 2, 10, 11, 12);
187 ASSERT.that(keySet).has().exactly(9, 0, 1, 2, 10, 11, 12, 6, 7, 8);
192 ASSERT.that(keySet).has().exactly(2, 10, 11, 12, 6, 7, 8, 13, 14, 15);
205 ASSERT.that(keySet).has().exactly(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
210 ASSERT.that(keySet).has().exactly(3, 4, 5, 6, 7, 8, 9, 0, 1, 2);
215 ASSERT.that(keySet).has().exactly(6, 7, 8, 9, 0, 1, 2, 10);
220 ASSERT.that(keySet).has().exactly(9, 0, 1, 2, 10, 6, 7, 8);
225 ASSERT.that(keySe
[all...]
/external/toybox/scripts/
H A Dconfig2help.c232 char *this, *that, *cusage, *tusage, *name; local
235 // find a usage: name and collate all enabled entries with that name
238 if (catch->help && (that = keyword("usage:", catch->help->data))) {
244 // text out of throw into catch, copying from this to that
245 if (!throw) name = that;
246 else if (strncmp(name, that, len) || !isspace(that[len])) continue;
248 while (!isspace(*that) && *that) that
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapClearTester.java52 ASSERT.that(multimap().entries()).isEmpty();
53 ASSERT.that(multimap().asMap()).isEmpty();
54 ASSERT.that(multimap().keySet()).isEmpty();
55 ASSERT.that(multimap().keys()).isEmpty();
56 ASSERT.that(multimap().values()).isEmpty();
105 ASSERT.that(collection).isEmpty();
117 ASSERT.that(collection).isEmpty();
126 ASSERT.that(asMap).isEmpty();
133 ASSERT.that(entries).isEmpty();
/external/toybox/toys/pending/
H A Dmke2fs.c164 static long check_treesize(struct dirtree *that, off_t *size) argument
168 while (that) {
169 *size += sizeof(struct ext2_dentry) + strlen(that->name);
171 if (that->child)
172 that->st.st_blocks = check_treesize(that->child, &that->st.st_size);
173 else if (S_ISREG(that->st.st_mode)) {
174 that->st.st_blocks = file_blocks_used(that
194 struct dirtree *current=tree, *that; local
388 fill_inode(struct ext2_inode *in, struct dirtree *that) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dtzrule.cpp55 TimeZoneRule::operator==(const TimeZoneRule& that) const {
56 return ((this == &that) ||
57 (typeid(*this) == typeid(that) &&
58 fName == that.fName &&
59 fRawOffset == that.fRawOffset &&
60 fDSTSavings == that.fDSTSavings));
64 TimeZoneRule::operator!=(const TimeZoneRule& that) const {
65 return !operator==(that);
122 InitialTimeZoneRule::operator==(const TimeZoneRule& that) const {
123 return ((this == &that) ||
[all...]

Completed in 742 milliseconds

1234567891011>>