HomeSort by relevance Sort by last modified time
    Searched refs:JSValue (Results 251 - 275 of 379) sorted by null

<<111213141516

  /external/webkit/WebCore/bridge/objc/
objc_instance.mm 170 JSValue ObjcInstance::invokeMethod(ExecState* exec, const MethodList &methodList, const ArgList &args)
172 JSValue result = jsUndefined();
288 return const_cast<JSValue&>(result);
291 JSValue ObjcInstance::invokeDefaultMethod(ExecState* exec, const ArgList &args)
293 JSValue result = jsUndefined();
339 return const_cast<JSValue&>(result);
342 bool ObjcInstance::setValueOfUndefinedField(ExecState* exec, const Identifier& property, JSValue aValue)
370 JSValue ObjcInstance::getValueOfUndefinedField(ExecState* exec, const Identifier& property) const
372 JSValue result = jsUndefined();
396 return const_cast<JSValue&>(result)
    [all...]
  /external/webkit/WebKit/mac/Plugins/Hosted/
ProxyInstance.mm 79 virtual JSValue valueFromInstance(ExecState*, const Instance*) const;
80 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
85 JSValue ProxyField::valueFromInstance(ExecState* exec, const Instance* instance) const
90 void ProxyField::setValueToInstance(ExecState* exec, const Instance* instance, JSValue value) const
136 JSValue ProxyInstance::invoke(JSC::ExecState* exec, InvokeType type, uint64_t identifier, const JSC::ArgList& args)
157 JSValue ProxyInstance::invokeMethod(ExecState* exec, const MethodList& methodList, const ArgList& args)
185 JSValue ProxyInstance::invokeDefaultMethod(ExecState* exec, const ArgList& args)
209 JSValue ProxyInstance::invokeConstruct(ExecState* exec, const ArgList& args)
214 JSValue ProxyInstance::defaultValue(ExecState* exec, PreferredPrimitiveType hint) const
223 JSValue ProxyInstance::stringValue(ExecState* exec) cons
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSString.h 57 // likely outlive the JSValue this makes, such as the parse tree or a
242 JSString(ExecState* exec, JSValue v1, JSValue v2, JSValue v3)
300 static PassRefPtr<Structure> createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(StringType, OverridesGetOwnPropertySlot | NeedsThisConversion), AnonymousSlotCount); }
326 void appendValueInConstructAndIncrementLength(ExecState* exec, unsigned& index, JSValue v)
341 virtual JSValue toPrimitive(ExecState*, PreferredPrimitiveType) const;
342 virtual bool getPrimitiveNumber(ExecState*, double& number, JSValue& value);
369 friend JSValue jsString(ExecState* exec, JSString* s1, JSString* s2);
370 friend JSValue jsString(ExecState* exec, const UString& u1, JSString* s2)
    [all...]
JSGlobalObject.h 182 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
183 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes);
263 void resetPrototype(JSValue prototype);
268 static PassRefPtr<Structure> createStructure(JSValue prototype)
278 GlobalPropertyInfo(const Identifier& i, JSValue v, unsigned a)
286 JSValue value;
296 void reset(JSValue prototype);
303 JSGlobalObject* asGlobalObject(JSValue);
305 inline JSGlobalObject* asGlobalObject(JSValue value)
358 inline JSValue Structure::prototypeForLookup(ExecState* exec) cons
    [all...]
JSFunction.cpp 119 JSValue JSFunction::call(ExecState* exec, JSValue thisValue, const ArgList& args)
125 JSValue JSFunction::argumentsGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
132 JSValue JSFunction::callerGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
139 JSValue JSFunction::lengthGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
152 JSValue* location = getDirectLocation(propertyName);
222 void JSFunction::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
256 JSValue prototype = get(exec, exec->propertyNames().prototype);
263 JSValue result = exec->interpreter()->execute(jsExecutable(), exec, this, thisObj, args, scopeChain().node(), exec->exceptionSlot());
JSByteArray.cpp 54 PassRefPtr<Structure> JSByteArray::createStructure(JSValue prototype)
91 void JSByteArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
102 void JSByteArray::put(ExecState* exec, unsigned propertyName, JSValue value)
JSActivation.cpp 76 if (JSValue* location = getDirectLocation(propertyName)) {
94 void JSActivation::put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
109 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
142 JSValue JSActivation::argumentsGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
  /external/webkit/JavaScriptGlue/
JSValueWrapper.cpp 36 JSValueWrapper::JSValueWrapper(JSValue inValue)
45 JSValue JSValueWrapper::GetValue()
112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec));
127 void JSValueWrapper::JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue)
135 JSValue value = JSObjectKJSValue((JSUserObject*)jsValue);
152 JSValue value = JSObjectKJSValue((JSUserObject*)thisObj);
161 JSValue kgsArg = JSObjectKJSValue((JSUserObject*)jsArg);
169 JSValue resultValue = call(exec, objValue, callType, callData, ksjThisObj, listArgs);
UserObjectImp.cpp 59 JSValue UserObjectImp::callAsFunction(ExecState *exec, JSObject *thisObj, const ArgList &args)
61 JSValue result = jsUndefined();
115 JSValue UserObjectImp::userObjectGetter(ExecState*, const Identifier& propertyName, const PropertySlot& slot)
124 JSValue result = JSObjectKJSValue(jsResult);
143 JSValue kjsValue = toPrimitive(exec);
153 void UserObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&)
172 JSValue UserObjectImp::toPrimitive(ExecState *exec, JSType) const
174 JSValue result = jsUndefined();
  /external/webkit/WebCore/bindings/js/
