Searched defs:obj (Results 176 - 200 of 1517) sorted by relevance

1234567891011>>

/external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
H A DCompressionMethod.java51 public boolean equals(Object obj) { argument
52 if (this == obj) {
55 if (obj == null) {
58 if (getClass() != obj.getClass()) {
61 CompressionMethod other = (CompressionMethod) obj;
/external/conscrypt/testing/src/main/java/tests/util/
H A DPair.java70 public boolean equals(Object obj) { argument
71 if (this == obj) {
74 if (obj == null) {
77 if (getClass() != obj.getClass()) {
81 Pair other = (Pair) obj;
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DArrayTypeName.java39 public boolean equals(Object obj) { argument
40 return (obj instanceof ArrayTypeName)
41 && this.componentType.equals(((ArrayTypeName) obj).componentType);
H A DStringLiteral.java91 public boolean equals(Object obj) { argument
92 if (obj == this) {
94 } else if (obj instanceof StringLiteral) {
95 return this.value.equals(((StringLiteral) obj).value);
/external/deqp/framework/platform/android/
H A DtcuAndroidJNI.cpp40 static jfieldID getExecServiceField (JNIEnv* env, jobject obj) argument
42 jclass cls = env->GetObjectClass(obj);
51 static tcu::Android::ExecService* getExecService (JNIEnv* env, jobject obj) argument
53 jfieldID field = getExecServiceField(env, obj);
54 return (tcu::Android::ExecService*)(deIntptr)env->GetLongField(obj, field);
57 static void setExecService (JNIEnv* env, jobject obj, tcu::Android::ExecService* service) argument
59 jfieldID field = getExecServiceField(env, obj);
60 env->SetLongField(obj, field, (jlong)(deIntptr)service);
70 JNIEXPORT void JNICALL Java_com_drawelements_deqp_execserver_ExecService_startServer (JNIEnv* env, jobject obj, jint port) argument
77 DE_ASSERT(!getExecService(env, obj));
95 Java_com_drawelements_deqp_execserver_ExecService_stopServer(JNIEnv* env, jobject obj) argument
[all...]
/external/flatbuffers/tests/MyGame/Example/
H A DTestSimpleTableWithEnum.java13 public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); } argument
H A DTestSimpleTableWithEnum.php19 $obj = new TestSimpleTableWithEnum(); variable
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
H A DVec3.php70 $obj = new Test(); variable
71 $obj->init($this->bb_pos + 26, $this->bb);
72 return $obj;
/external/flatbuffers/tests/MyGame/Example2/
H A DMonster.cs14 public static Monster GetRootAsMonster(ByteBuffer _bb, Monster obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); } argument
H A DMonster.java13 public static Monster getRootAsMonster(ByteBuffer _bb, Monster obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); } argument
H A DMonster.php19 $obj = new Monster(); variable
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
H A DTableInNestedNS.java13 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); } argument
H A DTableInNestedNS.php19 $obj = new TableInNestedNS(); variable
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
/external/flatbuffers/tests/namespace_test/NamespaceA/
H A DSecondTableInA.java13 public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); } argument
18 public NamespaceC.TableInC referToC(NamespaceC.TableInC obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; } argument
H A DSecondTableInA.php19 $obj = new SecondTableInA(); variable
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
37 $obj = new TableInC(); variable
39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
H A DTableInC.php19 $obj = new TableInC(); variable
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
37 $obj = new TableInFirstNS(); variable
39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
44 $obj = new SecondTableInA(); variable
46 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
H A DTableInFirstNS.php19 $obj = new TableInFirstNS(); variable
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
37 $obj = new TableInNestedNS(); variable
39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
53 $obj = new StructInNestedNS(); variable
55 return $o != 0 ? $obj->init($o + $this->bb_pos, $this->bb) : 0;
/external/flatbuffers/tests/namespace_test/NamespaceC/
H A DTableInC.php19 $obj = new TableInC(); variable
20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
37 $obj = new TableInFirstNS(); variable
39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
44 $obj = new SecondTableInA(); variable
46 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
H A DConfigurationMessage.java64 public boolean equals(Object obj) { argument
65 if (this == obj) {
69 if (!(obj instanceof ConfigurationMessage)) {
73 ConfigurationMessage other = (ConfigurationMessage) obj;
H A DPairingRequestAckMessage.java58 public boolean equals(Object obj) { argument
59 if (this == obj) {
63 if (!(obj instanceof PairingRequestAckMessage)) {
67 PairingRequestAckMessage other = (PairingRequestAckMessage) obj;
H A DPairingRequestMessage.java70 public boolean equals(Object obj) { argument
71 if (this == obj) {
75 if (!(obj instanceof PairingRequestMessage)) {
79 PairingRequestMessage other = (PairingRequestMessage) obj;
H A DSecretAckMessage.java52 public boolean equals(Object obj) { argument
53 if (this == obj) {
57 if (!(obj instanceof SecretAckMessage)) {
61 SecretAckMessage other = (SecretAckMessage) obj;
H A DSecretMessage.java52 public boolean equals(Object obj) { argument
53 if (this == obj) {
57 if (!(obj instanceof SecretMessage)) {
61 SecretMessage other = (SecretMessage) obj;
/external/guava/guava/src/com/google/common/collect/
H A DListMultimap.java97 boolean equals(@Nullable Object obj); argument
H A DSetMultimap.java119 boolean equals(@Nullable Object obj); argument

Completed in 276 milliseconds

1234567891011>>