Home
last modified time | relevance | path

Searched refs:Equals (Results 1 – 25 of 190) sorted by relevance

12345678

/external/v8/test/cctest/compiler/
Dtest-operator.cc44 CHECK(op1a.Equals(&op1a)); in TEST()
45 CHECK(op1a.Equals(&op1b)); in TEST()
46 CHECK(op1b.Equals(&op1a)); in TEST()
47 CHECK(op1b.Equals(&op1b)); in TEST()
52 CHECK(op2a.Equals(&op2a)); in TEST()
53 CHECK(op2a.Equals(&op2b)); in TEST()
54 CHECK(op2b.Equals(&op2a)); in TEST()
55 CHECK(op2b.Equals(&op2b)); in TEST()
57 CHECK(!op1a.Equals(&op2a)); in TEST()
58 CHECK(!op1a.Equals(&op2b)); in TEST()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DRemoteDebugEventSocketListener.cs426 if ( elements[0].Equals( "enterRule" ) ) in Dispatch()
430 else if ( elements[0].Equals( "exitRule" ) ) in Dispatch()
434 else if ( elements[0].Equals( "enterAlt" ) ) in Dispatch()
438 else if ( elements[0].Equals( "enterSubRule" ) ) in Dispatch()
442 else if ( elements[0].Equals( "exitSubRule" ) ) in Dispatch()
446 else if ( elements[0].Equals( "enterDecision" ) ) in Dispatch()
448 listener.EnterDecision(int.Parse(elements[1]), elements[2].Equals("true")); in Dispatch()
450 else if ( elements[0].Equals( "exitDecision" ) ) in Dispatch()
454 else if ( elements[0].Equals( "location" ) ) in Dispatch()
459 else if ( elements[0].Equals( "consumeToken" ) ) in Dispatch()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DRemoteDebugEventSocketListener.cs342 if (elements[0].Equals("enterRule")) { in Dispatch()
344 } else if (elements[0].Equals("exitRule")) { in Dispatch()
346 } else if (elements[0].Equals("enterAlt")) { in Dispatch()
348 } else if (elements[0].Equals("enterSubRule")) { in Dispatch()
350 } else if (elements[0].Equals("exitSubRule")) { in Dispatch()
352 } else if (elements[0].Equals("enterDecision")) { in Dispatch()
353 listener.EnterDecision(int.Parse(elements[1]), elements[2].Equals("true")); in Dispatch()
354 } else if (elements[0].Equals("exitDecision")) { in Dispatch()
356 } else if (elements[0].Equals("location")) { in Dispatch()
359 } else if (elements[0].Equals("consumeToken")) { in Dispatch()
[all …]
/external/v8/test/cctest/
Dtest-hydrogen-types.cc24 CHECK(i == j || !kTypes[i].Equals(kTypes[j])); in TEST()
33 CHECK(kTypes[i].Equals(kTypes[i])); in TEST()
51 CHECK(!ti.Equals(tj) || !tj.Equals(tk) || ti.Equals(tk)); in TEST()
93 CHECK(!HType::Any().IsSubtypeOf(ti) || HType::Any().Equals(ti)); in TEST()
102 CHECK(ti.IsTagged() || HType::Any().Equals(ti)); in TEST()
109 HType::Tagged().Equals(ti) || in TEST()
110 HType::Any().Equals(ti)); in TEST()
120 ti.Equals(HType::Smi()) || in TEST()
121 ti.Equals(HType::None())); in TEST()
Dtest-unique.cc269 CHECK(set1->Equals(set1)); in CHECK_SETS()
270 CHECK(set2->Equals(set2)); in CHECK_SETS()
271 CHECK(expected == set1->Equals(set2)); in CHECK_SETS()
272 CHECK(expected == set2->Equals(set1)); in CHECK_SETS()
434 CHECK(set2->Equals(result)); in TEST()
441 CHECK(set1->Equals(result)); in TEST()
442 CHECK(set2->Equals(result)); in TEST()
450 CHECK(set1->Equals(result)); in TEST()
476 CHECK(result->Equals(expected)); in TEST()
477 CHECK(expected->Equals(result)); in TEST()
[all …]
Dtrace-extension.cc45 if (name->Equals(v8::String::NewFromUtf8(isolate, "trace"))) { in GetNativeFunctionTemplate()
47 } else if (name->Equals(v8::String::NewFromUtf8(isolate, "js_trace"))) { in GetNativeFunctionTemplate()
49 } else if (name->Equals(v8::String::NewFromUtf8(isolate, "js_entry_sp"))) { in GetNativeFunctionTemplate()
51 } else if (name->Equals(v8::String::NewFromUtf8(isolate, in GetNativeFunctionTemplate()
Dprofiler-extension.cc44 if (name->Equals(v8::String::NewFromUtf8(isolate, "startProfiling"))) { in GetNativeFunctionTemplate()
47 } else if (name->Equals(v8::String::NewFromUtf8(isolate, "stopProfiling"))) { in GetNativeFunctionTemplate()
/external/v8/src/compiler/
Doperator.h66 virtual bool Equals(const Operator* other) const = 0;
114 virtual bool Equals(const Operator* that) const FINAL { in Equals() function
140 static bool Equals(T a, T b) { in Equals() function
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 {
229 return StaticParameterTraits<T>::Equals(this->parameter_, that->parameter_);
Dvalue-numbering-reducer.cc18 bool Equals(Node* a, Node* b) { in Equals() function
23 if (!a->op()->Equals(b->op())) return false; in Equals()
64 if (Equals(node, entry->node())) { in Reduce()
/external/mockito/src/org/mockito/
DMatchers.java488 return reportMatcher(new Equals(value)).returnFalse(); in eq()
501 return reportMatcher(new Equals(value)).returnZero(); in eq()
514 return reportMatcher(new Equals(value)).returnChar(); in eq()
527 return reportMatcher(new Equals(value)).returnZero(); in eq()
540 return reportMatcher(new Equals(value)).returnZero(); in eq()
553 return reportMatcher(new Equals(value)).returnZero(); in eq()
566 return reportMatcher(new Equals(value)).returnZero(); in eq()
579 return reportMatcher(new Equals(value)).returnZero(); in eq()
592 return (T) reportMatcher(new Equals(value)).<T>returnFor(value); in eq()
/external/easymock/src/org/easymock/internal/matchers/
DEquals.java23 public class Equals implements IArgumentMatcher, Serializable { class
29 public Equals(Object expected) { in Equals() method in Equals
52 Equals other = (Equals) o; in equals()
/external/clang/include/clang/Basic/
DABI.h71 bool Equals(const VirtualAdjustment &Other) const { in Equals() function
77 return Equals(Zero); in isEmpty()
91 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
139 bool Equals(const VirtualAdjustment &Other) const { in Equals() function
145 return Equals(Zero); in isEmpty()
159 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
/external/mockito/src/org/mockito/internal/matchers/
DEquals.java14 public class Equals extends ArgumentMatcher<Object> implements ContainsExtraTypeInformation, Serial… class
19 public Equals(Object wanted) { in Equals() method in Equals
57 Equals other = (Equals) o; in equals()
DArrayEquals.java13 public class ArrayEquals extends Equals {
58 new Equals(array[i]).describeTo(description); in appendArray()
/external/guava/guava-testlib/test/com/google/common/testing/anotherpackage/
DForwardingWrapperTesterTest.java413 private interface Equals { interface in ForwardingWrapperTesterTest
419 private static class NoDelegateToEquals implements Equals {
421 private static Function<Equals, Equals> WRAPPER = new Function<Equals, Equals>() {
422 @Override public NoDelegateToEquals apply(Equals delegate) {
427 private final Equals delegate;
429 NoDelegateToEquals(Equals delegate) { in NoDelegateToEquals()
440 .testForwarding(Equals.class, NoDelegateToEquals.WRAPPER); in testExplicitEqualsAndHashCodeNotDelegatedByDefault()
447 .testForwarding(Equals.class, NoDelegateToEquals.WRAPPER); in testExplicitEqualsAndHashCodeDelegatedWhenExplicitlyAsked()
/external/easymock/src/org/easymock/
DEasyMock.java1069 reportMatcher(new Equals(value)); in eq()
1081 reportMatcher(new Equals(value)); in eq()
1093 reportMatcher(new Equals(value)); in eq()
1105 reportMatcher(new Equals(value)); in eq()
1117 reportMatcher(new Equals(value)); in eq()
1129 reportMatcher(new Equals(value)); in eq()
1141 reportMatcher(new Equals(value)); in eq()
1153 reportMatcher(new Equals(value)); in eq()
1166 reportMatcher(new Equals(value)); in eq()
/external/guava/guava/src/com/google/common/base/
DEquivalence.java306 return Equals.INSTANCE; in equals()
321 static final class Equals extends Equivalence<Object> class in Equivalence
324 static final Equals INSTANCE = new Equals();
/external/sfntly/cpp/src/test/
Dtest_utils.h43 static bool Equals(ByteArray* b1,
55 static bool Equals(ByteArray* b1,
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/
Dencodingoption.h63 bool Equals(const EncodingOption& other) const;
89 return option_.Equals(other); in operator()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DDebugTreeGrammarHelper.cs83 if ( f.GetChild( 0 ).Text.Equals( name ) ) in findFunction()
88 && !new BigInteger( formalPar.Token.Text ).Equals( paramValue ) ) in findFunction()
DProfileTreeGrammarHelper.cs83 if ( f.GetChild( 0 ).Text.Equals( name ) ) in findFunction()
88 && !new BigInteger( formalPar.Token.Text ).Equals( paramValue ) ) in findFunction()
/external/v8/src/
Dv8threads.cc108 if (lazily_archived_thread_.Equals(ThreadId::Current())) { in RestoreThread()
274 DCHECK(lazily_archived_thread_.Equals(ThreadId::Invalid())); in ArchiveThread()
284 DCHECK(state->id().Equals(ThreadId::Invalid())); in ArchiveThread()
286 DCHECK(!state->id().Equals(ThreadId::Invalid())); in ArchiveThread()
362 if (thread_id.Equals(state->id())) { in TerminateExecution()
Dchecks.cc67 if (!expected->Equals(value)) { in CheckEqualsHelper()
83 if (unexpected->Equals(value)) { in CheckNonEqualsHelper()
/external/mockito/src/org/mockito/internal/invocation/
DArgumentsProcessor.java9 import org.mockito.internal.matchers.Equals;
47 matchers.add(new Equals(arg)); in argumentsToMatchers()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeRewriter.cs70 if (r != null && !t.Equals(r.Tree) && r.Tree != null) { in ApplyOnce()
90 treeChanged = !t.Equals(u); in ApplyRepeatedly()

12345678