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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/
ScriptDebugServer.cpp 69 v8::Local<v8::Object> args = v8::Object::New();
90 v8::Local<v8::Object> args = v8::Object::New();
115 v8::Local<v8::Object> args = v8::Object::New();
251 m_currentCallFrame = JavaScriptCallFrame::create(v8::Debug::GetDebugContext(), v8::Handle<v8::Object>::Cast(currentCallFrameV8));
277 thisPtr->breakProgram(v8::Handle<v8::Object>::Cast(args[0]));
281 void ScriptDebugServer::breakProgram(v8::Handle<v8::Object> executionState)
329 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(value) local
    [all...]
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 102 ActiveDOMObject* object = iter->first; local
104 ASSERT(object->scriptExecutionContext() == this);
105 object->contextDestroyed();
279 void ScriptExecutionContext::createdActiveDOMObject(ActiveDOMObject* object, void* upcastPointer)
281 ASSERT(object);
286 m_activeDOMObjects.add(object, upcastPointer);
289 void ScriptExecutionContext::destroyedActiveDOMObject(ActiveDOMObject* object)
291 ASSERT(object);
294 m_activeDOMObjects.remove(object);
  /external/webkit/Source/WebCore/platform/android/
GeolocationServiceBridge.cpp 117 GeolocationServiceBridge* object = reinterpret_cast<GeolocationServiceBridge*>(nativeObject); local
118 object->m_listener->newPositionAvailable(toGeoposition(env, location));
123 GeolocationServiceBridge* object = reinterpret_cast<GeolocationServiceBridge*>(nativeObject); local
126 object->m_listener->newErrorAvailable(error.release());
190 // Create the Java GeolocationService object.
195 jobject object = env->NewObject(javaGeolocationServiceClass, local
200 m_javaGeolocationServiceObject = getJNIEnv()->NewGlobalRef(object);
204 // object. We register once only.
  /external/webkit/Source/WebCore/platform/efl/
WidgetEfl.cpp 186 Evas_Object* object = evasObject(); local
189 if (!parent() || !object)
199 evas_object_move(object, x + rect.x(), y + rect.y());
200 evas_object_resize(object, rect.width(), rect.height());
335 void Widget::setEvasObject(Evas_Object *object)
339 if (m_data->m_evasObject == object)
341 m_data->m_evasObject = object;
342 if (!object) {
350 m_data->m_evas = evas_object_evas_get(object);
  /external/webkit/Source/WebCore/svg/
SVGStyledElement.cpp 330 RenderObject* object = renderer(); local
334 if (object && object->isSVGResourceContainer())
335 object->toRenderSVGResourceContainer()->idChanged();
354 if (RenderObject* object = renderer())
355 object->updateFromElement();
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 71 void *object; /* some optional data field */ member in struct:tagApplicationData
  /libcore/json/src/main/java/org/json/
JSONArray.java 49 private final List<Object> values;
55 values = new ArrayList<Object>();
87 Object object = readFrom.nextValue(); local
88 if (object instanceof JSONArray) {
89 values = ((JSONArray) object).values;
91 throw JSON.typeMismatch(object, "JSONArray");
165 public JSONArray put(Object value) {
227 public JSONArray put(int index, Object value) throws JSONException {
244 Object value = opt(index)
286 Object object = get(index); local
307 Object object = opt(index); local
320 Object object = get(index); local
341 Object object = opt(index); local
354 Object object = get(index); local
375 Object object = opt(index); local
388 Object object = get(index); local
409 Object object = opt(index); local
421 Object object = get(index); local
442 Object object = opt(index); local
455 Object object = get(index); local
468 Object object = opt(index); local
480 Object object = get(index); local
493 Object object = opt(index); local
    [all...]
JSONStringer.java 29 * JSONObject object = ...
30 * String json = object.toString();</pre>
34 * <li>The stringer must have exactly one top-level array or object.
37 * #object} must have a matching call to {@link #endObject}.
40 * <li>Values are inserted with either literal {@link #value(Object) value}
63 /** The output data, containing at most one top-level array or object. */
86 * An object with no keys or values requires no separators or newlines
92 * An object whose most recent element is a key. The next element must
98 * An object with at least one name/value pair requires a comma and
152 * Begins encoding a new object. Each call to this method must be paire
157 public JSONStringer object() throws JSONException { method in class:JSONStringer
    [all...]
  /libcore/json/src/test/java/org/json/
JSONArrayTest.java 53 // bogus (but documented) behaviour: returns null rather than an empty object!
332 JSONObject object = values.toJSONObject(keys); local
333 assertEquals(5.5d, object.get("a"));
334 assertEquals(false, object.get("b"));
338 assertEquals(5.5d, object.get("a"));
351 JSONObject object = values.toJSONObject(keys); local
352 assertEquals(1, object.length());
353 assertFalse(object.has("b"));
354 assertEquals("{\"a\":5.5}", object.toString());
363 JSONObject object = values.toJSONObject(keys) local
374 JSONObject object = values.toJSONObject(keys); local
384 JSONObject object = values.toJSONObject(keys); local
442 JSONArray object = new JSONArray(new JSONTokener("[false]")); local
474 JSONArray object = new JSONArray("[false]"); local
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractList.java 97 public void add(E object) {
100 AbstractList.this.add(pos + 1, object);
140 public void set(E object) {
143 AbstractList.this.set(lastPosition, object);
185 public void add(E object) {
186 iterator.add(object);
231 public void set(E object) {
232 iterator.set(object);
244 public void add(int location, E object) {
247 fullList.add(location + offset, object);
425 add(size(), object); local
527 Object object = it.next(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 122 MediaObject object = mDataManager.getMediaObject(path); local
123 if (object == null) {
127 if (PicasaSource.isPicasaImage(object)) {
128 return queryPicasaItem(object,
130 } else if (object instanceof MtpImage) {
131 return queryMtpItem((MtpImage) object,
143 Object[] columnValues = new Object[projection.length];
166 Object[] columnValues = new Object[projection.length]
205 MediaObject object = mDataManager.getMediaObject(path); local
    [all...]
  /sdk/swtmenubar/src-darwin/com/android/menubar/internal/
MenuBarEnhancerCocoa.java 54 * Class invoked via the Callback object to run the about and preferences
122 // This is our callback object whose 'actionProc' method will be called
133 // Schedule disposal of callback object
141 private void initialize(Object callbackObject)
152 // Create an SWT Callback object that will invoke the actionProc method
153 // of our internal callback Object.
156 Object object = getAddress.invoke(mProc3Args, (Object[]) null); local
157 long proc3 = convertToLong(object);
252 Object object = invoke(osCls, "sel_registerName", new Object[] { local
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 3 MooTools - My Object Oriented JavaScript Tools.
33 var object = initialize || legacy;
36 object.constructor = Native;
37 object.$family = {name: 'native'};
38 if (legacy && initialize) object.prototype = legacy.prototype;
39 object.prototype.constructor = object;
43 object.prototype.$family = {name: family};
44 Native.typize(object, family);
54 object.alias = function(a1, a2, a3)
42 object.prototype.$family = {name: family}; class
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
SQLExceptionTest.java 464 SQLException object = new SQLException(); local
465 SerializationTest.verifySelf(object, SQLEXCEPTION_COMPARATOR);
477 SQLException object = new SQLException("reason", "SQLState", vendorCode); local
479 object.setNextException(nextSQLException);
481 SerializationTest.verifyGolden(this, object, SQLEXCEPTION_COMPARATOR);
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSet.java 34 * This class represents an XPath nodeset object, and is capable of
49 * Construct a XNodeSet object.
51 * @param val Value of the XNodeSet object
75 * Construct a XNodeSet object.
77 * @param val Value of the XNodeSet object
92 * Construct an empty XNodeSet object. This is used to create a mutable
101 * Construct a XNodeSet object for one node.
103 * @param n Node to add to the new XNodeSet object
155 * Cast result object to a number.
168 * Cast result object to a number, but allow side effects, such as the
289 public Object object() method in class:XNodeSet
    [all...]
  /external/bluetooth/glib/gio/
gbufferedinputstream.c 76 static void g_buffered_input_stream_set_property (GObject *object,
81 static void g_buffered_input_stream_get_property (GObject *object,
85 static void g_buffered_input_stream_finalize (GObject *object);
245 g_buffered_input_stream_set_property (GObject *object,
253 bstream = G_BUFFERED_INPUT_STREAM (object);
263 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
270 g_buffered_input_stream_get_property (GObject *object,
278 bstream = G_BUFFERED_INPUT_STREAM (object);
288 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
294 g_buffered_input_stream_finalize (GObject *object)
950 GObject *object; local
    [all...]
  /external/bluetooth/glib/tests/gobject/
ifaceinit.c 1 /* GObject - GLib Type, Object, Parameter and Signal Library
27 #include <glib-object.h>
377 TestObject *object; local
408 object = g_object_new (TEST_TYPE_OBJECT, NULL);
410 iface = TEST_IFACE1_GET_CLASS (object);
412 iface = TEST_IFACE3_GET_CLASS (object);
414 iface = TEST_IFACE4_GET_CLASS (object);
416 iface = TEST_IFACE5_GET_CLASS (object);
418 iface = TEST_IFACE6_GET_CLASS (object);
  /external/clang/test/CXX/class.access/class.friend/
p1.cpp 180 T object; member in class:test4::Holder
182 return a.object == b.object; // expected-error {{invalid operands to binary expression}}
  /external/clang/test/SemaCXX/
expression-traits.cpp 78 // basic.lval/6: An expression which holds a temporary object resulting
80 // the explicit creation of an object using functional notation
159 // 5.1/3: The keyword "this" names a pointer to the object for
338 // simple-type-specifier (7.1.5.2) for a non-array complete object
409 // lvalue for the unique B sub-object of the D object referred
413 D object; local
414 ASSERT_LVALUE(dynamic_cast<B&>(object));
419 // ? If, in the most derived object pointed (referred) to by v, v
420 // points (refers) to a public base class subobject of a T object, an
    [all...]
  /external/icu4c/tools/genrb/
wrtjava.c 15 * 02/12/08 Spieth Fix errant 'new Object[][]{' insertion
73 " public final Object[][] getContents() { \n"
76 " private static Object[][] contents = {\n";
81 " static final Object[][] data = new Object[][] { \n";*/
351 const char* object = "new Object[]{\n"; local
353 T_FileStream_write(out, object, (int32_t)uprv_strlen(object));
517 const char* obj = "new Object[][]{\n"
    [all...]
  /external/v8/src/
global-handles.cc 47 void Initialize(Object* object) {
49 object_ = object;
60 explicit Node(Object* object) {
61 Initialize(object);
102 static Node* FromLocation(Object** location) {
108 Handle<Object> handle() { return Handle<Object>(&object_); }
184 v8::Persistent<v8::Object> object = ToApi<v8::Object>(handle()) local
    [all...]
spaces-inl.h 88 // we might decide to promote an encountered young object.
89 // We will allocate a space for such an object and put it
91 // If space for object was allocated somewhere beyond allocation
441 HeapObject* object = AllocateLinearly(&allocation_info_, size_in_bytes); local
442 if (object != NULL) return object;
444 object = SlowAllocateRaw(size_in_bytes);
445 if (object != NULL) return object;
455 HeapObject* object = AllocateLinearly(&mc_forwarding_info_, size_in_bytes) local
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 208 QScriptValue object = engine.newObject(); local
209 QVERIFY(object.isObject());
210 QVERIFY(object.engine() == &engine);
211 QVERIFY(!object.isError());
212 QVERIFY(!object.equals(engine.newObject()));
213 QVERIFY(!object.strictlyEquals(engine.newObject()));
214 QCOMPARE(object.toString(), QString::fromAscii("[object Object]"));
252 QScriptValue obj = eng.evaluate("new Object");
507 QScriptValue object = eng.evaluate("new Object"); local
550 QScriptValue object = engine1.evaluate("new Object"); local
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 264 QTest::newRow("new Object().length")
265 << QString::fromAscii("new Object()")
269 QTest::newRow("new Object().toString")
270 << QString::fromAscii("new Object()")
303 QScriptValue object = engine.evaluate(code); local
304 QVERIFY(object.isValid());
306 QScriptValue property = object.property(propertyName);
311 QScriptValue property = object.property(name);
318 QScriptValue property = object.property(idx);
340 QScriptValue object = engine.newObject() local
353 QScriptValue object = engine.evaluate("o = {13: 0, 'aaa': 3, 'bbb': 1}"); local
369 QScriptValue object = engine.evaluate("new Object"); local
413 QScriptValue object = eng.newObject(); local
798 QScriptValue object = engine.evaluate("new Object()"); local
878 QScriptValue object = eng.evaluate("new Object"); local
966 QScriptValue object = engine.evaluate("o = new Object; o"); local
1222 QScriptValue object = engine.newObject(); local
1245 QScriptValue object = engine.newObject(); local
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 50 const ClassInfo JSObject::s_info = { "Object", 0, 0, 0 };
109 // Setting __proto__ to a non-object, non-null value is silently ignored to match Mozilla.
153 // If there's an existing property on the object or one of its
248 static ALWAYS_INLINE JSValue callDefaultValueFunction(ExecState* exec, const JSObject* object, const Identifier& propertyName)
250 JSValue function = object->get(exec, propertyName);
261 JSValue result = call(exec, function, callType, callData, const_cast<JSObject*>(object), exec->emptyList());
315 JSValue object = getDirect(exec->globalData(), propertyName); local
316 if (object && object.isGetterSetter()) {
318 asGetterSetter(object)->setGetter(exec->globalData(), getterFunction)
341 JSValue object = getDirect(exec->globalData(), propertyName); local
366 JSObject* object = this; local
385 JSObject* object = this; local
412 JSObject* object = asObject(value); local
611 JSObject* object = this; local
    [all...]

Completed in 1564 milliseconds

1 2 3 4 5 67 8 91011>>