/external/v8/src/ |
accessors.cc | 94 JSValue* wrapper = JSValue::cast(value); 153 if (object->IsJSValue()) value = JSValue::cast(object)->value(); 174 Object* script = JSValue::cast(object)->value(); 192 Object* script = JSValue::cast(object)->value(); 210 Object* script = JSValue::cast(object)->value(); 228 Object* script = JSValue::cast(object)->value(); 246 Object* script = JSValue::cast(object)->value(); 264 Object* script = JSValue::cast(object)->value(); 282 Object* script = JSValue::cast(object)->value() [all...] |
liveedit.h | 99 static void SetFunctionScript(Handle<JSValue> function_wrapper, 114 static void ReplaceRefToNestedFunction(Handle<JSValue> parent_function_shared, 115 Handle<JSValue> orig_function_shared, 116 Handle<JSValue> subst_function_shared);
|
/external/webkit/Source/WebCore/bindings/scripts/ |
CodeGeneratorJS.pm | 146 JSValue correspondingElementWrapper = toJS(exec, imp->correspondingElement()); 173 JSValue correspondingElementWrapper = toJS(exec, imp->correspondingElement()); 175 return JSValue::encode(jsUndefined()); 180 JSValue listener = exec->argument(1); 182 return JSValue::encode(jsUndefined()); 184 return JSValue::encode(jsUndefined()); 389 push(@getOwnPropertySlotImpl, " ${namespaceMaybe}JSValue proto = prototype();\n"); 481 push(@getOwnPropertyDescriptorImpl, " ${namespaceMaybe}JSValue proto = prototype();\n"); 735 push(@headerContent, " virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);\n"); 736 push(@headerContent, " virtual void put(JSC::ExecState*, unsigned propertyName, JSC::JSValue);\n") if $dataNode->extendedAttributes->{"HasCustomIndexSetter"} [all...] |
/external/webkit/Source/JavaScriptCore/jit/ |
JITPropertyAccess32_64.cpp | 225 move(TrustedImm32(JSValue::CellTag), regT1); 291 jit.move(TrustedImm32(JSValue::CellTag), regT1); // We null check regT0 on return so this is safe 310 addSlowCase(branch32(NotEqual, regT3, TrustedImm32(JSValue::Int32Tag))); 317 load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)), regT1); // tag 318 load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT0); // payload 319 addSlowCase(branch32(Equal, regT1, TrustedImm32(JSValue::EmptyValueTag))); 362 addSlowCase(branch32(NotEqual, regT3, TrustedImm32(JSValue::Int32Tag))); 369 Jump empty = branch32(Equal, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)), TrustedImm32(JSValue::EmptyValueTag)); 373 store32(regT0, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.payload))); // payloa [all...] |
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptvalue_p.h | 57 JSValue -> QSVP is associated with engine, but there is no information about real type, the state 167 JSValue = 0x2000, // JS values are equal or higher then this value. 312 : m_state(JSValue) 338 case JSValue: 354 case JSValue: 370 case JSValue: 386 case JSValue: 402 case JSValue: 416 case JSValue: 430 case JSValue [all...] |
/external/webkit/Source/JavaScriptCore/heap/ |
HandleHeap.cpp | 109 *node->slot() = JSValue(); 117 void HandleHeap::writeBarrier(HandleSlot slot, const JSValue& value) 144 JSValue value = *node->slot(); 157 JSValue value = *node->slot();
|
/external/webkit/Source/JavaScriptCore/runtime/ |
ArrayPrototype.h | 38 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
|
BooleanConstructor.h | 39 JSObject* constructBooleanFromImmediateBoolean(ExecState*, JSGlobalObject*, JSValue);
|
DatePrototype.h | 39 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
|
FunctionPrototype.h | 33 static Structure* createStructure(JSGlobalData& globalData, JSValue proto)
|
MathObject.h | 37 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
|
NativeErrorConstructor.h | 38 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
|
ObjectConstructor.h | 39 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
|
ObjectPrototype.h | 33 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
|
PropertySlot.cpp | 29 JSValue PropertySlot::functionGetter(ExecState* exec) const
|
StrictEvalActivation.h | 38 virtual JSValue toStrictThisObject(ExecState*) const;
|
StringPrototype.h | 37 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
|
StringRecursionChecker.cpp | 35 return JSValue::encode(jsEmptyString(m_exec));
|
/external/webkit/Source/WebCore/bindings/js/ |
IDBBindingUtilities.h | 38 PassRefPtr<IDBKey> createIDBKeyFromValue(JSC::ExecState*, JSC::JSValue);
|
JSCDATASectionCustom.cpp | 35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, CDATASection* section)
|
JSClipboardCustom.cpp | 51 JSValue JSClipboard::types(ExecState* exec) const 66 JSValue JSClipboard::clearData(ExecState* exec) 84 JSValue JSClipboard::getData(ExecState* exec) 100 JSValue JSClipboard::setDragImage(ExecState* exec)
|
JSDOMWindowBase.cpp | 161 JSValue JSDOMWindowBase::toStrictThisObject(ExecState*) const 190 JSValue toJS(ExecState* exec, JSDOMGlobalObject*, DOMWindow* domWindow) 195 JSValue toJS(ExecState* exec, DOMWindow* domWindow) 212 JSDOMWindow* toJSDOMWindow(JSValue value)
|
JSEventListener.cpp | 97 JSValue handleEventFunction = jsFunction->get(exec, Identifier(exec, "handleEvent")); 102 handleEventFunction = JSValue(); 119 JSValue retval; 125 JSValue currentTarget = toJS(exec, globalObject, event->currentTarget());
|
JSImageConstructor.h | 32 static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype)
|
JSMemoryInfoCustom.cpp | 39 JSValue JSMemoryInfo::jsHeapSizeLimit(ExecState*) const
|