HomeSort by relevance Sort by last modified time
    Searched defs:Equals (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
encodingoption.cc 36 bool EncodingOption::Equals(const EncodingOption& other) const {
  /art/runtime/arch/mips64/
instruction_set_features_mips64.cc 81 bool Mips64InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Equals.java 19 * $Id: Equals.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Equals extends Operation
48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
68 boolean result = left.equals(right) ? true : false;
  /external/easymock/src/org/easymock/internal/matchers/
Equals.java 23 public class Equals implements IArgumentMatcher, Serializable {
29 public Equals(Object expected) {
37 return expected.equals(actual);
49 public boolean equals(Object o) { method in class:Equals
50 if (o == null || !this.getClass().equals(o.getClass()))
52 Equals other = (Equals) o;
55 && this.expected.equals(other.expected);
  /external/v8/src/compiler/
value-numbering-reducer.cc 18 bool Equals(Node* a, Node* b) {
23 if (!a->op()->Equals(b->op())) return false;
64 if (Equals(node, entry->node())) {
machine-operator.cc 41 static bool Equals(const StoreRepresentation& rep1,
54 static bool Equals(LoadRepresentation lhs, LoadRepresentation rhs) {
simplified-operator.cc 73 static bool Equals(const FieldAccess& lhs, const FieldAccess& rhs) {
90 static bool Equals(const ElementAccess& lhs, const ElementAccess& rhs) {
common-operator.cc 50 static bool Equals(ExternalReference lhs, ExternalReference rhs) {
operator.h 63 // Check if this operator equals another operator. Equivalent operators can
66 virtual bool Equals(const Operator* other) const = 0;
114 virtual bool Equals(const Operator* that) const FINAL {
140 static bool Equals(T a, T b) {
152 static bool Equals(int a, int b) { return a == b; }
164 static bool Equals(double a, double b) {
178 static bool Equals(Unique<Object> a, Unique<Object> b) { return a == b; }
188 static bool Equals(Unique<Name> a, Unique<Name> b) { return a == b; }
204 static bool Equals(Handle<Object> a, Handle<Object> b) {
226 virtual bool Equals(const Operator* other) const OVERRIDE
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
Equals.java 14 public class Equals extends ArgumentMatcher<Object> implements ContainsExtraTypeInformation, Serializable {
19 public Equals(Object wanted) {
53 public boolean equals(Object o) { method in class:Equals
54 if (o == null || !this.getClass().equals(o.getClass())) {
57 Equals other = (Equals) o;
58 return this.wanted == null && other.wanted == null || this.wanted != null && this.wanted.equals(other.wanted);
  /art/compiler/utils/
managed_register.h 64 // It is valid to invoke Equals on and with a NoRegister.
65 bool Equals(const ManagedRegister& other) const {
  /art/runtime/arch/arm64/
instruction_set_features_arm64.cc 106 bool Arm64InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /art/runtime/arch/mips/
instruction_set_features_mips.cc 162 bool MipsInstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /art/runtime/arch/x86/
instruction_set_features_x86.cc 197 bool X86InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 195 public override bool Equals(object other) {
273 return this.and(a).equals(this);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 224 public override bool Equals( object other )
322 return this.and(a).equals(this);
  /external/v8/src/
safepoint-table.h 28 bool Equals(const SafepointEntry& other) const {
  /external/v8/test/cctest/
test-liveedit.cc 51 bool Equals(int index1, int index2) {
  /frameworks/base/media/mca/filterfw/native/core/
gl_env.h 49 virtual bool Equals(const WindowHandle* window) const {
  /art/compiler/dex/quick/
resource_mask.h 109 constexpr bool Equals(const ResourceMask& other) const {
  /art/runtime/arch/arm/
instruction_set_features_arm.cc 231 bool ArmInstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /art/runtime/
safe_map.h 115 bool Equals(const Self& rhs) const {
126 return lhs.Equals(rhs);
  /external/clang/include/clang/Basic/
ABI.h 71 bool Equals(const VirtualAdjustment &Other) const {
77 return Equals(Zero);
91 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
139 bool Equals(const VirtualAdjustment &Other) const {
145 return Equals(Zero);
159 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 30 * equivalences are the {@linkplain #identity() identity equivalence} and {@linkplain #equals equals
126 * Equivalence<Person> SAME_AGE = Equivalence.equals().onResultOf(GET_PERSON_AGE);}</pre>
145 * {@link Wrapper#equals(Object) Object.equals()} such that
146 * {@code wrap(a).equals(wrap(b))} if and only if {@code equivalent(a, b)}.
155 * Wraps an object so that {@link #equals(Object)} and {@link #hashCode()} delegate to an
162 * equiv.wrap("a").equals(equiv.wrap("b")) // true
163 * equiv.wrap("a").equals(equiv.wrap("hello")) // false}</pre>
168 * equiv.wrap(obj).equals(obj) // always false}</pre
191 @Override public boolean equals(@Nullable Object obj) { method in class:Equivalence.Wrapper
272 @Override public boolean equals(@Nullable Object obj) { method in class:Equivalence.EquivalentToPredicate
305 public static Equivalence<Object> equals() { method in class:Equivalence
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmatrix.h 91 BOOL Equals(const Matrix *matrix) const

Completed in 905 milliseconds

1 2 3 4 5 6