JSDocumentCustom.cpp 61 JSValue JSDocument::location(ExecState* exec) const
76 void JSDocument::setLocation(ExecState* exec, JSValue value)
94 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Document* document)
ScheduledAction.cpp 52 JSValue v = args.at(0);
65 ScheduledAction::ScheduledAction(JSValue function, const ArgList& args, DOMWrapperWorld* isolatedWorld)
88 void ScheduledAction::executeFunctionInContext(JSGlobalObject* globalObject, JSValue thisValue)
WorkerScriptController.cpp 99 return JSValue();
103 if (exception.jsValue()) {
105 reportException(m_workerContextWrapper->globalExec(), exception.jsValue());
115 return JSValue();
131 return JSValue();
136 m_workerContextWrapper->globalExec()->setException(exception.jsValue());
JSAttrCustom.cpp 43 void JSAttr::setValue(ExecState* exec, JSValue value)
JSCSSValueCustom.cpp 47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSValue* value)
JSCustomSQLStatementErrorCallback.cpp 72 JSValue result = m_data->invokeCallback(args, &raisedException);
JSHTMLFrameSetElementCustom.cpp 50 JSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSImageDataCustom.cpp 39 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, ImageData* imageData)
JSStyleSheetCustom.cpp 38 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, StyleSheet* styleSheet)
JSStyleSheetListCustom.cpp 55 JSValue JSStyleSheetList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSWebGLArrayCustom.cpp 46 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, WebGLArray* object)
ScriptFunctionCall.cpp 68 m_arguments.append(argument.jsValue());
89 void ScriptFunctionCall::appendArgument(JSC::JSValue argument)
135 JSValue function = thisObject->get(m_exec, Identifier(m_exec, m_name));
149 JSValue result = JSC::call(m_exec, function, callType, callData, thisObject, m_arguments);
187 JSValue result = JSC::construct(m_exec, constructor, constructType, constructData, m_arguments);
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.cpp 57 virtual JSValue valueFromInstance(ExecState* exec, const Instance* pixmap) const
61 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const {}
66 virtual JSValue valueFromInstance(ExecState* exec, const Instance* inst) const
70 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const {}
79 virtual JSValue invoke(ExecState* exec, QVariant&, PassRefPtr<RootObject> root, QtPixmapInstance* inst) = 0;
86 JSValue invoke(ExecState* exec, QVariant& v, PassRefPtr<RootObject> root, QtPixmapInstance*)
118 JSValue invoke(ExecState* exec, QVariant& v, PassRefPtr<RootObject> root, QtPixmapInstance*)
140 JSValue invoke(ExecState* exec, QVariant& v, PassRefPtr<RootObject> root, QtPixmapInstance* inst)
163 static PassRefPtr<Structure> createStructure(JSValue prototype)
193 JSValue QtPixmapInstance::invokeMethod(ExecState* exec, const MethodList& methods, const ArgList& args
    [all...]
  /external/webkit/JavaScriptCore/API/
JSStringRefCF.cpp 34 #include <runtime/JSValue.h>
  /external/webkit/JavaScriptCore/bytecode/
EvalCodeCache.h 45 PassRefPtr<EvalExecutable> get(ExecState* exec, const UString& evalSource, ScopeChainNode* scopeChain, JSValue& exceptionValue)
  /external/webkit/WebCore/bridge/
runtime_array.cpp 48 JSValue RuntimeArray::lengthGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
54 JSValue RuntimeArray::indexGetter(ExecState* exec, const Identifier&, const PropertySlot& slot)
124 void RuntimeArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
141 void RuntimeArray::put(ExecState* exec, unsigned index, JSValue value)

Completed in 550 milliseconds

<<111213141516