HomeSort by relevance Sort by last modified time
    Searched defs:JSObject (Results 1 - 8 of 8) sorted by null

  /external/skia/include/xml/
SkJS.h 19 typedef struct JSObject JSObject;
34 void InitializeDisplayables(const SkBitmap& , JSContext *, JSObject *, JSObject *);
38 JSObject *fGlobal;
  /external/skia/legacy/include/xml/
SkJS.h 19 typedef struct JSObject JSObject;
34 void InitializeDisplayables(const SkBitmap& , JSContext *, JSObject *, JSObject *);
38 JSObject *fGlobal;
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.h 57 JSObject* throwTypeError(ExecState*, const UString&);
75 class JSObject : public JSCell {
79 friend void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot);
87 virtual ~JSObject();
140 virtual JSObject* toObject(ExecState*, JSGlobalObject*) const;
142 virtual JSObject* toThisObject(ExecState*) const;
144 virtual JSObject* unwrappedObject();
200 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes = 0);
201 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes = 0);
266 JSObject(JSGlobalData&, Structure*, PropertyStorage inlineStorage)
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalue_p.h 60 JSObject -> QSVP is associated with engine, and it is sure that it is a JavaScript object.
169 JSObject
322 : m_state(JSObject)
417 if (refinedJSValue() != JSObject)
420 case JSObject:
431 return refinedJSValue() == JSObject;
432 case JSObject:
444 if (refinedJSValue() != JSObject)
447 case JSObject:
458 if (refinedJSValue() != JSObject)
    [all...]
  /external/v8/src/
factory.cc 319 Handle<JSObject> extension) {
451 Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
455 JSObject);
471 JSObject::kMaxInstanceSize - copy->instance_size();
495 Handle<JSObject> src,
593 Handle<JSObject> Factory::NewNeanderObject() {
598 JSObject);
736 instance_size != JSObject::kHeaderSize) {
738 Handle<JSObject> prototype = NewFunctionPrototype(function);
754 Handle<JSObject> prototype
    [all...]
hydrogen-instructions.h 348 static HType JSObject() { return HType(kJSObject); }
    [all...]
objects.h 55 // - JSObject
189 // inobject properties when normalizing properties of a JSObject.
236 // JSObject for GC purposes. The first four entries here have typeof
651 // Boundary for objects represented as JSReceiver (i.e. JSObject or JSProxy).
652 // Note that there is no range for JSObject or JSProxy, since their subtypes
658 // Boundaries for testing the types represented as JSObject
    [all...]
  /frameworks/base/core/java/android/webkit/
BrowserFrame.java 93 private class JSObject {
97 public JSObject(Object object, boolean requireAnnotation) {
104 private Map<String, JSObject> mJavaScriptObjects;
243 mJavaScriptObjects = new HashMap<String, JSObject>();
596 JSObject jsobject = mJavaScriptObjects.get(interfaceName); local
597 if (jsobject != null && jsobject.object != null) {
599 jsobject.object, interfaceName, jsobject.requireAnnotation)
    [all...]

Completed in 254 milliseconds