Searched defs:obj (Results 201 - 225 of 1735) sorted by relevance

1234567891011>>

/external/flatbuffers/tests/MyGame/
H A DInParentNamespace.php19 $obj = new InParentNamespace(); 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/flatbuffers/tests/union_vector/
H A DAttacker.php17 $obj = new Attacker(); variable
18 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
/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
/external/guava/guava/src/com/google/common/eventbus/
H A DEventSubscriber.java97 @Override public boolean equals(@Nullable Object obj) { argument
98 if (obj instanceof EventSubscriber) {
99 EventSubscriber that = (EventSubscriber) obj;
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
H A DPlatform.java28 static boolean checkIsInstance(Class<?> clazz, Object obj) { argument
30 * In GWT, we can't tell whether obj is an instance of clazz because GWT
38 static void checkCast(Class<?> clazz, Object obj) { argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DPlatform.java37 static boolean checkIsInstance(Class<?> clazz, Object obj) { argument
38 return clazz.isInstance(obj);
46 static void checkCast(Class<?> clazz, Object obj) { argument
47 clazz.cast(obj);
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
H A DBindingCollector.java58 public boolean equals(Object obj) { argument
59 return (obj instanceof BindingCollector) && bindings.equals(((BindingCollector) obj).bindings);
/external/guice/extensions/grapher/src/com/google/inject/grapher/
H A DDependencyEdge.java45 @Override public boolean equals(Object obj) { argument
46 if (!(obj instanceof DependencyEdge)) {
49 DependencyEdge other = (DependencyEdge) obj;
H A DEdge.java44 @Override public boolean equals(Object obj) { argument
45 if (!(obj instanceof Edge)) {
48 Edge other = (Edge) obj;
H A DImplementationNode.java44 @Override public boolean equals(Object obj) { argument
45 if (!(obj instanceof ImplementationNode)) {
48 ImplementationNode other = (ImplementationNode) obj;
H A DInstanceNode.java46 @Override public boolean equals(Object obj) { argument
47 if (!(obj instanceof InstanceNode)) {
50 InstanceNode other = (InstanceNode) obj;
H A DInterfaceNode.java35 @Override public boolean equals(Object obj) { argument
36 return (obj instanceof InterfaceNode) && super.equals(obj);

Completed in 260 milliseconds

1234567891011>>