HomeSort by relevance Sort by last modified time
    Searched refs:that (Results 151 - 175 of 5043) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java 119 TestMethod that = (TestMethod) o; local
122 ? !enclosingClassname.equals(that.enclosingClassname)
123 : that.enclosingClassname != null) {
127 ? !testMethodName.equals(that.testMethodName)
128 : that.testMethodName != null) {
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRoute.java 58 * <code>null</code> indicates that the default should be used.
108 // tunnelled is already checked above, that is in line with the default
167 * That is a route without a proxy.
193 * For convenience, it is assumed that a secure connection will be
347 HttpRoute that = (HttpRoute) o;
348 boolean equal = this.targetHost.equals(that.targetHost);
350 ( this.localAddress == that.localAddress) ||
352 this.localAddress.equals(that.localAddress));
354 ( this.proxyChain == that.proxyChain) ||
356 (that.proxyChain != null) &
    [all...]
  /external/icu4c/i18n/unicode/
tzrule.h 51 * @param that The object to be compared with.
55 virtual UBool operator==(const TimeZoneRule& that) const;
60 * @param that The object to be compared with.
64 virtual UBool operator!=(const TimeZoneRule& that) const;
242 * @param that The object to be compared with.
246 virtual UBool operator==(const TimeZoneRule& that) const;
251 * @param that The object to be compared with.
255 virtual UBool operator!=(const TimeZoneRule& that) const;
275 * @param that The <code>TimeZoneRule</code> object to be compared with.
279 virtual UBool isEquivalentTo(const TimeZoneRule& that) const
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLocation.java 11 * Shadow of {@code Location} that treats it primarily as a data-holder
207 ShadowLocation that = (ShadowLocation) o;
209 if (Double.compare(that.latitude, latitude) != 0) return false;
210 if (Double.compare(that.longitude, longitude) != 0) return false;
211 if (time != that.time) return false;
212 if (provider != null ? !provider.equals(that.provider) : that.provider != null) return false;
213 if (accuracy != that.accuracy) return false;
403 * using the WGS84 ellipsoid. Locations that are (nearly)
  /external/guava/guava/src/com/google/common/base/
