Searched defs:object (Results 76 - 100 of 919) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/rendering/
H A DRenderSummary.h44 inline RenderSummary* toRenderSummary(RenderObject* object) argument
46 ASSERT(!object || object->isSummary());
47 return static_cast<RenderSummary*>(object);
H A DRenderVideo.h82 inline RenderVideo* toRenderVideo(RenderObject* object) argument
84 ASSERT(!object || object->isVideo());
85 return static_cast<RenderVideo*>(object);
H A DRenderWidgetProtector.h36 RenderWidgetProtector(RenderWidget* object) argument
37 : m_object(object)
38 , m_arena(object->ref())
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGTextPath.h51 inline RenderSVGTextPath* toRenderSVGTextPath(RenderObject* object) argument
53 ASSERT(!object || !strcmp(object->renderName(), "RenderSVGTextPath"));
54 return static_cast<RenderSVGTextPath*>(object);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyGuard.java33 public void checkGuard(Object object) { argument
/external/apache-http/src/org/apache/http/message/
H A DBasicNameValuePair.java166 public boolean equals(final Object object) { argument
167 if (object == null) return false;
168 if (this == object) return true;
169 if (object instanceof NameValuePair) {
170 BasicNameValuePair that = (BasicNameValuePair) object;
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNodeSetForDOM.java32 * This class overrides the XNodeSet#object() method to provide the original
33 * Node object, NodeList object, or NodeIterator.
50 * Construct a XNodeSet object.
52 * @param val Value of the XNodeSet object
90 * Return the original DOM object that the user passed in. For use primarily
93 * @return The object that this class wraps
95 public Object object() method in class:XNodeSetForDOM
101 * Cast result object to a nodelist. Always issues an error.
114 * Cast result object t
[all...]
/external/clang/test/Index/
H A Dcomplete-cxx-inline-methods.cpp22 MyCls *object; member in class:__anon4427::OtherClass
39 // CHECK-CTOR-INIT: MemberRef:{TypedText object}{LeftParen (}{Placeholder args}{RightParen )} (35)
43 // CHECK-CTOR-INIT-2: MemberRef:{TypedText object}{LeftParen (}{Placeholder args}{RightParen )} (35)
/external/guava/guava/src/com/google/common/base/
H A DPairwiseEquivalence.java60 public boolean equals(@Nullable Object object) { argument
61 if (object instanceof PairwiseEquivalence) {
62 PairwiseEquivalence<?> that = (PairwiseEquivalence<?>) object;
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapEntry.java46 @Override public boolean equals(@Nullable Object object) { argument
47 if (object instanceof Entry) {
48 Entry<?, ?> that = (Entry<?, ?>) object;
H A DByFunctionOrdering.java49 @Override public boolean equals(@Nullable Object object) { argument
50 if (object == this) {
53 if (object instanceof ByFunctionOrdering) {
54 ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object;
H A DForwardingMapEntry.java79 @Override public boolean equals(@Nullable Object object) { argument
80 return delegate().equals(object);
95 @Beta protected boolean standardEquals(@Nullable Object object) { argument
96 if (object instanceof Entry) {
97 Entry<?, ?> that = (Entry<?, ?>) object;
H A DForwardingSet.java56 @Override public boolean equals(@Nullable Object object) { argument
57 return object == this || delegate().equals(object);
71 @Beta protected boolean standardEquals(@Nullable Object object) { argument
72 return Sets.equalsImpl(this, object);
H A DLexicographicalOrdering.java58 @Override public boolean equals(@Nullable Object object) { argument
59 if (object == this) {
62 if (object instanceof LexicographicalOrdering) {
63 LexicographicalOrdering<?> that = (LexicographicalOrdering<?>) object;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java42 @Override public boolean contains(@Nullable Object object) { argument
43 return object != null && delegate.contains(object);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalSet.java67 @Override public boolean equals(Object object) { argument
68 if (object instanceof Set) {
69 Set<?> that = (Set<?>) object;
H A DUnhashableObject.java20 * An unhashable object to be used in testing as values in our collections.
33 @Override public boolean equals(Object object) { argument
34 if (object instanceof UnhashableObject) {
35 UnhashableObject that = (UnhashableObject) object;
/external/guava/guava-tests/test/com/google/common/collect/
H A DLegacyComparable.java50 public int compareTo(Object object) { argument
51 // This method is spec'd to throw CCE if object is of the wrong type
52 LegacyComparable that = (LegacyComparable) object;
56 @Override public boolean equals(Object object) { argument
57 if (object instanceof LegacyComparable) {
58 LegacyComparable that = (LegacyComparable) object;
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_PhysicsCollisionObject.cpp50 (JNIEnv * env, jobject object, jlong objectId, jlong shapeId) {
54 env->ThrowNew(newExc, "The collision object does not exist.");
72 (JNIEnv * env, jobject object, jlong objectId) {
76 env->ThrowNew(newExc, "The native object does not exist.");
91 (JNIEnv *env, jobject object, jlong objectId, jint group, jint groups) {
95 env->ThrowNew(newExc, "The native object does not exist.");
103 userPointer -> javaCollisionObject = env->NewWeakGlobalRef(object);
115 (JNIEnv *env, jobject object, jlong objectId, jint group) {
119 env->ThrowNew(newExc, "The native object does not exist.");
133 (JNIEnv *env, jobject object, jlon
49 Java_com_jme3_bullet_collision_PhysicsCollisionObject_attachCollisionShape(JNIEnv * env, jobject object, jlong objectId, jlong shapeId) argument
71 Java_com_jme3_bullet_collision_PhysicsCollisionObject_finalizeNative(JNIEnv * env, jobject object, jlong objectId) argument
90 Java_com_jme3_bullet_collision_PhysicsCollisionObject_initUserPointer(JNIEnv *env, jobject object, jlong objectId, jint group, jint groups) argument
114 Java_com_jme3_bullet_collision_PhysicsCollisionObject_setCollisionGroup(JNIEnv *env, jobject object, jlong objectId, jint group) argument
132 Java_com_jme3_bullet_collision_PhysicsCollisionObject_setCollideWithGroups(JNIEnv *env, jobject object, jlong objectId, jint groups) argument
[all...]
H A Dcom_jme3_bullet_collision_shapes_CollisionShape.cpp49 (JNIEnv * env, jobject object, jlong shapeId) {
53 env->ThrowNew(newExc, "The native object does not exist.");
65 (JNIEnv * env, jobject object, jlong shapeId, jobject scale) {
69 env->ThrowNew(newExc, "The native object does not exist.");
83 (JNIEnv * env, jobject object, jlong shapeId, jfloat newMargin) {
87 env->ThrowNew(newExc, "The native object does not exist.");
99 (JNIEnv * env, jobject object, jlong shapeId) {
103 env->ThrowNew(newExc, "The native object does not exist.");
48 Java_com_jme3_bullet_collision_shapes_CollisionShape_getMargin(JNIEnv * env, jobject object, jlong shapeId) argument
64 Java_com_jme3_bullet_collision_shapes_CollisionShape_setLocalScaling(JNIEnv * env, jobject object, jlong shapeId, jobject scale) argument
82 Java_com_jme3_bullet_collision_shapes_CollisionShape_setMargin(JNIEnv * env, jobject object, jlong shapeId, jfloat newMargin) argument
98 Java_com_jme3_bullet_collision_shapes_CollisionShape_finalizeNative(JNIEnv * env, jobject object, jlong shapeId) argument
H A Dcom_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp49 (JNIEnv *env, jobject object) {
61 (JNIEnv *env, jobject object, jlong compoundId, jlong childId, jobject childLocation, jobject childRotation) {
65 env->ThrowNew(newExc, "The native object does not exist.");
71 env->ThrowNew(newExc, "The native object does not exist.");
88 (JNIEnv * env, jobject object, jlong compoundId, jlong childId) {
92 env->ThrowNew(newExc, "The native object does not exist.");
98 env->ThrowNew(newExc, "The native object does not exist.");
48 Java_com_jme3_bullet_collision_shapes_CompoundCollisionShape_createShape(JNIEnv *env, jobject object) argument
60 Java_com_jme3_bullet_collision_shapes_CompoundCollisionShape_addChildShape(JNIEnv *env, jobject object, jlong compoundId, jlong childId, jobject childLocation, jobject childRotation) argument
87 Java_com_jme3_bullet_collision_shapes_CompoundCollisionShape_removeChildShape(JNIEnv * env, jobject object, jlong compoundId, jlong childId) argument
H A Dcom_jme3_bullet_collision_shapes_HeightfieldCollisionShape.cpp50 (JNIEnv * env, jobject object, jint heightStickWidth, jint heightStickLength, jobject heightfieldData, jfloat heightScale, jfloat minHeight, jfloat maxHeight, jint upAxis, jboolean flipQuadEdges) {
49 Java_com_jme3_bullet_collision_shapes_HeightfieldCollisionShape_createShape(JNIEnv * env, jobject object, jint heightStickWidth, jint heightStickLength, jobject heightfieldData, jfloat heightScale, jfloat minHeight, jfloat maxHeight, jint upAxis, jboolean flipQuadEdges) argument
H A Dcom_jme3_bullet_collision_shapes_SimplexCollisionShape.cpp49 (JNIEnv *env, jobject object, jobject vector1) {
63 (JNIEnv *env, jobject object, jobject vector1, jobject vector2) {
78 (JNIEnv * env, jobject object, jobject vector1, jobject vector2, jobject vector3) {
95 (JNIEnv * env, jobject object, jobject vector1, jobject vector2, jobject vector3, jobject vector4) {
48 Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2(JNIEnv *env, jobject object, jobject vector1) argument
62 Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2(JNIEnv *env, jobject object, jobject vector1, jobject vector2) argument
77 Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2(JNIEnv * env, jobject object, jobject vector1, jobject vector2, jobject vector3) argument
94 Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2(JNIEnv * env, jobject object, jobject vector1, jobject vector2, jobject vector3, jobject vector4) argument
H A Dcom_jme3_bullet_objects_infos_RigidBodyMotionState.cpp50 (JNIEnv *env, jobject object) {
62 (JNIEnv *env, jobject object, jlong stateId, jobject location, jobject rotation) {
66 env->ThrowNew(newExc, "The native object does not exist.");
78 (JNIEnv *env, jobject object, jlong stateId, jobject value) {
82 env->ThrowNew(newExc, "The native object does not exist.");
94 (JNIEnv *env, jobject object, jlong stateId, jobject value) {
98 env->ThrowNew(newExc, "The native object does not exist.");
110 (JNIEnv *env, jobject object, jlong stateId, jobject value) {
114 env->ThrowNew(newExc, "The native object does not exist.");
126 (JNIEnv *env, jobject object, jlon
49 Java_com_jme3_bullet_objects_infos_RigidBodyMotionState_createMotionState(JNIEnv *env, jobject object) argument
61 Java_com_jme3_bullet_objects_infos_RigidBodyMotionState_applyTransform(JNIEnv *env, jobject object, jlong stateId, jobject location, jobject rotation) argument
77 Java_com_jme3_bullet_objects_infos_RigidBodyMotionState_getWorldLocation(JNIEnv *env, jobject object, jlong stateId, jobject value) argument
93 Java_com_jme3_bullet_objects_infos_RigidBodyMotionState_getWorldRotation(JNIEnv *env, jobject object, jlong stateId, jobject value) argument
109 Java_com_jme3_bullet_objects_infos_RigidBodyMotionState_getWorldRotationQuat(JNIEnv *env, jobject object, jlong stateId, jobject value) argument
125 Java_com_jme3_bullet_objects_infos_RigidBodyMotionState_finalizeNative(JNIEnv *env, jobject object, jlong stateId) argument
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DBooleanSerializer.java51 public void writeObject(ByteBuffer buffer, Object object) throws IOException { argument
52 buffer.put(((Boolean)object) ? (byte)1 : (byte)0);

Completed in 442 milliseconds

1234567891011>>