HomeSort by relevance Sort by last modified time
    Searched refs:equal (Results 51 - 75 of 685) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_CMPL_DOUBLE.S 23 moveq r0, #0 @ (equal) r1<- 0, trumps less than
TEMPLATE_CMPL_FLOAT.S 43 moveq r0, #0 @ (equal) r0<- 0, trumps less than
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRoute.java 348 boolean equal = this.targetHost.equals(that.targetHost);
349 equal &=
353 equal &=
359 equal &=
365 if (equal && (this.proxyChain != null)) {
366 for (int i=0; equal && (i<this.proxyChain.length); i++)
367 equal = this.proxyChain[i].equals(that.proxyChain[i]);
370 return equal;
RouteTracker.java 335 boolean equal = this.targetHost.equals(that.targetHost);
336 equal &=
340 equal &=
346 equal &=
353 if (equal && (this.proxyChain != null)) {
354 for (int i=0; equal && (i<this.proxyChain.length); i++)
355 equal = this.proxyChain[i].equals(that.proxyChain[i]);
358 return equal;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
Pair.java 49 return Objects.equal(getLeft(), other.getLeft())
50 && Objects.equal(getRight(), other.getRight());
  /external/guava/guava/src/com/google/common/cache/
RemovalNotification.java 81 return Objects.equal(this.getKey(), that.getKey())
82 && Objects.equal(this.getValue(), that.getValue());
  /external/guava/guava/src/com/google/common/collect/
AbstractMapEntry.java 49 return Objects.equal(this.getKey(), that.getKey())
50 && Objects.equal(this.getValue(), that.getValue());
ForwardingMapEntry.java 42 * Objects#equal} to test equality for both keys and values. This may not be
98 return Objects.equal(this.getKey(), that.getKey())
99 && Objects.equal(this.getValue(), that.getValue());
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.cpp 93 static bool equal(StringImpl* r, const char* s) function in struct:WTF::CStringTranslator
120 return CStringTranslator::equal(impl, b);
138 static inline bool equal(StringImpl* string, const UChar* characters, unsigned length) function in namespace:WTF
173 return string.impl() && equal(string.impl(), vector.data(), vector.size());
182 static bool equal(StringImpl* const& str, const UCharBuffer& buf) function in struct:WTF::UCharBufferTranslator
184 return WTF::equal(str, buf.s, buf.length);
208 static bool equal(StringImpl* const& string, const HashAndCharacters& buffer) function in struct:WTF::HashAndCharactersTranslator
210 return WTF::equal(string, buffer.characters, buffer.length);
234 static bool equal(StringImpl* const& string, const HashAndUTF8Characters& buffer) function in struct:WTF::HashAndUTF8CharactersTranslator
  /packages/apps/Calculator/tests/src/com/android/calculator2/
CalculatorHitSomeButtons.java 91 tap(R.id.equal);
100 tap(R.id.equal);
110 tap(R.id.equal);
  /external/openfst/src/bin/
fstequal.cc 20 // Two FSTS are equal iff they their exit status is zero.
23 #include <fst/script/equal.h>
31 string usage = "Two FSTs are equal iff the exit status is zero.\n\n Usage: ";
56 bool result = s::Equal(*ifst1, *ifst2, FLAGS_delta);
58 VLOG(1) << "FSTs are not equal.";
  /external/openfst/src/include/fst/script/
equal.h 22 #include <fst/equal.h>
31 void Equal(EqualArgs *args) {
35 args->retval = Equal(fst1, fst2, args->args.arg3);
38 bool Equal(const FstClass &fst1, const FstClass &fst2,
  /external/proguard/src/proguard/evaluation/value/
IdentifiedReferenceValue.java 54 public int equal(ReferenceValue other) method in class:IdentifiedReferenceValue
IntegerValue.java 200 * Returns whether this IntegerValue and the given IntegerValue are equal:
203 public abstract int equal(IntegerValue other); method in class:IntegerValue
212 * Returns whether this IntegerValue is less than or equal to the given
227 return -equal(other);
240 * Returns whether this IntegerValue is greater than or equal to the given IntegerValue:
433 * equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
435 public int equal(UnknownIntegerValue other) method in class:IntegerValue
437 return equal((IntegerValue)other);
451 * Returns whether this IntegerValue is less than or equal to the given
469 return -equal(other)
679 public int equal(SpecificIntegerValue other) method in class:IntegerValue
923 public int equal(ParticularIntegerValue other) method in class:IntegerValue
    [all...]
  /external/webkit/Source/WebCore/platform/
LinkHash.h 41 static bool equal(LinkHash a, LinkHash b) { return a == b; } function in struct:WebCore::LinkHashHash
  /external/webkit/Source/WebCore/platform/graphics/
IntPointHash.h 32 static bool equal(const WebCore::IntPoint& a, const WebCore::IntPoint& b) { return a == b; } function in struct:WTF::IntPointHash
IntSizeHash.h 31 static bool equal(const WebCore::IntSize& a, const WebCore::IntSize& b) { return a == b; } function in struct:WTF::IntHash
  /external/webkit/Source/WebCore/platform/network/
ProtectionSpaceHash.h 52 static bool equal(const ProtectionSpace& a, const ProtectionSpace& b) { return a == b; } function in struct:WebCore::ProtectionSpaceHash
  /external/webkit/Source/WebCore/rendering/style/
ContentData.cpp 49 return equal(text(), other.text());
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedPropertyDescription.h 75 static bool equal(const SVGAnimatedPropertyDescription& a, const SVGAnimatedPropertyDescription& b) function in struct:WebCore::SVGAnimatedPropertyDescriptionHash
  /dalvik/vm/mterp/x86/
OP_CMPG_DOUBLE.S 17 fucompp # z if equal, p set if NaN, c set if st0 < st1
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
EnumerationValuesPropertyEditor.java 64 if (Objects.equal(m_values[i], value)) {
82 if (Objects.equal(m_values[i], value)) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsum.h 81 ArcSumEqual<A> equal; local
83 if (equal(current_arc, arcs[i])) {
  /external/webkit/Source/JavaScriptCore/runtime/
RegExpKey.h 86 return equal(a.pattern.get(), b.pattern.get());
97 static bool equal(const JSC::RegExpKey& a, const JSC::RegExpKey& b) { return a == b; } function in struct:WTF::RegExpHash
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.cpp 57 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))
73 if (sourceFrame != frame && frame->document()->securityOrigin()->equal(securityOrigin))

Completed in 972 milliseconds

1 23 4 5 6 7 8 91011>>