HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 1 - 25 of 1874) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/js/
JSWebGLArrayCustom.cpp 46 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, WebGLArray* object)
48 if (!object)
51 if (object) {
52 if (object->isFloatArray())
53 return getDOMObjectWrapper<JSWebGLFloatArray>(exec, globalObject, static_cast<WebGLFloatArray*>(object));
54 if (object->isUnsignedByteArray())
55 return getDOMObjectWrapper<JSWebGLUnsignedByteArray>(exec, globalObject, static_cast<WebGLUnsignedByteArray*>(object));
56 if (object->isByteArray())
57 return getDOMObjectWrapper<JSWebGLByteArray>(exec, globalObject, static_cast<WebGLByteArray*>(object));
58 if (object->isIntArray()
    [all...]
JSCanvasRenderingContextCustom.cpp 40 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, CanvasRenderingContext* object)
42 if (!object)
46 if (object->is3d())
47 return getDOMObjectWrapper<JSWebGLRenderingContext>(exec, globalObject, static_cast<WebGLRenderingContext*>(object));
49 ASSERT(object->is2d());
50 return getDOMObjectWrapper<JSCanvasRenderingContext2D>(exec, globalObject, static_cast<CanvasRenderingContext2D*>(object));
  /external/elfutils/libebl/
eblobjecttypename.c 1 /* Return object file type name.
24 ebl_object_type_name (ebl, object, buf, len)
26 int object;
32 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL;
36 if (object >= ET_LOOS && object <= ET_HIOS)
37 snprintf (buf, len, "LOOS+%x", object - ET_LOOS);
39 else if (object >= ET_LOPROC && object <= ET_HIPROC)
40 snprintf (buf, len, "LOPROC+%x", object - ET_LOPROC)
    [all...]
  /libcore/json/src/test/java/org/json/
JSONObjectTest.java 37 JSONObject object = new JSONObject(); local
38 assertEquals(0, object.length());
40 // bogus (but documented) behaviour: returns null rather than the empty object!
41 assertNull(object.names());
44 assertNull(object.toJSONArray(new JSONArray()));
45 assertEquals("{}", object.toString());
46 assertEquals("{}", object.toString(5));
48 object.get("foo");
53 object.getBoolean("foo");
58 object.getDouble("foo")
115 JSONObject object = new JSONObject(); local
139 JSONObject object = new JSONObject(); local
157 JSONObject object = new JSONObject(); local
170 JSONObject object = new JSONObject(); local
181 JSONObject object = new JSONObject(); local
200 JSONObject object = new JSONObject(); local
210 JSONObject object = new JSONObject(); local
247 JSONObject object = new JSONObject(); local
298 JSONObject object = new JSONObject(); local
335 JSONObject object = new JSONObject(); local
351 JSONObject object = new JSONObject(); local
385 JSONObject object = new JSONObject(); local
437 JSONObject object = new JSONObject(); local
463 JSONObject object = new JSONObject(); local
469 JSONObject object = new JSONObject(); local
479 JSONObject object = new JSONObject(); local
489 JSONObject object = new JSONObject(); local
510 JSONObject object = new JSONObject(); local
532 JSONObject object = new JSONObject(); local
557 JSONObject object = new JSONObject(); local
567 JSONObject object = new JSONObject(); local
575 JSONObject object = new JSONObject(); local
594 JSONObject object = new JSONObject(); local
613 JSONObject object = new JSONObject(); local
641 JSONObject object = new JSONObject(contents); local
649 JSONObject object = new JSONObject(Collections.singletonMap("foo", Double.NaN)); local
656 JSONObject object = new JSONObject(contents); local
673 JSONObject object = new JSONObject(new JSONTokener("{\\"foo\\": false}")); local
703 JSONObject object = new JSONObject("{\\"foo\\": false}"); local
759 JSONObject object = new JSONObject(); local
770 JSONObject object = new JSONObject(); local
777 JSONObject object = new JSONObject(); local
785 JSONObject object = new JSONObject(); local
794 JSONObject object = new JSONObject(); local
801 JSONObject object = new JSONObject(); local
813 JSONObject object = new JSONObject(); local
821 JSONObject object = new JSONObject(); local
839 JSONObject object = new JSONObject(); local
861 JSONObject object = new JSONObject(); local
872 JSONObject object = new JSONObject(); local
882 JSONObject object = new JSONObject(); local
905 JSONObject object = new JSONObject(); local
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSNotificationCenterExtras.h 33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object;
34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
WebNSNotificationCenterExtras.m 33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object
35 [self postNotificationOnMainThreadWithName:name object:object userInfo:nil waitUntilDone:NO];
38 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo
40 [self postNotificationOnMainThreadWithName:name object:object userInfo:userInfo waitUntilDone:NO];
43 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wai
    [all...]
  /external/webkit/WebCore/mathml/
RenderMathMLBlock.h 59 inline RenderMathMLBlock* toRenderMathMLBlock(RenderObject* object)
61 ASSERT(!object || object->isRenderMathMLBlock());
62 return static_cast<RenderMathMLBlock*>(object);
65 inline const RenderMathMLBlock* toRenderMathMLBlock(const RenderObject* object)
67 ASSERT(!object || object->isRenderMathMLBlock());
68 return static_cast<const RenderMathMLBlock*>(object);
  /external/webkit/WebCore/rendering/
TrailingFloatsRootInlineBox.h 35 TrailingFloatsRootInlineBox(RenderObject* object) : RootInlineBox(object)
RenderFrame.h 50 inline RenderFrame* toRenderFrame(RenderObject* object)
52 ASSERT(!object || object->isFrame());
53 return static_cast<RenderFrame*>(object);
RenderHTMLCanvas.h 50 inline RenderHTMLCanvas* toRenderHTMLCanvas(RenderObject* object)
52 ASSERT(!object || !strcmp(object->renderName(), "RenderHTMLCanvas"));
53 return static_cast<RenderHTMLCanvas*>(object);
RenderPart.h 33 // subclassed in RenderEmbeddedObject for object and embed. This class itself could be removed.
52 inline RenderPart* toRenderPart(RenderObject* object)
54 ASSERT(!object || object->isRenderPart());
55 return static_cast<RenderPart*>(object);
RenderPartObject.h 30 // Renderer for iframes. Is subclassed in RenderEmbeddedObject for object and embed.
49 inline RenderPartObject* toRenderPartObject(RenderObject* object)
51 ASSERT(!object || !strcmp(object->renderName(), "RenderPartObject"));
52 return static_cast<RenderPartObject*>(object);
  /external/proguard/src/proguard/evaluation/value/
ConvertedByteValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedByteValue)object).value);
ConvertedCharacterValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedCharacterValue)object).value);
ConvertedDoubleValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedDoubleValue)object).value);
ConvertedFloatValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedFloatValue)object).value);
ConvertedIntegerValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedIntegerValue)object).value);
ConvertedLongValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedLongValue)object).value);
ConvertedShortValue.java 43 // Implementations for Object.
45 public boolean equals(Object object)
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedShortValue)object).value);
IdentifiedDoubleValue.java 44 // Implementations for Object.
46 public boolean equals(Object object)
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedDoubleValue)object).valuefactory) &&
51 this.id == ((IdentifiedDoubleValue)object).id;
IdentifiedFloatValue.java 44 // Implementations for Object.
46 public boolean equals(Object object)
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedFloatValue)object).valuefactory) &&
51 this.id == ((IdentifiedFloatValue)object).id;
IdentifiedIntegerValue.java 44 // Implementations for Object.
46 public boolean equals(Object object)
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedIntegerValue)object).valuefactory) &&
51 this.id == ((IdentifiedIntegerValue)object).id;
  /libcore/luni/src/main/java/java/security/
Guard.java 26 * Checks whether access to the specified {@code Object} should be granted.
30 * @param object
31 * the object to be protected by this {@code Guard}.
35 public void checkGuard(Object object) throws SecurityException;
GuardedObject.java 24 * {@code GuardedObject} controls access to an object, by checking all requests
25 * for the object with a {@code Guard}.
31 private final Object object; field in class:GuardedObject
37 * to the specified {@code Object} using the specified {@code Guard}.
39 * @param object
40 * the {@code Object} to protect.
42 * the {@code Guard} which protects the specified {@code Object},
45 public GuardedObject(Object object, Guard guard)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-002.js 44 function ForIn_1( object) {
45 with ( object ) {
46 for ( property in object ) {
49 "with loop in a for...in loop. ("+object+")["+property +"] == "+
52 object[property] == eval(property) );
61 function ForIn_2(object) {
62 for ( property in object ) {
63 with ( object ) {
66 "with loop in a for...in loop. ("+object+")["+property +"] == "+
69 object[property] == eval(property) )
    [all...]

Completed in 148 milliseconds

1 2 3 4 5 6 7 8 91011>>