HomeSort by relevance Sort by last modified time
    Searched full:jsvalue (Results 201 - 225 of 522) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPRuntimeObjectMap.h 40 class JSValue;
72 void convertJSValueToNPVariant(JSC::ExecState*, JSC::JSValue, NPVariant&);
73 JSC::JSValue convertNPVariantToJSValue(JSC::ExecState*, JSC::JSGlobalObject*, const NPVariant&);
NPJSObject.cpp 103 JSValue value = m_jsObject->get(exec, identifierFromIdentifierRep(exec, identifierRep));
123 JSValue function = m_jsObject->get(exec, identifierFromIdentifierRep(exec, identifierRep));
135 JSValue function = m_jsObject.get();
168 JSValue jsResult;
189 JSValue jsValue = m_objectMap->convertNPVariantToJSValue(exec, m_objectMap->globalObject(), *value);
192 m_jsObject->put(exec, identifierFromIdentifierRep(exec, identifierRep), jsValue, slot);
194 m_jsObject->put(exec, identifierRep->number(), jsValue);
272 JSValue value = JSC::construct(exec, m_jsObject.get(), constructType, constructData, argumentList);
282 bool NPJSObject::invoke(ExecState* exec, JSGlobalObject* globalObject, JSValue function, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
ProxyInstance.mm 83 virtual JSValue valueFromInstance(ExecState*, const Instance*) const;
84 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
89 JSValue ProxyField::valueFromInstance(ExecState* exec, const Instance* instance) const
94 void ProxyField::setValueToInstance(ExecState* exec, const Instance* instance, JSValue value) const
145 JSValue ProxyInstance::invoke(JSC::ExecState* exec, InvokeType type, uint64_t identifier, const ArgList& args)
190 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
200 JSValue ProxyInstance::getMethod(JSC::ExecState* exec, const JSC::Identifier& propertyName)
206 JSValue ProxyInstance::invokeMethod(ExecState* exec, JSC::RuntimeMethod* runtimeMethod)
239 JSValue ProxyInstance::invokeDefaultMethod(ExecState* exec)
263 JSValue ProxyInstance::invokeConstruct(ExecState* exec, const ArgList& args
    [all...]
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerActivation.cpp 59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
94 JSValue DebuggerActivation::lookupGetter(ExecState* exec, const Identifier& propertyName)
99 JSValue DebuggerActivation::lookupSetter(ExecState* exec, const Identifier& propertyName)
  /external/webkit/Source/JavaScriptCore/heap/
HandleStack.h 65 BlockStack<JSValue> m_blockStack;
91 blocks[i][j] = JSValue();
95 *it = JSValue();
101 *it = JSValue();
  /external/webkit/Source/JavaScriptCore/jit/
JITCode.h 32 #include "JSValue.h"
75 inline JSValue execute(RegisterFile* registerFile, CallFrame* callFrame, JSGlobalData* globalData)
77 JSValue result = JSValue::decode(ctiTrampoline(m_ref.m_code.executableAddress(), registerFile, callFrame, 0, Profiler::enabledProfilerReference(), globalData));
SpecializedThunkJIT.h 101 loadPtr(Address(stackPointerRegister, OBJECT_OFFSETOF(JSValue, u.asBits.tag) - sizeof(double)), regT1);
102 loadPtr(Address(stackPointerRegister, OBJECT_OFFSETOF(JSValue, u.asBits.payload) - sizeof(double)), regT0);
144 move(TrustedImm32(JSValue::Int32Tag), regT1);
151 move(TrustedImm32(JSValue::CellTag), regT1);
  /external/webkit/Source/JavaScriptCore/runtime/
ExceptionHelpers.cpp 94 JSObject* createInvalidParamError(ExecState* exec, const char* op, JSValue value)
103 JSObject* createNotAConstructorError(ExecState* exec, JSValue value)
112 JSObject* createNotAFunctionError(ExecState* exec, JSValue value)
121 JSObject* createNotAnObjectError(ExecState* exec, JSValue value)
ConstructData.h 32 #include "JSValue.h"
60 JSObject* construct(ExecState*, JSValue constructor, ConstructType, const ConstructData&, const ArgList&);
JSONObject.h 39 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
54 UString JSONStringify(ExecState* exec, JSValue value, unsigned indent);
Structure.h 32 #include "JSValue.h"
61 static Structure* create(JSGlobalData& globalData, JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount, const ClassInfo* classInfo)
72 static Structure* changePrototypeTransition(JSGlobalData&, Structure*, JSValue prototype);
92 void setPrototypeWithoutTransition(JSGlobalData& globalData, JSValue prototype) { m_prototype.set(globalData, this, prototype); }
99 JSValue storedPrototype() const { return m_prototype.get(); }
100 JSValue prototypeForLookup(ExecState*) const;
160 Structure(JSGlobalData&, JSValue prototype, const TypeInfo&, unsigned anonymousSlotCount, const ClassInfo*);
281 inline bool JSValue::needsThisConversion() const
JSVariableObject.h 49 virtual void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes) = 0;
61 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
84 bool symbolTablePut(JSGlobalData&, const Identifier&, JSValue);
85 bool symbolTablePutWithAttributes(JSGlobalData&, const Identifier&, JSValue, unsigned attributes);
113 inline bool JSVariableObject::symbolTablePut(JSGlobalData& globalData, const Identifier& propertyName, JSValue value)
126 inline bool JSVariableObject::symbolTablePutWithAttributes(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes)
  /external/webkit/Source/WebCore/bindings/js/
JSDeviceOrientationEventCustom.cpp 38 JSValue JSDeviceOrientationEvent::alpha(ExecState*) const
46 JSValue JSDeviceOrientationEvent::beta(ExecState*) const
54 JSValue JSDeviceOrientationEvent::gamma(ExecState*) const
62 JSValue JSDeviceOrientationEvent::initDeviceOrientationEvent(ExecState* exec)
JSDocumentCustom.cpp 63 JSValue JSDocument::location(ExecState* exec) const
78 void JSDocument::setLocation(ExecState* exec, JSValue value)
97 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Document* document)
129 JSValue JSDocument::createTouchList(ExecState* exec)
JSHTMLCanvasElementCustom.cpp 53 JSValue JSHTMLCanvasElement::getContext(ExecState* exec)
91 JSValue JSHTMLCanvasElement::toDataURL(ExecState* exec)
97 JSC::JSValue result;
101 JSValue v = exec->argument(1);
JSSQLTransactionSyncCustom.cpp 44 JSValue JSSQLTransactionSync::executeSql(ExecState* exec)
64 JSValue lengthValue = object->get(exec, exec->propertyNames().length);
72 JSValue value = object->get(exec, i);
90 JSValue result = toJS(exec, globalObject(), WTF::getPtr(m_impl->executeSQL(sqlStatement, sqlValues, ec)));
CallbackFunction.h 45 bool checkFunctionOnlyCallback(JSC::ExecState*, JSC::JSValue, CallbackAllowedValueFlags);
49 PassRefPtr<JSCallbackType> createFunctionOnlyCallback(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, JSC::JSValue value, CallbackAllowedValueFlags acceptedValues = 0)
JSCustomXPathNSResolver.h 32 #include <runtime/JSValue.h>
48 static PassRefPtr<JSCustomXPathNSResolver> create(JSC::ExecState*, JSC::JSValue);
JSDataGridColumnListCustom.cpp 46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
JSHTMLDataGridElementCustom.cpp 40 JSValue JSHTMLDataGridElement::dataSource(ExecState*) const
48 void JSHTMLDataGridElement::setDataSource(ExecState*, JSValue value)
ScheduledAction.h 53 ScheduledAction(JSC::ExecState*, JSC::JSValue function, DOMWrapperWorld* isolatedWorld);
61 void executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue thisValue, ScriptExecutionContext*);
  /external/webkit/Source/JavaScriptGlue/
