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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/bindings/js/
JSOptionConstructor.h 33 static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype)
JSTextCustom.cpp 35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Text* text)
JSTouchCustom.cpp 37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Touch* touch)
JSTouchListCustom.cpp 37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, TouchList* touchList)
JSNodeCustom.cpp 189 JSValue JSNode::insertBefore(ExecState* exec)
200 JSValue JSNode::replaceChild(ExecState* exec)
211 JSValue JSNode::removeChild(ExecState* exec)
222 JSValue JSNode::appendChild(ExecState* exec)
248 static ALWAYS_INLINE JSValue createWrapperInline(ExecState* exec, JSDOMGlobalObject* globalObject, Node* node)
305 JSValue createWrapper(ExecState* exec, JSDOMGlobalObject* globalObject, Node* node)
310 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Node* node)
JSErrorHandler.cpp 93 JSValue thisValue = globalObject->toThisObject(exec);
96 JSValue returnValue = JSC::call(exec, jsFunction, callType, callData, thisValue, args);
JSMessageEventCustom.cpp 45 JSValue JSMessageEvent::ports(ExecState* exec) const
57 JSC::JSValue JSMessageEvent::initMessageEvent(JSC::ExecState* exec)
ScriptCallStackFactory.cpp 44 #include <runtime/JSValue.h>
65 JSValue function;
  /external/webkit/Source/WebCore/bridge/qt/
