HomeSort by relevance Sort by last modified time
    Searched defs:object (Results 76 - 100 of 319) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/runtime/
LiteralParser.cpp 336 JSObject* object = constructEmptyObject(m_exec); local
337 objectStack.append(object);
ScopeChain.h 38 ScopeChainNode(ScopeChainNode* next, JSObject* object, JSGlobalData* globalData, JSGlobalObject* globalObject, JSObject* globalThis)
42 , object(*globalData, this, object)
52 WriteBarrier<JSObject> object; member in class:JSC::ScopeChainNode
94 WriteBarrier<JSObject> const & operator*() const { return m_node->object; }
  /external/webkit/Source/WebCore/bindings/gobject/
DOMObjectCache.cpp 24 #include "glib-object.h"
30 GObject* object; member in struct:WebKit::__anon13023
88 // were unreffed (but not all, otherwise the object would be
91 // object dies in the middle of the process, we'll just stop.
93 g_object_weak_ref(data->object, weakRefNotify, &objectDead);
99 // because the object might be dead at that point.
101 g_object_weak_unref(data->object, weakRefNotify, &objectDead);
103 g_object_unref(data->object);
121 ASSERT(data->object);
123 return g_object_ref(data->object);
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDeviceMotionEventCustom.cpp 43 // Given the above test, this will always yield an object.
44 JSObject* object = value.toObject(exec);
46 JSValue xValue = object->get(exec, Identifier(exec, "x"));
54 JSValue yValue = object->get(exec, Identifier(exec, "y"));
62 JSValue zValue = object->get(exec, Identifier(exec, "z"));
81 // Given the above test, this will always yield an object.
82 JSObject* object = value.toObject(exec);
84 JSValue alphaValue = object->get(exec, Identifier(exec, "alpha"));
92 JSValue betaValue = object->get(exec, Identifier(exec, "beta"));
100 JSValue gammaValue = object->get(exec, Identifier(exec, "gamma"))
116 JSObject* object = constructEmptyObject(exec); local
125 JSObject* object = constructEmptyObject(exec); local
    [all...]
