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

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/js/
JSXSLTProcessorConstructor.cpp 50 static JSObject* constructXSLTProcessor(ExecState* exec, JSObject* constructor, const ArgList&)
ScriptObject.h 37 #include <runtime/JSObject.h>
47 ScriptObject(ScriptState*, JSC::JSObject*);
49 JSC::JSObject* jsObject() const { return asObject(jsValue()); }
  /external/webkit/WebCore/bridge/objc/
objc_utility.h 33 #include <runtime/JSObject.h>
83 JSObject *throwError(ExecState *, ErrorType, NSString *message);
  /external/webkit/JavaScriptCore/API/
JSCallbackFunction.h 51 static JSValue JSC_HOST_CALL call(ExecState*, JSObject*, JSValue, const ArgList&);
JSCallbackConstructor.cpp 41 : JSObject(structure)
55 static JSObject* constructJSCallback(ExecState* exec, JSObject* constructor, const ArgList& args)
JSObjectRef.cpp 44 #include "JSObject.h"
82 return toRef(new (exec) JSObject(exec->lexicalGlobalObject()->emptyObjectStructure())); // slightly more efficient
84 JSCallbackObject<JSObject>* object = new (exec) JSCallbackObject<JSObject>(exec, exec->lexicalGlobalObject()->callbackObjectStructure(), jsClass, data);
85 if (JSObject* prototype = jsClass->prototype(exec))
127 JSObject* result = constructFunction(exec, args, nameID, sourceURL->ustring(), startingLineNumber);
142 JSObject* result;
171 JSObject* result = constructDate(exec, argList);
191 JSObject* result = constructError(exec, argList);
211 JSObject* result = constructRegExp(exec, argList)
    [all...]
APICast.h 39 class JSObject;
94 inline JSC::JSObject* toJS(JSObjectRef o)
96 return reinterpret_cast<JSC::JSObject*>(o);
123 inline JSObjectRef toRef(JSC::JSObject* o)
128 inline JSObjectRef toRef(const JSC::JSObject* o)
130 return reinterpret_cast<JSObjectRef>(const_cast<JSC::JSObject*>(o));
  /external/webkit/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.h 38 class JSObject;
  /external/webkit/JavaScriptCore/runtime/
Completion.cpp 42 JSObject* error = program->checkSyntax(exec);
55 JSObject* error = program->compile(exec, scopeChain.node());
59 JSObject* thisObj = (!thisValue || thisValue.isUndefinedOrNull()) ? exec->dynamicGlobalObject() : thisValue.toObject(exec);
ErrorConstructor.cpp 49 static JSObject* constructWithErrorConstructor(ExecState* exec, JSObject*, const ArgList& args)
61 static JSValue JSC_HOST_CALL callErrorConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args)
ErrorPrototype.cpp 35 static JSValue JSC_HOST_CALL errorProtoFuncToString(ExecState*, JSObject*, JSValue, const ArgList&);
49 JSValue JSC_HOST_CALL errorProtoFuncToString(ExecState* exec, JSObject*, JSValue thisValue, const ArgList&)
51 JSObject* thisObj = thisValue.toThisObject(exec);
JSPropertyNameIterator.h 32 #include "JSObject.h"
40 class JSObject;
46 static JSPropertyNameIterator* create(ExecState*, JSObject*);
67 JSValue get(ExecState*, JSObject*, size_t i);
NativeErrorConstructor.cpp 51 static JSObject* constructWithNativeErrorConstructor(ExecState* exec, JSObject* constructor, const ArgList& args)
62 static JSValue JSC_HOST_CALL callNativeErrorConstructor(ExecState* exec, JSObject* constructor, JSValue, const ArgList& args)
JSObject.h 71 class JSObject : public JSCell {
77 explicit JSObject(NonNullPassRefPtr<Structure>);
84 virtual ~JSObject();
133 virtual JSObject* toObject(ExecState*) const;
135 virtual JSObject* toThisObject(ExecState*) const;
136 virtual JSObject* unwrappedObject();
188 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes = 0);
189 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes = 0);
232 // Nobody should ever ask any of these questions on something already known to be a JSObject.
274 inline JSObject* asObject(JSCell* cell
    [all...]
FunctionConstructor.cpp 47 static JSObject* constructWithFunctionConstructor(ExecState* exec, JSObject*, const ArgList& args)
58 static JSValue JSC_HOST_CALL callFunctionConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args)
71 JSObject* constructFunction(ExecState* exec, const ArgList& args, const Identifier& functionName, const UString& sourceURL, int lineNumber)
108 JSObject* constructFunction(ExecState* exec, const ArgList& args)
JSCell.cpp 28 #include "JSObject.h"
97 JSObject* JSCell::getObject()
102 const JSObject* JSCell::getObject() const
104 return isObject() ? static_cast<const JSObject*>(this) : 0;
122 JSObject* object = toObject(exec);
134 JSObject* object = toObject(exec);
161 JSObject* JSCell::toThisObject(ExecState* exec) const
221 JSObject* JSCell::toObject(ExecState*) const
RegExpObject.cpp 38 static void setRegExpObjectLastIndex(ExecState*, JSObject*, JSValue);
61 : JSObject(structure)
72 return getStaticValueSlot<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, slot);
77 return getStaticValueDescriptor<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, descriptor);
107 lookupPut<RegExpObject, JSObject>(exec, propertyName, value, ExecState::regExpTable(exec), this, slot);
110 void setRegExpObjectLastIndex(ExecState* exec, JSObject* baseObject, JSValue value)
127 static JSValue JSC_HOST_CALL callRegExpObject(ExecState* exec, JSObject* function, JSValue, const ArgList& args)
ArrayPrototype.cpp 43 static JSValue JSC_HOST_CALL arrayProtoFuncToString(ExecState*, JSObject*, JSValue, const ArgList&);
44 static JSValue JSC_HOST_CALL arrayProtoFuncToLocaleString(ExecState*, JSObject*, JSValue, const ArgList&);
45 static JSValue JSC_HOST_CALL arrayProtoFuncConcat(ExecState*, JSObject*, JSValue, const ArgList&);
46 static JSValue JSC_HOST_CALL arrayProtoFuncJoin(ExecState*, JSObject*, JSValue, const ArgList&);
47 static JSValue JSC_HOST_CALL arrayProtoFuncPop(ExecState*, JSObject*, JSValue, const ArgList&);
48 static JSValue JSC_HOST_CALL arrayProtoFuncPush(ExecState*, JSObject*, JSValue, const ArgList&);
49 static JSValue JSC_HOST_CALL arrayProtoFuncReverse(ExecState*, JSObject*, JSValue, const ArgList&);
50 static JSValue JSC_HOST_CALL arrayProtoFuncShift(ExecState*, JSObject*, JSValue, const ArgList&);
51 static JSValue JSC_HOST_CALL arrayProtoFuncSlice(ExecState*, JSObject*, JSValue, const ArgList&);
52 static JSValue JSC_HOST_CALL arrayProtoFuncSort(ExecState*, JSObject*, JSValue, const ArgList&)
    [all...]