qt_class.h 47 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&);
qt_runtime.cpp 153 static JSRealType valueRealType(ExecState* exec, JSValue val)
183 QVariant convertValueToQVariant(ExecState* exec, JSValue value, QMetaType::Type hint, int *distance, HashSet<JSObject*>* visitedObjects, int recursionLimit)
366 JSValue val = object->get(exec, *it);
390 JSValue val = rtarray->getConcreteArray()->valueAt(exec, i);
409 JSValue val = array->get(exec, i);
443 JSValue val = rtarray->getConcreteArray()->valueAt(exec, i);
457 JSValue val = array->get(exec, i);
668 JSValue val = rtarray->getConcreteArray()->valueAt(exec, i);
687 JSValue val = array->get(exec, i);
719 JSValue val = rtarray->getConcreteArray()->valueAt(exec, i)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPRuntimeObjectMap.cpp 114 JSValue NPRuntimeObjectMap::convertNPVariantToJSValue(JSC::ExecState* exec, JSC::JSGlobalObject* globalObject, const NPVariant& variant)
143 void NPRuntimeObjectMap::convertJSValueToNPVariant(ExecState* exec, JSValue value, NPVariant& variant)
193 JSValue thisValue = getOrCreateJSObject(globalObject.get(), npObject);
201 JSValue resultValue;
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.h 53 class JSValue;
67 JSValue jsValue() { return JSValue::decode(asEncodedJSValue); }
247 JSValue* exception;
285 static void tryCacheGetByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifier& propertyName, const PropertySlot&, StructureStubInfo* stubInfo);
286 static void tryCachePutByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const PutPropertySlot&, StructureStubInfo* stubInfo, bool direct);
JSInterfaceJIT.h 31 #include "JSValue.h"
186 // Can't just propogate JSValue::Int32Tag as visual studio doesn't like it
188 COMPILE_ASSERT(Int32Tag == JSValue::Int32Tag, Int32Tag_out_of_sync);
234 return branch32(NotEqual, tagFor(virtualRegisterIndex), TrustedImm32(JSValue::CellTag));
241 return branch32(NotEqual, tagFor(static_cast<int>(virtualRegisterIndex)), TrustedImm32(JSValue::Int32Tag));
247 return Address(base, (static_cast<unsigned>(virtualRegisterIndex) * sizeof(Register)) + OBJECT_OFFSETOF(JSValue, u.asBits.tag));
253 return Address(base, (static_cast<unsigned>(virtualRegisterIndex) * sizeof(Register)) + OBJECT_OFFSETOF(JSValue, u.asBits.payload));
270 Jump isDouble = branch32(Below, scratch, TrustedImm32(JSValue::LowestTag));
271 Jump notInt = branch32(NotEqual, scratch, TrustedImm32(JSValue::Int32Tag));
JITInlineMethods.h 38 unsigned argumentStackOffset = (argumentNumber * (sizeof(JSValue) / sizeof(void*))) + JITSTACKFRAME_ARGS_INDEX;
47 ALWAYS_INLINE JSValue JIT::getConstantOperand(unsigned src)
61 store32(TrustedImm32(JSValue::CellTag), tagFor(entry, callFrameRegister));
407 inline void JIT::emitLoad(const JSValue& v, RegisterID tag, RegisterID payload)
459 convertInt32ToDouble(AbsoluteAddress(bytePointer + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), value);
474 store32(TrustedImm32(JSValue::Int32Tag), tagFor(index, callFrameRegister));
481 store32(TrustedImm32(JSValue::Int32Tag), tagFor(index, callFrameRegister));
488 store32(TrustedImm32(JSValue::CellTag), tagFor(index, callFrameRegister));
495 store32(TrustedImm32(JSValue::BooleanTag), tagFor(index, callFrameRegister));
503 inline void JIT::emitStore(unsigned index, const JSValue constant, RegisterID base
    [all...]
JITCall.cpp 123 wasEval = branchPtr(NotEqual, regT0, TrustedImmPtr(JSValue::encode(JSValue())));
180 wasEval = branchPtr(NotEqual, regT0, TrustedImmPtr(JSValue::encode(JSValue())));
190 Jump jumpToSlow = branchPtrWithPatch(NotEqual, regT0, addressOfLinkedFunctionCheck, TrustedImmPtr(JSValue::encode(JSValue())));
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 184 JSValue function = obj->imp;
194 JSValue resultV = JSC::call(exec, function, callType, callData, function, argList);
233 JSValue function = obj->imp->get(exec, identifierFromNPIdentifier(exec, i->string()));
244 JSValue resultV = JSC::call(exec, function, callType, callData, obj->imp, argList);
278 Completion completion = JSC::evaluate(rootObject->globalObject()->globalExec(), rootObject->globalObject()->globalScopeChain(), makeSource(scriptString), JSC::JSValue());
282 JSValue result;
312 JSValue result;
440 JSValue func = obj->imp->get(exec, identifierFromNPIdentifier(exec, i->string()));
508 JSValue constructor = obj->imp;
518 JSValue resultV = JSC::construct(exec, constructor, constructType, constructData, argList)
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 143 void marshalValue(JSC::ExecState*, JSC::JSValue, data_t& resultData, mach_msg_type_number_t& resultLength);
144 JSC::JSValue demarshalValue(JSC::ExecState*, const char* valueData, mach_msg_type_number_t valueLength);
147 void retainLocalObject(JSC::JSValue);
148 void releaseLocalObject(JSC::JSValue);
312 void addValueToArray(NSMutableArray *, JSC::ExecState* exec, JSC::JSValue value);
314 bool demarshalValueFromArray(JSC::ExecState*, NSArray *array, NSUInteger& index, JSC::JSValue& result);
  /external/v8/src/
liveedit.cc 619 // Unwraps JSValue object, returning its field "value"
620 static Handle<Object> UnwrapJSValue(Handle<JSValue> jsValue) {
621 return Handle<Object>(jsValue->value());
627 static Handle<JSValue> WrapInJSValue(Handle<Object> object) {
630 Handle<JSValue> result =
631 Handle<JSValue>::cast(FACTORY->NewJSObject(constructor));
699 Handle<JSValue> code_wrapper = WrapInJSValue(function_code);
702 Handle<JSValue> scope_wrapper = WrapInJSValue(code_scope_info);
709 Handle<JSValue> info_holder = WrapInJSValue(info)
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
MarkStack.cpp 96 JSValue* end = current.m_end;
101 JSValue value = *current.m_values;
  /external/webkit/Source/JavaScriptCore/runtime/
FunctionConstructor.cpp 52 return JSValue::encode(constructFunction(exec, asInternalFunction(exec->callee())->globalObject(), args));
64 return JSValue::encode(constructFunction(exec, asInternalFunction(exec->callee())->globalObject(), args));
  /external/webkit/Source/WebCore/bindings/objc/
WebScriptObjectPrivate.h 30 #import <runtime/JSValue.h>
49 + (id)_convertValueToObjcValue:(JSC::JSValue)value originRootObject:(JSC::Bindings::RootObject*)originRootObject rootObject:(JSC::Bindings::RootObject*)rootObject;
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackConstructor.h 42 static Structure* createStructure(JSGlobalData& globalData, JSValue proto)
JSCallbackFunction.h 42 static Structure* createStructure(JSGlobalData& globalData, JSValue proto)
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.cpp 40 JSValue function;
CallFrameClosure.h 42 void setArgument(int arg, JSValue value)

Completed in 454 milliseconds

<<11121314151617181920>>