HomeSort by relevance Sort by last modified time
    Searched full:jsvalue (Results 251 - 275 of 411) sorted by null

<<11121314151617

  /external/webkit/JavaScriptCore/runtime/
Collector.h 45 class JSValue;
93 void protect(JSValue);
94 void unprotect(JSValue);
96 static Heap* heap(JSValue); // 0 for immediate values
DatePrototype.h 40 static PassRefPtr<Structure> createStructure(JSValue prototype)
FunctionPrototype.h 35 static PassRefPtr<Structure> createStructure(JSValue proto)
GlobalEvalFunction.h 38 static PassRefPtr<Structure> createStructure(JSValue prototype)
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)
MathObject.h 38 static PassRefPtr<Structure> createStructure(JSValue prototype)
JSString.cpp 142 JSValue JSString::toPrimitive(ExecState*, PreferredPrimitiveType) const
147 bool JSString::getPrimitiveNumber(ExecState* exec, double& number, JSValue& result)
197 // This function should only be called by JSValue::get.
206 for (JSValue prototype = exec->lexicalGlobalObject()->stringPrototype(); !prototype.isNull(); prototype = object->prototype()) {
245 // This function should only be called by JSValue::get.
FunctionConstructor.cpp 58 static JSValue JSC_HOST_CALL callFunctionConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args)
JSGlobalData.h 36 #include "JSValue.h"
158 JSValue exception;
  /external/webkit/WebCore/bindings/js/
JSCDATASectionCustom.cpp 35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, CDATASection* section)
JSMimeTypeArrayCustom.cpp 36 JSValue JSMimeTypeArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSPluginArrayCustom.cpp 36 JSValue JSPluginArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
JSPluginCustom.cpp 35 JSValue JSPlugin::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
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)
JSMessageEventCustom.cpp 45 JSValue JSMessageEvent::ports(ExecState* exec) const
57 JSC::JSValue JSMessageEvent::initMessageEvent(JSC::ExecState* exec, const JSC::ArgList& args)
  /external/webkit/WebCore/bridge/qt/
qt_class.h 47 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&);
  /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)
NP_jsobject.cpp 118 JSValue function = obj->imp;
128 JSValue resultV = JSC::call(exec, function, callType, callData, function, argList);
167 JSValue function = obj->imp->get(exec, identifierFromNPIdentifier(i->string()));
178 JSValue resultV = JSC::call(exec, function, callType, callData, obj->imp, argList);
212 Completion completion = JSC::evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(scriptString), JSC::JSValue());
216 JSValue result;
246 JSValue result;
374 JSValue func = obj->imp->get(exec, identifierFromNPIdentifier(i->string()));
442 JSValue constructor = obj->imp;
452 JSValue resultV = JSC::construct(exec, constructor, constructType, constructData, argList)
    [all...]
  /external/webkit/WebCore/bindings/scripts/
CodeGeneratorJS.pm 280 push(@getOwnPropertySlotImpl, " ${namespaceMaybe}JSValue proto = prototype();\n");
372 push(@getOwnPropertyDescriptorImpl, " ${namespaceMaybe}JSValue proto = prototype();\n");
601 push(@headerContent, " virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);\n");
602 push(@headerContent, " virtual void put(JSC::ExecState*, unsigned propertyName, JSC::JSValue);\n") if $dataNode->extendedAttributes->{"HasCustomIndexSetter"};
603 push(@headerContent, " bool putDelegate(JSC::ExecState*, const JSC::Identifier&, JSC::JSValue, JSC::PutPropertySlot&);\n") if $dataNode->extendedAttributes->{"DelegatingPutFunction"};
616 " static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)\n" .
658 push(@headerContent, " virtual JSC::JSValue lookupGetter(JSC::ExecState*, const JSC::Identifier& propertyName);\n") if $dataNode->extendedAttributes->{"CustomLookupGetter"};
661 push(@headerContent, " virtual JSC::JSValue lookupSetter(JSC::ExecState*, const JSC::Identifier& propertyName);\n") if $dataNode->extendedAttributes->{"CustomLookupSetter"};
670 push(@headerContent, " static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);\n") if (!($dataNode->extendedAttributes->{"OmitConstructor"} || $dataNode->extendedAttributes->{"CustomConstructor"}));
698 push(@headerContent, " JSC::JSValue " . $codeGenerator->WK_lcfirst($attribute->signature->name) . "(JSC::ExecState*) const;\n")
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITArithmetic.cpp 58 Jump srcNotInt = branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag));
67 addSlowCase(branch32(Above, regT1, Imm32(JSValue::LowestTag)));
101 notInt32Op2.append(branch32(NotEqual, regT3, Imm32(JSValue::Int32Tag)));
105 notInt32Op1.append(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
109 notInt32Op1.append(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
110 notInt32Op2.append(branch32(NotEqual, regT3, Imm32(JSValue::Int32Tag)));
164 notInt32Op2.append(branch32(NotEqual, regT3, Imm32(JSValue::Int32Tag)));
168 notInt32Op1.append(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
172 notInt32Op1.append(branch32(NotEqual, regT1, Imm32(JSValue::Int32Tag)));
173 notInt32Op2.append(branch32(NotEqual, regT3, Imm32(JSValue::Int32Tag)))
    [all...]
  /external/webkit/JavaScriptCore/debugger/
Debugger.cpp 100 JSValue evaluateInGlobalCallFrame(const UString& script, JSValue& exception, JSGlobalObject* globalObject)
  /external/webkit/WebCore/bindings/objc/
WebScriptObject.mm 289 JSValue function = [self _imp]->get(exec, Identifier(exec, String(name)));
302 JSValue result = JSC::call(exec, function, callType, callData, [self _imp], argList);
327 JSValue result;
331 Completion completion = JSC::evaluate([self _rootObject]->globalObject()->globalExec(), [self _rootObject]->globalObject()->globalScopeChain(), makeSource(String(script)), JSC::JSValue());
391 JSValue result = [self _imp]->get(exec, Identifier(exec, String(key)));
458 JSValue result = [self _imp]->get(exec, index);
507 + (id)_convertValueToObjcValue:(JSValue)value originRootObject:(RootObject*)originRootObject rootObject:(RootObject*)rootObject
515 JSValue runtimeObject = object->get(exec, Identifier(exec, "__apple_runtime_object"));
WebScriptObjectPrivate.h 30 #import <runtime/JSValue.h>
49 + (id)_convertValueToObjcValue:(JSC::JSValue)value originRootObject:(JSC::Bindings::RootObject*)originRootObject rootObject:(JSC::Bindings::RootObject*)rootObject;

Completed in 96 milliseconds

<<11121314151617