JavaScriptGlue.cpp 42 static void CFJSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
482 void CFJSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue)
486 CFTypeRef cfValue = JSObjectCopyCFValue(jsValue);
608 JSObjectRef jsValue = (JSObjectRef)CFArrayGetValueAtIndex(array, i);
609 CFTypeRef cfvalue = JSObjectCopyCFValue(jsValue);
638 JSObjectRef jsValue = JSObjectCreateWithCFType(cfValue);
640 if (!jsValue) jsValue = JSObjectCreateWithCFType(GetCFNull());
641 if (jsValue)
643 CFArrayAppendValue(jsArray, jsValue);
    [all...]
  /external/webkit/Source/WebCore/bridge/c/
c_runtime.h 41 virtual JSValue valueFromInstance(ExecState*, const Instance*) const;
42 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 67 void clearException() { globalData().exception = JSValue(); }
68 JSValue exception() const { return globalData().exception; }
125 JSValue hostThisValue() { return this[hostThisRegister()].jsValue(); }
128 JSValue argument(int argumentNumber)
133 return this[argumentIndex].jsValue();
  /external/webkit/Source/JavaScriptCore/profiler/
Profiler.cpp 123 void Profiler::willExecute(ExecState* callerCallFrame, JSValue function)
134 CallIdentifier callIdentifier = createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber);
139 void Profiler::didExecute(ExecState* callerCallFrame, JSValue function)
150 dispatchFunctionToProfiles(callerCallFrame, m_currentProfiles, &ProfileGenerator::didExecute, createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber), callerCallFrame->lexicalGlobalObject()->profileGroup());
157 dispatchFunctionToProfiles(handlerCallFrame, m_currentProfiles, &ProfileGenerator::exceptionUnwind, createCallIdentifier(handlerCallFrame, JSValue(), "", 0), handlerCallFrame->lexicalGlobalObject()->profileGroup());
160 CallIdentifier Profiler::createCallIdentifier(ExecState* exec, JSValue functionValue, const UString& defaultSourceURL, int defaultLineNumber)

Completed in 268 milliseconds

1 2 3 4 5 6 7 891011>>