Functions.java 44 * Returns a function that calls {@code toString()} on its argument. The function does not accept
94 * IllegalArgumentException} if given a key that does not exist in the map.
116 FunctionForMapNoDefault<?, ?> that = (FunctionForMapNoDefault<?, ?>) o; local
117 return map.equals(that.map);
135 * this method returns {@code defaultValue} for all inputs that do not belong to the map's key
138 * @param map source map that determines the function behavior
139 * @param defaultValue the value to return for inputs that aren't map keys
140 * @return function that returns {@code map.get(a)} when {@code a} is a key, or {@code
164 ForMapWithDefault<?, ?> that = (ForMapWithDefault<?, ?>) o; local
165 return map.equals(that.map) && Objects.equal(defaultValue, that.defaultValue)
210 FunctionComposition<?, ?, ?> that = (FunctionComposition<?, ?, ?>) obj; local
252 PredicateFunction<?> that = (PredicateFunction<?>) obj; local
293 ConstantFunction<?> that = (ConstantFunction<?>) obj; local
336 SupplierFunction<?> that = (SupplierFunction<?>) obj; local
    [all...]
Equivalence.java 62 * false} (provided that neither {@code x} nor {@code y} is modified).
96 * that the hash be distributable accorss <i>inequivalence</i>. If {@code equivalence(x, y)}
119 * {@code function} to the argument, then evaluating using {@code this}. That is, for any pair of
131 * <p>Note that {@code function} must be consistent according to {@code this} equivalence
132 * relation. That is, invoking {@link Function#apply} multiple times for a given value must return
135 * because it's not guaranteed that {@link Object#toString}) always returns the same string
145 * Returns a wrapper of {@code reference} that implements
146 * {@link Wrapper#equals(Object) Object.equals()} such that
156 * Wraps an object so that {@link #equals(Object)} and {@link #hashCode()} delegate to an
160 * that tests equivalence using their lengths
199 Wrapper<?> that = (Wrapper<?>) obj; local
279 EquivalentToPredicate<?> that = (EquivalentToPredicate<?>) obj; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultisetsTest.java 84 ASSERT.that(multisetView.elementSet()).hasContentsAnyOrder("foo", null);
85 ASSERT.that(multisetView.entrySet()).hasContentsAnyOrder(
116 ASSERT.that(set).hasContentsInOrder(
126 ASSERT.that(set).hasContentsInOrder(new LegacyComparable("bar"),
136 ASSERT.that(multiset).hasContentsInOrder("foo", "foo", "bar", "bar", "bar");
144 ASSERT.that(multiset).hasContentsInOrder();
158 ASSERT.that(Multisets.intersection(ms1, ms2)).hasContentsInOrder();
164 ASSERT.that(Multisets.intersection(ms1, ms2)).hasContentsInOrder();
198 ASSERT.that(multiset).hasContentsInOrder("a", "b");
206 ASSERT.that(multiset).hasContentsInOrder("a", "a", "b")
    [all...]
  /external/icu4c/i18n/
coleitr.cpp 88 const CollationElementIterator& that) const
90 if (this == &that || m_data_ == that.m_data_) {
95 if (m_data_->iteratordata_.coll != that.m_data_->iteratordata_.coll)
104 int thatlength = (int)(that.m_data_->iteratordata_.endp - that.m_data_->iteratordata_.string);
111 that.m_data_->iteratordata_.string,
115 if (getOffset() != that.getOffset()) {
121 if ((that.m_data_->iteratordata_.flags & UCOL_ITER_HASLEN) != 0) {
127 != that.m_data_->iteratordata_.pos
    [all...]
stsearch.cpp 161 StringSearch::StringSearch(const StringSearch &that) :
162 SearchIterator(that.m_text_, that.m_breakiterator_),
164 m_pattern_(that.m_pattern_)
172 if (that.m_strsrch_ == NULL) {
182 that.m_strsrch_->collator,
183 (UBreakIterator *)that.m_breakiterator_,
208 StringSearch & StringSearch::operator=(const StringSearch &that)
210 if ((*this) != that) {
212 m_text_ = that.m_text_
    [all...]
  /external/v8/test/mjsunit/compiler/
simple-inlining.js 3 // modification, are permitted provided that the following conditions are
30 // Test that we can inline a function that returns a constant.
52 // Test that we can inline a function that returns 'this'.
74 // Test that we can inline a function that returns 'this.x'.
96 // Test that we can inline a function that returns 'this.x.length'.
118 // Test that we can inline a function that returns 'this.x.y'
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 2 // query param to the url that displays the screenshot.
16 // Check that the the tab's id matches the tab we opened,
17 // and that the tab is done loading.
29 // ensures that exactly one view will have the matching URL.
45 // Listen for a click on the camera icon. On that click, take a screenshot.
  /external/icu4c/common/
uchriter.cpp 51 UCharCharacterIterator::UCharCharacterIterator(const UCharCharacterIterator& that)
52 : CharacterIterator(that),
53 text(that.text)
58 UCharCharacterIterator::operator=(const UCharCharacterIterator& that) {
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/oprofile/events/mips/20K/
events 11 event:0x5 counters:0 um:zero minimum:500 name:BRANCHES_MISSPREDICTED : Branches that mispredicted before completing execution
12 event:0x6 counters:0 um:zero minimum:500 name:BRANCHES_COMPLETED : Branches that completed execution
18 event:0xc counters:0 um:zero minimum:500 name:RPS_MISSPREDICTS : JR instructions that mispredicted using the Return Prediction Stack (RPS)
19 event:0xd counters:0 um:zero minimum:500 name:JR_INSNS_COMPLETED : JR instruction that completed execution
21 event:0xf counters:0 um:zero minimum:500 name:INSNS_COMPLETED : Instruction that completed execution (with or without exception)
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 48 * Returns a predicate that always evaluates to {@code true}.
56 * Returns a predicate that always evaluates to {@code false}.
64 * Returns a predicate that evaluates to {@code true} if the object reference
73 * Returns a predicate that evaluates to {@code true} if the object reference
82 * Returns a predicate that evaluates to {@code true} if the given predicate
90 * Returns a predicate that evaluates to {@code true} if each of its
104 * Returns a predicate that evaluates to {@code true} if each of its
117 * Returns a predicate that evaluates to {@code true} if both of its
129 * Returns a predicate that evaluates to {@code true} if any one of its
143 * Returns a predicate that evaluates to {@code true} if any one of it
252 NotPredicate<?> that = (NotPredicate<?>) obj; local
287 AndPredicate<?> that = (AndPredicate<?>) obj; local
320 OrPredicate<?> that = (OrPredicate<?>) obj; local
348 IsEqualToPredicate<?> that = (IsEqualToPredicate<?>) obj; local
380 InPredicate<?> that = (InPredicate<?>) obj; local
414 CompositionPredicate<?, ?> that = (CompositionPredicate<?, ?>) obj; local
    [all...]
  /external/v8/src/
ast.cc 3 // modification, are permitted provided that the following conditions are
788 void VisitCharacterRange(CharacterRange that);
804 void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) {
806 for (int i = 0; i < that->alternatives()->length(); i++) {
808 that->alternatives()->at(i)->Accept(this, data);
815 void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) {
817 for (int i = 0; i < that->nodes()->length(); i++) {
819 that->nodes()->at(i)->Accept(this, data);
826 void RegExpUnparser::VisitCharacterRange(CharacterRange that) {
827 stream()->Add("%k", that.from())
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 329 bool operator==(const ExprMapKeyType& that) const {
330 return this->opcode == that.opcode &&
331 this->subclassdata == that.subclassdata &&
332 this->subclassoptionaldata == that.subclassoptionaldata &&
333 this->operands == that.operands &&
334 this->indices == that.indices;
336 bool operator<(const ExprMapKeyType & that) const {
337 if (this->opcode != that.opcode) return this->opcode < that.opcode;
338 if (this->operands != that.operands) return this->operands < that.operands
    [all...]
  /external/chromium/base/
file_path.h 2 // Use of this source code is governed by a BSD-style license that can be
35 // has an impact on correctness on platforms that do not have well-defined
89 // allow older applications that require drive letters to support UNC paths
116 // here so that the same setting can be used in both the implementation and
158 FilePath(const FilePath& that);
161 FilePath& operator=(const FilePath& that);
163 bool operator==(const FilePath& that) const;
165 bool operator!=(const FilePath& that) const;
168 bool operator<(const FilePath& that) const {
169 return path_ < that.path_
    [all...]
  /external/iptables/iptables/
Android.mk 15 # Accommodate arm-eabi-4.4.3 tools that don't set __ANDROID__
38 # Accommodate arm-eabi-4.4.3 tools that don't set __ANDROID__
65 # Accommodate arm-eabi-4.4.3 tools that don't set __ANDROID__
  /external/llvm/test/Bindings/Ocaml/
analysis.ml 9 (* Note that this takes a moment to link, so it's best to keep the number of
28 (* Test that valid constructs verify. *)
37 (* Test that invalid constructs do not verify.
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
SampleGroupDescriptionBox.java 34 * track. Each instance of the SampleGroupDescription box has a type code that distinguishes different
169 SampleGroupDescriptionBox that = (SampleGroupDescriptionBox) o; local
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/
GenericObject.java 38 * 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) {
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
no-page-cache.js 1 description("Tests that pages that use Geolocation are not put in the page cache.<br><br>Currently, Geolocation does not work with the page cache so pages that use Geolocation are explicitly prevented from entering the cache. This test checks for accidental enabling of the page Cache for Geolocation. See https://bugs.webkit.org/show_bug.cgi?id=43956 for details.");
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnPropertyValue.pl 7 # modification, are permitted provided that the following conditions are
113 long sentence that spans
118 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", "\n"],
126 long sentence that spans
132 expectedReturn => ["A\r\nlong sentence that spans\r\nmultiple lines.", "\r\n"],
140 long sentence that spans
144 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", " + A single-line.\n"],
152 long sentence that spans
156 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", "Added: svn:executable\n"],
164 long sentence that span
    [all...]
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarIconList.java 74 * Parcelable.Creator that instantiates StatusBarIconList objects
139 public void copyFrom(StatusBarIconList that) {
140 if (that.mSlots == null) {
144 final int N = that.mSlots.length;
148 this.mSlots[i] = that.mSlots[i];
149 this.mIcons[i] = that.mIcons[i] != null ? that.mIcons[i].clone() : null;
  /external/guava/guava/src/com/google/common/collect/
SingletonImmutableSet.java 40 // A race condition is avoided since threads will either see that the value
98 Set<?> that = (Set<?>) object; local
99 return that.size() == 1 && element.equals(that.iterator().next());

Completed in 1923 milliseconds

1 2 3 4 5 67 8 91011>>