Searched refs:that (Results 176 - 200 of 1359) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMultisetsTest.java46 ASSERT.that(set).has().exactly(
56 ASSERT.that(set).has().exactly(new LegacyComparable("bar"),
66 ASSERT.that(multiset).has().exactly("foo", "foo", "bar", "bar", "bar").inOrder();
74 ASSERT.that(multiset).isEmpty();
89 ASSERT.that(Multisets.union(ms1, ms2)).has().exactly("a", "a", "b", "b", "c");
113 ASSERT.that(Multisets.intersection(ms1, ms2)).isEmpty();
119 ASSERT.that(Multisets.intersection(ms1, ms2)).isEmpty();
125 ASSERT.that(Multisets.sum(ms1, ms2)).has().exactly("a", "a", "b", "b", "c");
131 ASSERT.that(Multisets.sum(ms1, ms2)).has().exactly("a", "b", "a");
137 ASSERT.that(Multiset
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMultisetsTest.java48 ASSERT.that(set).has().exactly(
58 ASSERT.that(set).has().exactly(new LegacyComparable("bar"),
68 ASSERT.that(multiset).has().exactly("foo", "foo", "bar", "bar", "bar").inOrder();
76 ASSERT.that(multiset).isEmpty();
91 ASSERT.that(Multisets.union(ms1, ms2)).has().exactly("a", "a", "b", "b", "c");
115 ASSERT.that(Multisets.intersection(ms1, ms2)).isEmpty();
121 ASSERT.that(Multisets.intersection(ms1, ms2)).isEmpty();
127 ASSERT.that(Multisets.sum(ms1, ms2)).has().exactly("a", "a", "b", "b", "c");
133 ASSERT.that(Multisets.sum(ms1, ms2)).has().exactly("a", "b", "a");
139 ASSERT.that(Multiset
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.cpp95 // more of a hint; applying a modifier makes use of that hint.
165 // including the source modifiers, i.e. make sure that all uses support
260 LValue *that = new_LValue(pol.context(), reg.file); local
262 pol.set<Value>(this, that);
264 that->reg.size = this->reg.size;
265 that->reg.type = this->reg.type;
266 that->reg.data = this->reg.data;
268 return that;
297 Symbol *that = new_Symbol(prog, reg.file, reg.fileIndex); local
299 pol.set<Value>(this, that);
370 ImmediateValue *that = new_ImmediateValue(prog, 0u); local
480 operator =(const ImmediateValue &that) argument
514 equals(const Value *that, bool strict) const argument
531 equals(const Value *that, bool strict) const argument
540 equals(const Value *that, bool strict) const argument
[all...]
/external/icu/icu4c/source/common/
H A Duchriter.cpp51 UCharCharacterIterator::UCharCharacterIterator(const UCharCharacterIterator& that) argument
52 : CharacterIterator(that),
53 text(that.text)
58 UCharCharacterIterator::operator=(const UCharCharacterIterator& that) { argument
59 CharacterIterator::operator=(that);
60 text = that.text;
68 UCharCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
69 if (this == &that) {
72 if (typeid(*this) != typeid(that)) {
76 UCharCharacterIterator& realThat = (UCharCharacterIterator&)that;
[all...]
/external/llvm/include/llvm/ADT/
H A DSmallPtrSet.h65 SmallPtrSetImplBase(const void **SmallStorage, const SmallPtrSetImplBase &that);
67 SmallPtrSetImplBase &&that);
96 // Note that -1 is chosen to make clear() efficiently implementable with
102 /// it was already in the set. This is hidden from the client so that the
103 /// derived class can check that the right type of pointer is passed in.
108 /// that the derived class can check that the right type of pointer is passed
138 /// Note: This method assumes that both sets have the same small size.
166 /// that is. This is guaranteed to stop because the end() bucket is marked
210 /// RoundUpToPowerOfTwo - This is a helper template that round
[all...]
/external/skia/include/gpu/
H A DGrXferProcessor.h4 * Use of this source code is governed by a BSD-style license that can be
96 * GrXferProcessor is responsible for implementing the xfer mode that blends the src color and dst
99 * coverage. The GrXferProcessor's shader code writes the fragment shader output color that goes
122 * Optimizations for blending / coverage that an OptDrawState should apply to itself.
142 * Clear color stages and override input color to that returned by getOptimizations
162 * overrideColor will be the required value that should be passed into the XP.
208 * extentions that support framebuffer fetching and thus don't need a copy of the dst texture.
239 bool isEqual(const GrXferProcessor& that) const {
240 if (this->classID() != that.classID()) {
243 if (this->fWillReadDstColor != that
[all...]
/external/skia/src/gpu/
H A DGrRectBatch.cpp4 * Use of this source code is governed by a BSD-style license that can be
17 /** We always use per-vertex colors so that rects can be batched across color changes. Sometimes we
181 RectBatch* that = t->cast<RectBatch>(); variable
183 if (this->hasLocalRect() != that->hasLocalRect()) {
187 SkASSERT(this->usesLocalCoords() == that->usesLocalCoords());
189 if (!this->viewMatrix().cheapEqualTo(that->viewMatrix())) {
193 if (this->hasLocalMatrix() != that->hasLocalMatrix()) {
197 if (this->hasLocalMatrix() && !this->localMatrix().cheapEqualTo(that->localMatrix())) {
202 if (this->color() != that->color()) {
205 fGeoData.push_back_n(that
[all...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java52 * Returns a predicate that always evaluates to {@code true}.
60 * Returns a predicate that always evaluates to {@code false}.
68 * Returns a predicate that evaluates to {@code true} if the object reference
77 * Returns a predicate that evaluates to {@code true} if the object reference
86 * Returns a predicate that evaluates to {@code true} if the given predicate
94 * Returns a predicate that evaluates to {@code true} if each of its
108 * Returns a predicate that evaluates to {@code true} if each of its
121 * Returns a predicate that evaluates to {@code true} if both of its
133 * Returns a predicate that evaluates to {@code true} if any one of its
147 * Returns a predicate that evaluate
[all...]
/external/guava/guava-testlib/test/com/google/common/testing/
H A DClassSanityTesterTest.java87 "No public static methods that return java.lang.Object or subtype are found in "
144 "No public static methods that return java.lang.Iterable or subtype are found in "
315 ASSERT.that(expected.getMessage()).contains("create(null)");
325 ASSERT.that(expected.getMessage()).contains("create([[1]])");
362 ASSERT.that(expected.getMessage()).contains(cls.getSimpleName() + "(");
475 ASSERT.that(expected.getMessage()).contains("@Nullable");
613 HasAnInterface that = (HasAnInterface) obj;
614 return i.equals(that.i);
669 Wrapper that = (Wrapper) obj;
670 return wrapped.equals(that
[all...]
/external/v8/src/
H A Dast.cc2 // Use of this source code is governed by a BSD-style license that can be
282 // Ensure objects that may, at any point in time, contain fields with double
801 void VisitCharacterRange(CharacterRange that);
812 void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) { argument
814 for (int i = 0; i < that->alternatives()->length(); i++) {
816 that->alternatives()->at(i)->Accept(this, data);
823 void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) { argument
825 for (int i = 0; i < that->nodes()->length(); i++) {
827 that->nodes()->at(i)->Accept(this, data);
834 void RegExpUnparser::VisitCharacterRange(CharacterRange that) { argument
843 VisitCharacterClass(RegExpCharacterClass* that, void* data) argument
856 VisitAssertion(RegExpAssertion* that, void* data) argument
881 VisitAtom(RegExpAtom* that, void* data) argument
892 VisitText(RegExpText* that, void* data) argument
907 VisitQuantifier(RegExpQuantifier* that, void* data) argument
921 VisitCapture(RegExpCapture* that, void* data) argument
929 VisitLookahead(RegExpLookahead* that, void* data) argument
937 VisitBackReference(RegExpBackReference* that, void* data) argument
944 VisitEmpty(RegExpEmpty* that, void* data) argument
[all...]
H A Dinterface.h2 // Use of this source code is governed by a BSD-style license that can be
19 // A frozen type is one that is fully determined. Unification does not
22 // Undetermined types are unification variables that can be unified freely.
23 // There is a natural subsort lattice that reflects the increase of knowledge:
70 void Unify(Interface* that, Zone* zone, bool* ok);
120 bool IsUnified(Interface* that) { argument
121 return Chase() == that->Chase()
122 || (this->IsValue() == that->IsValue() &&
123 this->IsConst() == that->IsConst());
214 void DoUnify(Interface* that, boo
[all...]
/external/google-breakpad/src/common/
H A Dbyte_cursor.h7 // modification, are permitted provided that the following conditions are
61 bool operator==(const ByteBuffer &that) const {
62 return start == that.start && end == that.end;
64 bool operator!=(const ByteBuffer &that) const {
65 return start != that.start || end != that.end;
77 // A cursor pointing into a ByteBuffer that can parse numbers of various
79 // the buffer as it goes. All ByteCursor operations check that accesses
252 // The next byte within buffer_ that w
[all...]
/external/guava/guava/src/com/google/common/base/
H A DEquivalence.java61 * false} (provided that neither {@code x} nor {@code y} is modified).
95 * that the hash be distributable across <i>inequivalence</i>. If {@code equivalence(x, y)}
130 * <p>Note that {@code function} must be consistent according to {@code this} equivalence
134 * because it's not guaranteed that {@link Object#toString}) always returns the same string
144 * Returns a wrapper of {@code reference} that implements
145 * {@link Wrapper#equals(Object) Object.equals()} such that
155 * Wraps an object so that {@link #equals(Object)} and {@link #hashCode()} delegate to an
159 * that tests equivalence using their lengths:
165 * <p>Note in particular that an equivalence wrapper is never equal to the object it wraps.
196 Wrapper<?> that
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapRemoveAllTester.java43 ASSERT.that(multimap().removeAll(sampleKeys().e3)).isEmpty();
50 ASSERT.that(multimap().removeAll(sampleKeys().e0))
62 ASSERT.that(getResult).isEmpty();
74 ASSERT.that(multimap().removeAll(sampleKeys().e0))
84 ASSERT.that(multimap().removeAll(null)).has().exactly(getValueForNullKey()).inOrder();
91 ASSERT.that(multimap().removeAll(null)).isEmpty();
/external/icu/icu4c/source/common/unicode/
H A Drbbi.h60 * is a subclass, but that relationship is effectively internal to the ICU
75 * A character iterator that refers to the same text as the UText, above.
83 * a characterIterator that wraps that data. Needed only for the
123 * positions that are discovered are stored here, preventing us from having
145 * If present, UStack of LanguageBreakEngine objects that might handle
155 * characters that are in the dictionary set, but not handled by any
227 * @param that The RuleBasedBreakIterator passed to be copied
230 RuleBasedBreakIterator(const RuleBasedBreakIterator& that);
294 * @param that Th
[all...]
H A Duchriter.h22 * A concrete subclass of CharacterIterator that iterates over the
25 * iterator that iterates over an entire UChar array, but also to
26 * create one that iterates over only a subrange of a UChar array
85 * of the same string as "that", and its initial position is the
86 * same as "that"'s current position.
87 * @param that The UCharCharacterIterator to be copied
90 UCharCharacterIterator(const UCharCharacterIterator& that);
100 * range of the same string as "that", and refers to the same
101 * character within that string as "that" doe
[all...]
/external/jemalloc/include/jemalloc/
H A Djemalloc_mangle.sh9 * so that it is possible to use jemalloc in conjunction with another allocator
11 * name mangling that matches the API prefixing that happened as a result of
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/
H A Dssvnc24 ssvnc is a tcl/tk gui wrapper that runs on Unix, MacOSX, and Windows.
26 launches the VNC viewer (either the one provided or another one that
27 you have specified) to use that encrypted tunnel to connect to the VNC
87 ssvnc_rc or toggle in Options menu. Note that -killstunnel mode
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DSampleGroupDescriptionBox.java34 * track. Each instance of the SampleGroupDescription box has a type code that distinguishes different
169 SampleGroupDescriptionBox that = (SampleGroupDescriptionBox) o;
171 if (defaultLength != that.defaultLength) {
174 if (groupEntries != null ? !groupEntries.equals(that.groupEntries) : that.groupEntries != null) {
177 if (groupingType != null ? !groupingType.equals(that.groupingType) : that.groupingType != null) {
/external/nist-sip/java/gov/nist/core/
H A DGenericObject.java38 * pretty printing that all other classes benifit from.
98 * matcher that relies on regular expressions alone.
101 * filling in the fields that you want to
103 * that is a match template of null matches any parsed SIP object.
107 * that can be done using the Jakarta regexp package for example.
119 *@return the match expression that has previously been set.
210 * SIP message that you have already generated.
214 * Set any fields that you do not want to override as null in the
406 *@param that is the other object to test against.
409 public boolean equals(Object that) { argument
[all...]
/external/skia/platform_tools/android/examples/hello_skia_app/jni/
H A DAndroid.mk15 # Makes this module into shared object that is simply copied into the apk
20 # Sets up the JNI module that our app calls into to draw things with skia.
25 # Name of the module that the app will reference with System.loadLibrary
/external/guava/guava/src/com/google/common/cache/
H A DRemovalNotification.java82 Entry<?, ?> that = (Entry<?, ?>) object;
83 return Objects.equal(this.getKey(), that.getKey())
84 && Objects.equal(this.getValue(), that.getValue());
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableList.java84 List<?> that = (List<?>) object;
85 return that.size() == 1 && element.equals(that.get(0));
92 // in a way that modifies its hash code.
/external/guava/guava/src/com/google/common/reflect/
H A DParameter.java59 /** Returns the {@link Invokable} that declares this parameter. */
90 Parameter that = (Parameter) obj;
91 return position == that.position && declaration.equals(that.declaration);
/external/icu/icu4c/source/i18n/unicode/
H A Dstsearch.h30 * <tt>StringSearch</tt> is a <tt>SearchIterator</tt> that provides
33 * StringSearch ensures that language eccentricity can be
54 * This search has APIs similar to that of other text iteration mechanisms
67 * starting position will be set as it is specified, please take note that
71 * <li> The midst of a substring that requires normalization.
85 * Using a <tt>BreakIterator</tt> will only give you results that exactly matches the
102 * Currently there are no composite characters that consists of a
149 * the matches that are found. Matches whose start and end
176 * the matches that are found. Matches whose start and end
207 * the matches that ar
[all...]

Completed in 718 milliseconds

1234567891011>>