Searched defs:object (Results 1 - 25 of 919) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/mac/
H A DFoundationExtras.h29 // Use HardAutorelease to return an object made by a CoreFoundation
31 // object. CF objects need to be "made collectable" for autorelease to work
34 static inline id HardAutorelease(CFTypeRef object) argument
36 if (object)
37 CFMakeCollectable(object);
38 [(id)object autorelease];
39 return (id)object;
/external/v8/test/mjsunit/compiler/
H A Ddeopt-args.js38 var object = { };
39 object.f = f;
41 assertEquals(42, g(object));
44 g(object);
46 object.f = function(a,b,c) { return 87; };
47 assertEquals(87, g(object));
H A Dproperty-calls.js33 var object = { };
34 object.g = g;
35 for (var i = 0; i < 5; i++) f(object);
37 f(object);
38 assertEquals(42, f(object));
40 object = { g: function() { return 87; } };
41 assertEquals(87, f(object));
H A Dregress-3249650.js36 var object = { a: "", b: false, c: {}};
37 object.f = function(x) { return this; }
46 object.f("A").b = true;
47 object.f("B").a = "";
48 object.f("C").c.display = "A";
49 object.f("D").c.display = "A";
H A Dproperty-refs.js40 var object = {
46 StoreXY(object, x, y);
47 return Load(object);
/external/v8/test/mjsunit/
H A Dproperty-object-key.js29 var object = { baz: 42 };
31 assertEquals(42, object[key]);
32 object[key] = 87;
33 assertEquals(87, object[key]);
34 object[key]++;
35 assertEquals(88, object[key]);
/external/webkit/LayoutTests/fast/js/resources/
H A Dconst.js100 var object = { inWith1: "RIGHT", inWith2: ""}
101 with (object) {
106 shouldBe("object.inWith1", "'RIGHT'");
115 // Make sure we don't override properties placed on the global object
/external/clang/test/SemaCXX/
H A Dbuiltin_objc_msgSend.cpp10 inline void TCFReleaseGC(void * object) argument
13 objc_msgSend((id)object, SEL_release);
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_SphereCollisionShape.cpp49 (JNIEnv *env, jobject object, jfloat radius) {
48 Java_com_jme3_bullet_collision_shapes_SphereCollisionShape_createShape(JNIEnv *env, jobject object, jfloat radius) argument
H A Dcom_jme3_bullet_collision_shapes_BoxCollisionShape.cpp49 (JNIEnv *env, jobject object, jobject halfExtents) {
48 Java_com_jme3_bullet_collision_shapes_BoxCollisionShape_createShape(JNIEnv *env, jobject object, jobject halfExtents) argument
H A Dcom_jme3_bullet_collision_shapes_CapsuleCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
48 Java_com_jme3_bullet_collision_shapes_CapsuleCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
H A Dcom_jme3_bullet_collision_shapes_ConeCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
48 Java_com_jme3_bullet_collision_shapes_ConeCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
H A Dcom_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jobject halfExtents) {
48 Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jobject halfExtents) argument
H A Dcom_jme3_bullet_collision_shapes_GImpactCollisionShape.cpp50 (JNIEnv * env, jobject object, jlong meshId) {
63 (JNIEnv * env, jobject object, jlong meshId) {
49 Java_com_jme3_bullet_collision_shapes_GImpactCollisionShape_createShape(JNIEnv * env, jobject object, jlong meshId) argument
62 Java_com_jme3_bullet_collision_shapes_GImpactCollisionShape_finalizeNative(JNIEnv * env, jobject object, jlong meshId) argument
H A Dcom_jme3_bullet_collision_shapes_MeshCollisionShape.cpp50 (JNIEnv * env, jobject object, jlong arrayId) {
63 (JNIEnv * env, jobject object, jlong arrayId){
49 Java_com_jme3_bullet_collision_shapes_MeshCollisionShape_createShape(JNIEnv * env, jobject object, jlong arrayId) argument
62 Java_com_jme3_bullet_collision_shapes_MeshCollisionShape_finalizeNative(JNIEnv * env, jobject object, jlong arrayId) argument
H A Dcom_jme3_bullet_collision_shapes_PlaneCollisionShape.cpp50 (JNIEnv * env, jobject object, jobject normal, jfloat constant) {
49 Java_com_jme3_bullet_collision_shapes_PlaneCollisionShape_createShape(JNIEnv * env, jobject object, jobject normal, jfloat constant) argument
H A Dcom_jme3_bullet_joints_PhysicsJoint.cpp49 (JNIEnv * env, jobject object, jlong jointId) {
53 env->ThrowNew(newExc, "The native object does not exist.");
48 Java_com_jme3_bullet_joints_PhysicsJoint_getAppliedImpulse(JNIEnv * env, jobject object, jlong jointId) argument
/external/webkit/Source/WebCore/bindings/js/
H A DJSCanvasRenderingContextCustom.cpp40 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, CanvasRenderingContext* object) argument
42 if (!object)
46 if (object->is3d())
47 return wrap<JSWebGLRenderingContext>(exec, globalObject, static_cast<WebGLRenderingContext*>(object));
49 ASSERT(object->is2d());
50 return wrap<JSCanvasRenderingContext2D>(exec, globalObject, static_cast<CanvasRenderingContext2D*>(object));
H A DJSSVGPathSegCustom.cpp61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object) argument
63 if (!object)
66 if (JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), object))
69 switch (object->pathSegType()) {
71 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegClosePath, object);
73 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoAbs, object);
75 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoRel, object);
77 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoAbs, object);
79 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoRel, object);
81 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegCurvetoCubicAbs, object);
[all...]
H A DScriptControllerQt.cpp56 QObject* object = widget->bindingObject(); local
58 if (!object)
59 object = widget->platformWidget();
61 if (!object)
64 return JSC::Bindings::QtInstance::getQtInstance(object, bindingRootObject(), QScriptEngine::QtOwnership);
/external/chromium/base/memory/
H A Dsingleton_objc.h7 // appropriate for Objective-C objects. A typical Objective-C object of type
14 // NSExampleType* object. The object will be released by calling
47 static void Delete(Type* object) { argument
48 [object release];
/external/guava/guava-gwt/src-super/com/google/common/testing/super/com/google/common/testing/
H A DPlatform.java28 * Serializes and deserializes the specified object (a no-op under GWT).
31 static <T> T reserialize(T object) { argument
32 return checkNotNull(object);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DPlatform.java34 * Serializes and deserializes the specified object.
37 static <T> T reserialize(T object) { argument
38 checkNotNull(object);
42 out.writeObject(object);
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Helpers.cpp42 V8NPObject* object = reinterpret_cast<V8NPObject*>(npObject); local
43 return V8Proxy::mainWorldContext(object->rootObject->frame());
48 V8NPObject* object = reinterpret_cast<V8NPObject*>(npObject); local
49 Frame* frame = object->rootObject->frame();
/external/webkit/Source/WebCore/bridge/
H A DNP_jsobject.h45 NPObject object; member in struct:JavaScriptObject

Completed in 1253 milliseconds

1234567891011>>