DateConstructor.cpp 57 static JSValue JSC_HOST_CALL dateParse(ExecState*, JSObject*, JSValue, const ArgList&);
58 static JSValue JSC_HOST_CALL dateNow(ExecState*, JSObject*, JSValue, const ArgList&);
59 static JSValue JSC_HOST_CALL dateUTC(ExecState*, JSObject*, JSValue, const ArgList&);
74 JSObject* constructDate(ExecState* exec, const ArgList& args)
119 static JSObject* constructWithDateConstructor(ExecState* exec, JSObject*, const ArgList& args)
131 static JSValue JSC_HOST_CALL callDate(ExecState* exec, JSObject*, JSValue, const ArgList&)
150 static JSValue JSC_HOST_CALL dateParse(ExecState* exec, JSObject*, JSValue, const ArgList& args)
155 static JSValue JSC_HOST_CALL dateNow(ExecState* exec, JSObject*, JSValue, const ArgList&)
160 static JSValue JSC_HOST_CALL dateUTC(ExecState* exec, JSObject*, JSValue, const ArgList& args)
    [all...]
  /external/webkit/WebCore/bridge/
runtime_object.h 34 class RuntimeObjectImp : public JSObject {
53 static JSObject* throwInvalidAccessError(ExecState*);
68 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesGetPropertyNames | JSObject::StructureFlags;
runtime_array.cpp 43 : JSObject(deprecatedGetDOMStructure<RuntimeArray>(exec))
69 JSObject::getOwnPropertyNames(exec, propertyNames, mode);
88 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
111 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor);
121 return JSObject::getOwnPropertySlot(exec, index, slot);
138 JSObject::put(exec, propertyName, value, slot);
  /external/v8/src/
accessors.h 79 static Object* FunctionSetPrototype(JSObject* object, Object* value, void*);
86 static Object* ArraySetLength(JSObject* object, Object* value, void*);
103 static Object* ObjectSetPrototype(JSObject* receiver, Object* value, void*);
107 static Object* IllegalSetter(JSObject*, Object*, void*);
109 static Object* ReadOnlySetAccessor(JSObject*, Object* value, void*);
contexts.h 60 V(GLOBAL_PROXY_INDEX, JSObject, global_proxy_object) \
68 V(JSON_OBJECT_INDEX, JSObject, json_object) \
70 V(INITIAL_OBJECT_PROTOTYPE_INDEX, JSObject, initial_object_prototype) \
86 V(ARGUMENTS_BOILERPLATE_INDEX, JSObject, arguments_boilerplate) \
87 V(MESSAGE_LISTENERS_INDEX, JSObject, message_listeners) \
91 V(FUNCTION_CACHE_INDEX, JSObject, function_cache) \
130 // [ extension ] A pointer to an extension JSObject, or NULL. Used to
239 JSObject* extension() { return JSObject::cast(unchecked_extension()); }
240 void set_extension(JSObject* object) { set(EXTENSION_INDEX, object);
    [all...]
contexts.cc 68 JSObject* Context::global_proxy() {
72 void Context::set_global_proxy(JSObject* object) {
100 Handle<JSObject> extension = Handle<JSObject>(context->extension());
161 Handle<JSObject> arguments(JSObject::cast(context->get(index)));
handles.cc 156 void SetPrototypeProperty(Handle<JSFunction> func, Handle<JSObject> value) {
184 void NormalizeProperties(Handle<JSObject> object,
193 void NormalizeElements(Handle<JSObject> object) {
198 void TransformToFastProperties(Handle<JSObject> object,
220 Handle<Object> SetProperty(Handle<JSObject> object,
237 Handle<Object> ForceSetProperty(Handle<JSObject> object,
246 Handle<Object> SetNormalizedProperty(Handle<JSObject> object,
255 Handle<Object> ForceDeleteProperty(Handle<JSObject> object,
262 Handle<JSObject> object,
271 Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object
    [all...]

Completed in 989 milliseconds

1 2 34 5 6 7 8 91011>>