ScriptValue.cpp 62 // Handle the case where an exception is thrown as part of invoking toString on the object.
147 JSObject* object = value.getObject(); local
149 object->getOwnPropertyNames(scriptState, propertyNames);
152 JSValue propertyValue = object->get(scriptState, name);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8GeolocationCustom.cpp 56 // Given the above test, this will always yield an object.
57 v8::Local<v8::Object> object = value->ToObject(); local
63 v8::Local<v8::Value> enableHighAccuracyValue = object->Get(v8::String::New("enableHighAccuracy"));
77 v8::Local<v8::Value> timeoutValue = object->Get(v8::String::New("timeout"));
101 v8::Local<v8::Value> maximumAgeValue = object->Get(v8::String::New("maximumAge"));
V8XMLHttpRequestCustom.cpp 182 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg); local
183 Document* document = V8Document::toNative(object);
187 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg); local
188 Blob* blob = V8Blob::toNative(object);
192 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg) local
198 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg); local
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.cpp 50 // the requested Java Array type requested, unless the array type is some object array
59 // Only support string object types
190 JSObject* object = asObject(value); local
191 if (object->inherits(&JavaRuntimeObject::s_info)) {
193 JavaRuntimeObject* runtimeObject = static_cast<JavaRuntimeObject*>(object);
197 } else if (object->classInfo() == &RuntimeArray::s_info) {
199 RuntimeArray* imp = static_cast<RuntimeArray*>(object);
202 } else if (object->classInfo() == &JSArray::s_info) {
205 } else if ((!result.l && (!strcmp(javaClassName, "java.lang.Object")))
212 jlong nativeHandle = ptr_to_jlong(object);
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaNPObjectV8.cpp 78 JavaNPObject* object = reinterpret_cast<JavaNPObject*>(_NPN_CreateObject(0, &JavaNPObjectClass)); local
79 object->m_instance = instance;
80 return reinterpret_cast<NPObject*>(object);
192 // JSC does not seem to support returning object properties so we emulate that
  /external/webkit/Source/WebCore/svg/
SVGFilterElement.cpp 89 if (RenderObject* object = renderer())
90 object->setNeedsLayout(true);
145 RenderObject* object = renderer(); local
146 if (!object)
157 object->setNeedsLayout(true);
227 if (RenderObject* object = renderer())
228 object->setNeedsLayout(true);
SVGRadialGradientElement.cpp 94 RenderObject* object = renderer(); local
95 if (!object)
98 object->setNeedsLayout(true);
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 213 RenderObject* object = r.innerNonSharedNode()->renderer(); local
214 if (object && object->isWidget()) {
215 Widget* widget = toRenderWidget(object)->widget();
  /external/webkit/Source/WebKit/chromium/tests/
IDBBindingUtilitiesTest.cpp 117 v8::Local<v8::Object> object = v8::Object::New(); local
118 object->Set(v8::String::New("foo"), v8::String::New("zoo"));
120 RefPtr<SerializedScriptValue> serializedScriptValue = SerializedScriptValue::create(object);
130 v8::Local<v8::Object> object = v8::Object::New(); local
131 object->Set(v8::String::New("foo"), v8::Number::New(456));
133 RefPtr<SerializedScriptValue> serializedScriptValue = SerializedScriptValue::create(object);
156 v8::Local<v8::Object> object = v8::Object::New(); local
171 v8::Local<v8::Object> object = v8::Object::New(); local
188 v8::Local<v8::Object> object = v8::Object::New(); local
214 v8::Local<v8::Object> object = v8::Object::New(); local
231 v8::Local<v8::Object> object = v8::Object::New(); local
    [all...]
  /frameworks/base/include/binder/
BpBinder.h 53 void* object,
71 void* object,
85 void* object; member in struct:android::BpBinder::ObjectManager::entry_t
  /abi/cpp/src/
dynamic_cast.cc 52 // Return the vtable pointer of a polymorphic object pointed by p.
69 // Return offset to object in a vtable.
80 // Return the virtual pointer to the most derived object of referred by a
91 // We assume that -1 cannot be a valid pointer to object.
98 get_subobject(const void* object,
109 return adjust_pointer(object, offset);
112 // Helper of __dyanmic_cast to walk the type tree of an object.
115 walk_object(const void *object,
121 return (match_object == NULL || object == match_object) ? object : NULL
182 const void* object; member in struct:__anon1::cast_context
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNumber.java 36 /** Value of the XNumber object.
41 * Construct a XNodeSet object.
43 * @param d Value of the object
53 * Construct a XNodeSet object.
55 * @param num Value of the object
88 * Cast result object to a number.
90 * @return the value of the XNumber object
112 * Cast result object to a boolean.
122 // * Cast result object to a string.
272 * Cast result object to a string
377 public Object object() method in class:XNumber
    [all...]
XRTreeFrag.java 34 * This class represents an XPath result tree fragment object, and is capable of
47 * Create an XRTreeFrag Object.
58 * Create an XRTreeFrag Object.
76 * Return a java object that's closest to the representation
79 * @return The object that this class wraps
81 public Object object() method in class:XRTreeFrag
86 return super.object();
90 * Create an XRTreeFrag Object.
116 * In general, detach should only be called once on the object
    [all...]
XStringForChars.java 43 * Construct a XNodeSet object.
45 * @param val FastStringBuffer object this will wrap, must be non-null.
61 * Construct a XNodeSet object.
63 * @param val String object this will wrap.
73 * Cast result object to a string.
83 * Cast result object to a string.
94 * Tell if this object contains a java String object.
105 * Cast result object to a string.
119 * Since this object is incomplete without the length and the offset, we
124 public Object object() method in class:XStringForChars
    [all...]
  /external/bluetooth/glib/tests/gobject/
ifacecheck.c 1 /* GObject - GLib Type, Object, Parameter and Signal Library
29 #include <glib-object.h>
117 GObject *object; local
127 object = g_object_new (TEST_TYPE_OBJECT1, NULL);
128 iface = TEST_IFACE_GET_CLASS (object);
130 g_object_unref (object);
136 object = g_object_new (TEST_TYPE_OBJECT2, NULL);
137 iface = TEST_IFACE_GET_CLASS (object);
139 g_object_unref (object);
145 object = g_object_new (TEST_TYPE_OBJECT3, NULL)
    [all...]
references.c 1 /* GObject - GLib Type, Object, Parameter and Signal Library
27 #include <glib-object.h>
63 test_object_finalize (GObject *object)
67 G_OBJECT_CLASS (test_object_parent_class)->finalize (object);
99 GObject *object)
101 g_assert (object == global_object);
109 GObject *object)
111 g_assert (object == global_object);
119 GObject *object,
122 g_assert (object == global_object)
166 GObject *object; local
    [all...]
  /external/bluetooth/glib/tests/refcount/
objects.c 3 #include <glib-object.h>
17 GObject object; member in struct:_GTest
30 static void my_test_dispose (GObject * object);
78 my_test_dispose (GObject * object)
82 test = MY_TEST (object);
84 g_print ("dispose %p!\n", object);
86 G_OBJECT_CLASS (parent_class)->dispose (object);
properties.c 3 #include <glib-object.h>
22 GObject object; member in struct:_GTest
39 static void my_test_dispose (GObject * object);
40 static void my_test_get_property (GObject *object,
44 static void my_test_set_property (GObject *object,
105 my_test_dispose (GObject * object)
109 test = MY_TEST (object);
111 G_OBJECT_CLASS (parent_class)->dispose (object);
115 my_test_get_property (GObject *object,
122 test = MY_TEST (object);
    [all...]
properties2.c 3 #include <glib-object.h>
22 GObject object; member in struct:_GTest
36 static void my_test_dispose (GObject * object);
37 static void my_test_get_property (GObject *object,
41 static void my_test_set_property (GObject *object,
102 my_test_dispose (GObject * object)
106 test = MY_TEST (object);
108 g_print ("dispose %p!\n", object);
110 G_OBJECT_CLASS (parent_class)->dispose (object);
114 my_test_get_property (GObject *object,
    [all...]
  /external/chromium/webkit/glue/
cpp_variant_unittest.cc 112 NPObject *object = MakeVoidObject(); local
113 source.Set(object);
120 WebBindings::releaseObject(object);
142 NPObject *object = MakeVoidObject(); local
143 source.Set(object);
152 WebBindings::releaseObject(object);
167 NPObject *object = MakeVoidObject(); local
168 source.Set(object);
172 WebBindings::releaseObject(object);
208 NPObject *object = MakeVoidObject() local
332 NPObject* object = MakeVoidObject(); local
    [all...]
  /external/freetype/src/cff/
cffparse.h 48 void* object; member in struct:CFF_ParserRec_
56 void* object,

Completed in 897 milliseconds

1 2 34 5 6 7 8 91011>>