/external/webkit/Source/JavaScriptCore/runtime/ |
JSStringBuilder.h | 72 JSValue build(ExecState* exec) 88 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2) 97 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3) 106 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4) 115 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4, StringType5 string5) 124 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4, StringType5 string5, StringType6 string6)
|
CallData.cpp | 35 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args)
|
DateInstance.h | 55 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) 67 DateInstance* asDateInstance(JSValue); 69 inline DateInstance* asDateInstance(JSValue value)
|
GetterSetter.h | 51 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) 62 GetterSetter* asGetterSetter(JSValue); 64 inline GetterSetter* asGetterSetter(JSValue value)
|
InternalFunction.h | 42 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) 61 InternalFunction* asInternalFunction(JSValue); 63 inline InternalFunction* asInternalFunction(JSValue value)
|
JSStaticScopeObject.cpp | 44 JSValue JSStaticScopeObject::toStrictThisObject(ExecState*) const 49 void JSStaticScopeObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) 57 void JSStaticScopeObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
|
ErrorConstructor.cpp | 44 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); 46 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message)); 57 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); 59 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
|
JSCell.cpp | 120 // It should only be called by JSValue::get. 132 // It should only be called by JSValue::get. 141 void JSCell::put(ExecState* exec, const Identifier& identifier, JSValue value, PutPropertySlot& slot) 146 void JSCell::put(ExecState* exec, unsigned identifier, JSValue value) 166 JSValue JSCell::getJSNumber() 168 return JSValue(); 176 JSValue JSCell::toPrimitive(ExecState*, PreferredPrimitiveType) const 179 return JSValue(); 182 bool JSCell::getPrimitiveNumber(ExecState*, double&, JSValue&)
|
JSObject.cpp | 103 void JSObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 118 JSValue prototype; 137 if (JSValue gs = obj->getDirect(exec->globalData(), propertyName)) { 168 void JSObject::put(ExecState* exec, unsigned propertyName, JSValue value) 174 void JSObject::putWithAttributes(JSGlobalData* globalData, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot) 179 void JSObject::putWithAttributes(JSGlobalData* globalData, const Identifier& propertyName, JSValue value, unsigned attributes) 184 void JSObject::putWithAttributes(JSGlobalData* globalData, unsigned propertyName, JSValue value, unsigned attributes) 189 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot) 194 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) 199 void JSObject::putWithAttributes(ExecState* exec, unsigned propertyName, JSValue value, unsigned attributes [all...] |
NativeErrorConstructor.cpp | 58 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); 61 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message)); 72 JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); 74 return JSValue::encode(ErrorInstance::create(exec, errorStructure, message));
|
/external/webkit/Source/JavaScriptCore/debugger/ |
Debugger.h | 33 class JSValue; 61 JSValue evaluateInGlobalCallFrame(const UString&, JSValue& exception, JSGlobalObject*);
|
/external/webkit/Source/JavaScriptGlue/ |
JSValueWrapper.h | 39 JSValueWrapper(JSValue); 44 JSValue GetValue(); 52 static void JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
|
JSUtils.h | 35 #include <JavaScriptCore/JSValue.h> 58 JSUserObject *KJSValueToJSObject(JSValue inValue, ExecState *exec); 59 CFTypeRef KJSValueToCFType(JSValue inValue, ExecState *exec); 60 JSValue JSObjectKJSValue(JSUserObject* ptr);
|
/external/webkit/Source/WebCore/bindings/js/ |
JSHTMLOutputElementCustom.cpp | 38 JSValue JSHTMLOutputElement::htmlFor(ExecState* exec) const 41 JSValue result = toJS(exec, globalObject(), WTF::getPtr(output->htmlFor())); 45 void JSHTMLOutputElement::setHtmlFor(ExecState* exec, JSValue value)
|
JSHTMLSelectElementCustom.cpp | 35 JSValue JSHTMLSelectElement::remove(ExecState* exec) 48 void selectIndexSetter(HTMLSelectElement* select, JSC::ExecState* exec, unsigned index, JSC::JSValue value) 63 void JSHTMLSelectElement::indexSetter(JSC::ExecState* exec, unsigned index, JSC::JSValue value)
|
JSNodeFilterCondition.h | 25 #include <runtime/JSValue.h> 35 static PassRefPtr<JSNodeFilterCondition> create(JSC::JSGlobalData& globalData, NodeFilter* owner, JSC::JSValue filter) 41 JSNodeFilterCondition(JSC::JSGlobalData&, NodeFilter* owner, JSC::JSValue filter);
|
JSPluginElementFunctions.h | 41 JSC::JSValue runtimeObjectPropertyGetter(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&); 44 bool runtimeObjectCustomPut(JSC::ExecState*, const JSC::Identifier&, JSC::JSValue, JSHTMLElement*, JSC::PutPropertySlot&);
|
JSScriptProfileNodeCustom.cpp | 43 JSValue JSScriptProfileNode::callUID(ExecState*) const 45 JSValue result = jsNumber(impl()->callIdentifier().hash()); 51 JSValue JSScriptProfileNode::children(ExecState* exec) const
|
SerializedScriptValue.cpp | 164 typedef pair<JSC::JSValue, SerializationReturnCode> DeserializationResult; 253 static SerializationReturnCode serialize(ExecState* exec, JSValue value, Vector<uint8_t>& out) 280 SerializationReturnCode serialize(JSValue in); 282 bool isArray(JSValue value) 331 JSValue getSparseIndex(JSArray* array, unsigned propertyName, bool& hasIndex) 347 JSValue getProperty(JSObject* object, const Identifier& propertyName) 352 return JSValue(); 355 void dumpImmediate(JSValue value) 393 bool dumpIfTerminal(JSValue value) 611 SerializationReturnCode CloneSerializer::serialize(JSValue in [all...] |
/external/webkit/Source/WebCore/bridge/c/ |
c_utility.h | 32 #include <runtime/JSValue.h> 47 void convertValueToNPVariant(ExecState*, JSValue, NPVariant* result); 48 JSValue convertNPVariantToValue(ExecState*, const NPVariant*, RootObject*);
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
JNIUtilityPrivate.h | 33 #include <runtime/JSValue.h> 44 jvalue convertValueToJValue(ExecState*, RootObject*, JSValue, JavaType, const char* javaClassName); 45 bool dispatchJNICall(ExecState*, const void* targetAppletView, jobject, bool isStatic, JavaType returnType, jmethodID, jvalue* args, jvalue& result, const char* callingURL, JSValue& exceptionDescription);
|
JavaArrayJSC.h | 47 virtual void setValueAt(ExecState*, unsigned int index, JSValue) const; 48 virtual JSValue valueAt(ExecState*, unsigned int index) const; 53 static JSValue convertJObjectToArray(ExecState*, jobject, const char* type, PassRefPtr<RootObject>);
|
/external/webkit/Source/WebCore/bridge/objc/ |
objc_utility.h | 76 ObjcValue convertValueToObjcValue(ExecState*, JSValue, ObjcValueType); 77 JSValue convertNSStringToString(ExecState* exec, NSString *nsstring); 78 JSValue convertObjcValueToValue(ExecState*, void* buffer, ObjcValueType, RootObject*);
|
/external/webkit/Source/JavaScriptCore/jit/ |
JITArithmetic32_64.cpp | 57 Jump srcNotInt = branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag)); 65 addSlowCase(branch32(Above, regT1, TrustedImm32(JSValue::LowestTag))); 99 addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag))); 108 addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag))); 118 notInt32Op2.append(branch32(NotEqual, regT3, TrustedImm32(JSValue::Int32Tag))); 122 notInt32Op1.append(branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag))); 126 notInt32Op1.append(branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag))); 127 notInt32Op2.append(branch32(NotEqual, regT3, TrustedImm32(JSValue::Int32Tag))); 188 addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag))); 197 addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag))) [all...] |
/external/webkit/Source/JavaScriptCore/profiler/ |
Profiler.h | 43 class JSValue; 57 static CallIdentifier createCallIdentifier(ExecState* exec, JSValue, const UString& sourceURL, int lineNumber); 63 void willExecute(ExecState* callerCallFrame, JSValue function); 65 void didExecute(ExecState* callerCallFrame, JSValue function);
|