/external/webkit/Source/WebCore/bindings/js/ |
JSDOMPluginCustom.cpp | 38 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
|
JSEntryCustom.cpp | 47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Entry* entry)
|
JSEntrySyncCustom.cpp | 47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, EntrySync* entry)
|
JSHTMLOutputElementCustom.cpp | 41 JSValue result = toJS(exec, globalObject(), WTF::getPtr(output->htmlFor()));
|
JSWorkerContextBase.cpp | 64 JSValue toJS(ExecState* exec, JSDOMGlobalObject*, WorkerContext* workerContext) 66 return toJS(exec, workerContext); 69 JSValue toJS(ExecState*, WorkerContext* workerContext)
|
JSHTMLCollectionCustom.cpp | 48 return toJS(exec, collection->globalObject(), namedItems[0].get()); 53 return toJS(exec, collection->globalObject(), StaticNodeList::adopt(namedItems).get()); 75 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index))); 90 return JSValue::encode(toJS(exec, jsCollection->globalObject(), node)); 123 return toJS(exec, globalObject(), impl()->item(index)); 132 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, HTMLCollection* collection)
|
JSArrayBufferCustom.cpp | 49 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), buffer.get())));
|
JSCustomPositionCallback.cpp | 57 args.append(toJS(exec, deprecatedGlobalObjectForPrototype(exec), geoposition));
|
JSCustomPositionErrorCallback.cpp | 57 args.append(toJS(exec, deprecatedGlobalObjectForPrototype(exec), positionError));
|
JSDataGridColumnListCustom.cpp | 49 return toJS(exec, thisObj->globalObject(), thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
|
JSWebKitPointCustom.cpp | 49 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), WebKitPoint::create(x, y))));
|
JSAudioConstructor.cpp | 58 // Calling toJS on the document causes the JS document wrapper to be 61 toJS(exec, jsConstructor->globalObject(), document); 69 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(),
|
JSImageConstructor.cpp | 51 // Calling toJS on the document causes the JS document wrapper to be 54 toJS(exec, jsConstructor->globalObject(), document); 68 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(),
|
JSHTMLAllCollectionCustom.cpp | 52 return toJS(exec, collection->globalObject(), namedItems[0].get()); 57 return toJS(exec, collection->globalObject(), StaticNodeList::adopt(namedItems).get()); 79 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index))); 94 return JSValue::encode(toJS(exec, jsCollection->globalObject(), node)); 127 return toJS(exec, globalObject(), impl()->item(index));
|
JSAudioContextCustom.cpp | 78 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), audioContext.get()))); 101 return toJS(exec, globalObject(), audioBuffer.get()); 119 return toJS(exec, globalObject(), audioBuffer.get());
|
JSInjectedScriptHostCustom.cpp | 74 return ScriptValue(state->globalData(), toJS(state, node)); 85 return toJS(exec, callFrame); 102 return toJS(exec, node);
|
JSNodeListCustom.cpp | 72 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, NodeList* impl) 84 return JSValue::encode(toJS(exec, static_cast<JSNodeList*>(exec->callee())->impl()->item(index))); 101 return toJS(exec, thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
|
JSCSSValueCustom.cpp | 47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSValue* value)
|
/external/webkit/Source/JavaScriptCore/API/ |
JSCallbackFunction.cpp | 67 result = static_cast<JSCallbackFunction*>(toJS(functionRef))->m_callback(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception); 70 throwError(exec, toJS(exec, exception)); 72 return JSValue::encode(toJS(exec, result));
|
APICast.h | 51 inline JSC::ExecState* toJS(JSContextRef c) 57 inline JSC::ExecState* toJS(JSGlobalContextRef c) 63 inline JSC::JSValue toJS(JSC::ExecState* exec, JSValueRef v) 93 inline JSC::JSObject* toJS(JSObjectRef o) 98 inline JSC::PropertyNameArray* toJS(JSPropertyNameAccumulatorRef a) 103 inline JSC::JSGlobalData* toJS(JSContextGroupRef g)
|
JSCallbackConstructor.cpp | 77 throwError(exec, toJS(exec, exception)); 78 return JSValue::encode(toJS(result)); 81 return JSValue::encode(toJS(JSObjectMake(ctx, static_cast<JSCallbackConstructor*>(constructor)->classRef(), 0)));
|
JSCallbackObjectFunctions.h | 140 throwError(exec, toJS(exec, exception)); 145 slot.setValue(toJS(exec, value)); 206 throwError(exec, toJS(exec, exception)); 225 throwError(exec, toJS(exec, exception)); 264 throwError(exec, toJS(exec, exception)); 324 result = toJS(callAsConstructor(execRef, constructorRef, argumentCount, arguments.data(), &exception)); 327 throwError(exec, toJS(exec, exception)); 352 throwError(exec, toJS(exec, exception)); 378 for (JSClassRef jsClass = static_cast<JSCallbackObject<Base>*>(toJS(functionRef))->classRef(); jsClass; jsClass = jsClass->parentClass) { 388 result = toJS(exec, callAsFunction(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception (…) [all...] |
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
JSTestCallback.cpp | 88 args.append(toJS(exec, class1Param)); 106 args.append(toJS(exec, class2Param)); 125 args.append(toJS(exec, listParam));
|
/external/webkit/Tools/WebKitTestRunner/ |
StringFunctions.h | 57 inline JSRetainPtr<JSStringRef> toJS(WKStringRef string) 62 inline JSRetainPtr<JSStringRef> toJS(const WKRetainPtr<WKStringRef>& string) 64 return toJS(string.get());
|
/external/webkit/Source/WebCore/css/ |
MediaQueryListListener.cpp | 38 callback.appendArgument(toJS(state, query));
|