HomeSort by relevance Sort by last modified time
    Searched refs:JSObject (Results 201 - 225 of 357) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/JavaScriptCore/runtime/
JSGlobalData.h 56 class JSObject;
172 HashSet<JSObject*> arrayVisitedElements;
JSNotAnObject.cpp 70 JSObject* JSNotAnObject::toObject(ExecState* exec) const
79 JSObject::markChildren(markStack);
83 // JSObject methods
JSPropertyNameIterator.cpp 56 JSPropertyNameIterator* JSPropertyNameIterator::create(ExecState* exec, JSObject* o)
92 JSValue JSPropertyNameIterator::get(ExecState* exec, JSObject* base, size_t i)
RegExpConstructor.h 72 JSObject* arrayOfMatches(ExecState*) const;
99 JSObject* constructRegExp(ExecState*, const ArgList&);
Arguments.h 56 class Arguments : public JSObject {
92 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames | JSObject::StructureFlags;
137 : JSObject(callFrame->lexicalGlobalObject()->argumentsStructure())
174 : JSObject(callFrame->lexicalGlobalObject()->argumentsStructure())
InternalFunction.cpp 41 : JSObject(structure)
JSActivation.h 62 virtual JSObject* toThisObject(ExecState*) const;
JSStaticScopeObject.h 55 virtual JSObject* toThisObject(ExecState*) const;
JSFunction.cpp 155 JSObject* prototype = new (exec) JSObject(scopeChain().globalObject()->emptyObjectStructure());
252 JSObject* JSFunction::construct(ExecState* exec, const ArgList& args)
261 JSObject* thisObj = new (exec) JSObject(structure);
  /external/webkit/JavaScriptGlue/
JSObject.cpp 30 #include "JSObject.h"
76 static JSValue JSC_HOST_CALL nativeCallFunction(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args);
77 static JSValue nativeCallFunction(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args)
JSUtils.h 39 #include <JavaScriptCore/JSObject.h>
JSValueWrapper.cpp 77 JSObject* object = ptr->GetValue().toObject(exec);
136 JSObject *objValue = ptr->GetValue().toObject(exec);
153 JSObject* ksjThisObj = value.toObject(exec);
154 JSObject* objValue = ptr->GetValue().toObject(exec);
  /external/webkit/WebCore/bindings/js/
JSDatabaseCustom.cpp 55 JSObject* object;
90 JSObject* object;
JSNavigatorCustom.cpp 63 JSObject* object;
JSSQLResultSetRowListCustom.cpp 55 JSObject* object = constructEmptyObject(exec);
SerializedScriptValue.cpp 469 typedef JSObject* InputObject;
486 JSObject* object = asObject(value);
500 JSObject* asInputObject(JSValue value)
518 JSObject* object = asObject(array);
532 JSValue getSparseIndex(JSObject* object, unsigned propertyName, bool& hasIndex)
543 JSValue getProperty(JSObject* object, const Identifier& propertyName, unsigned)
569 JSObject* obj = asObject(value);
585 void getPropertyNames(JSObject* object, Vector<PropertyNameArray, 16>& propertyStack)
618 bool startObject(JSObject* inObject, RefPtr<SerializedObject>)
629 void endObject(JSObject* inObject, RefPtr<SerializedObject>
    [all...]
  /external/webkit/WebCore/bridge/objc/
objc_runtime.h 92 class ObjcFallbackObjectImp : public JSObject {
111 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | JSObject::StructureFlags;
  /external/v8/src/
objects-inl.h 113 Object* cons_obj = JSObject::cast(this)->map()->constructor();
689 return this->IsJSObject() && (JSObject::cast(this)->class_name() == name);
1116 ACCESSORS(JSObject, properties, FixedArray, kPropertiesOffset)
1119 Array* JSObject::elements() {
1128 void JSObject::set_elements(Array* value, WriteBarrierMode mode) {
1137 void JSObject::initialize_properties() {
1143 void JSObject::initialize_elements() {
1165 int JSObject::GetHeaderSize() {
1170 if (type == JS_OBJECT_TYPE) return JSObject::kHeaderSize;
1187 return JSObject::kHeaderSize
    [all...]
objects.cc 116 if (IsJSObject()) return JSObject::cast(this)->Lookup(name, result);
127 JSObject::cast(holder)->Lookup(name, result);
163 JSObject* self = JSObject::cast(receiver);
164 JSObject* holder_handle = JSObject::cast(holder);
217 Object* JSObject::GetPropertyWithFailedAccessCheck(
278 PropertyAttributes JSObject::GetPropertyAttributeWithFailedAccessCheck(
341 Object* JSObject::GetNormalizedProperty(LookupResult* result) {
352 Object* JSObject::SetNormalizedProperty(LookupResult* result, Object* value)
    [all...]
debug.h 475 Handle<JSObject> exec_state,
476 Handle<JSObject> event_data);
481 Handle<JSObject> exec_state,
482 Handle<JSObject> event_data,
501 Handle<JSObject> exec_state,
502 Handle<JSObject> event_data,
509 Handle<JSObject> exec_state_; // Current execution state.
510 Handle<JSObject> event_data_; // Data associated with the event.
612 Handle<JSObject> event_data,
615 Handle<JSObject> exec_state
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackFunction.cpp 51 JSValue JSCallbackFunction::call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args)
  /external/webkit/WebCore/bindings/objc/
WebScriptObject.h 232 @method JSObject
237 - (JSObjectRef)JSObject WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);
WebScriptObject.mm 62 NSObject* getJSWrapper(JSObject* impl)
69 void addJSWrapper(NSObject* wrapper, JSObject* impl)
76 void removeJSWrapper(JSObject* impl)
83 id createJSWrapper(JSC::JSObject* object, PassRefPtr<JSC::Bindings::RootObject> origin, PassRefPtr<JSC::Bindings::RootObject> root)
114 + (id)scriptObjectForJSObject:(JSObjectRef)jsObject originRootObject:(RootObject*)originRootObject rootObject:(RootObject*)rootObject
116 if (id domWrapper = createDOMWrapper(toJS(jsObject), originRootObject, rootObject))
119 return WebCore::createJSWrapper(toJS(jsObject), originRootObject, rootObject);
136 - (void)_setImp:(JSObject*)imp originRootObject:(PassRefPtr<RootObject>)originRootObject rootObject:(PassRefPtr<RootObject>)rootObject
174 - (id)_initWithJSObject:(JSC::JSObject*)imp originRootObject:(PassRefPtr<JSC::Bindings::RootObject>)originRootObject rootObject:(PassRefPtr<JSC::Bindings::RootObject>)rootObject
185 - (JSObject*)_im
    [all...]
  /external/webkit/WebCore/inspector/
JavaScriptCallFrame.h 72 JSC::JSObject* thisObject() const;
  /external/webkit/WebKit/mac/WebView/
WebScriptDebugger.h 41 class JSObject;

Completed in 103 milliseconds

1 2 3 4 5 6 7 891011>>