Searched defs:exec (Results 1 - 25 of 457) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/js/
H A DIDBBindingUtilities.cpp35 PassRefPtr<IDBKey> createIDBKeyFromValue(JSC::ExecState* exec, JSC::JSValue value) argument
40 return IDBKey::create(value.toInt32(exec));
42 return IDBKey::create(ustringToString(value.toString(exec)));
H A DJSDedicatedWorkerContextCustom.cpp45 JSC::JSValue JSDedicatedWorkerContext::postMessage(JSC::ExecState* exec) argument
47 return handlePostMessage(exec, impl());
H A DJSDesktopNotificationsCustom.cpp48 JSValue JSNotificationCenter::requestPermission(ExecState* exec) argument
54 setDOMException(exec, INVALID_STATE_ERR);
60 return throwSyntaxError(exec);
62 if (!exec->argument(0).isObject())
63 return throwTypeError(exec);
65 PassRefPtr<JSCustomVoidCallback> callback = JSCustomVoidCallback::create(exec->argument(0).getObject(), toJSDOMGlobalObject(static_cast<Document*>(context), exec));
H A DJSIDBKeyCustom.cpp40 JSValue toJS(ExecState* exec, JSDOMGlobalObject*, IDBKey* key) argument
51 return jsString(exec, key->string());
H A DCallbackFunction.cpp34 bool checkFunctionOnlyCallback(JSC::ExecState* exec, JSC::JSValue value, CallbackAllowedValueFlags acceptedValues) argument
44 setDOMException(exec, TYPE_MISMATCH_ERR);
H A DJSCDATASectionCustom.cpp35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, CDATASection* section) argument
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, CDATASection, section);
H A DJSCSSValueCustom.cpp47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSValue* value) argument
52 JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), value);
58 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WebKitCSSTransformValue, value);
60 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSValueList, value);
63 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPaint, value);
65 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGColor, value);
68 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSPrimitiveValue, value);
70 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSValue, value);
H A DJSCanvasRenderingContextCustom.cpp40 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, CanvasRenderingContext* object) argument
47 return wrap<JSWebGLRenderingContext>(exec, globalObject, static_cast<WebGLRenderingContext*>(object));
50 return wrap<JSCanvasRenderingContext2D>(exec, globalObject, static_cast<CanvasRenderingContext2D*>(object));
H A DJSEntryCustom.cpp47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Entry* entry) argument
53 return getDOMObjectWrapper<JSFileEntry>(exec, globalObject, static_cast<FileEntry*>(entry));
56 return getDOMObjectWrapper<JSDirectoryEntry>(exec, globalObject, static_cast<DirectoryEntry*>(entry));
H A DJSEntrySyncCustom.cpp47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, EntrySync* entry) argument
53 return getDOMObjectWrapper<JSFileEntrySync>(exec, globalObject, static_cast<FileEntrySync*>(entry));
56 return getDOMObjectWrapper<JSDirectoryEntrySync>(exec, globalObject, static_cast<DirectoryEntrySync*>(entry));
H A DJSEventSourceCustom.cpp47 EncodedJSValue JSC_HOST_CALL JSEventSourceConstructor::constructJSEventSource(ExecState* exec) argument
49 if (exec->argumentCount() < 1)
50 return throwVMError(exec, createSyntaxError(exec, "Not enough arguments"));
52 UString url = exec->argument(0).toString(exec);
53 if (exec->hadException())
56 JSEventSourceConstructor* jsConstructor = static_cast<JSEventSourceConstructor*>(exec->callee());
59 return throwVMError(exec, createReferenceError(exec, "EventSourc
[all...]
H A DJSHTMLElementCustom.cpp36 ScopeChainNode* JSHTMLElement::pushEventHandlerScope(ExecState* exec, ScopeChainNode* scope) const argument
41 scope = scope->push(asObject(toJS(exec, globalObject(), element->ownerDocument())));
45 scope = scope->push(asObject(toJS(exec, globalObject(), form)));
48 return scope->push(asObject(toJS(exec, globalObject(), element)));
H A DJSIDBAnyCustom.cpp54 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, IDBAny* idbAny) argument
65 return toJS(exec, globalObject, idbAny->idbCursor());
67 return toJS(exec, globalObject, idbAny->idbDatabase());
69 return toJS(exec, globalObject, idbAny->idbFactory());
71 return toJS(exec, globalObject, idbAny->idbIndex());
73 return toJS(exec, globalObject, idbAny->idbKey());
75 return toJS(exec, globalObject, idbAny->idbObjectStore());
77 return toJS(exec, globalObject, idbAny->idbTransaction());
79 return idbAny->serializedScriptValue()->deserialize(exec, globalObject);
H A DJSSVGPathSegCustom.cpp61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object) argument
66 if (JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), object))
71 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegClosePath, object);
73 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoAbs, object);
75 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoRel, object);
77 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoAbs, object);
79 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoRel, object);
81 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegCurvetoCubicAbs, object);
83 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegCurvetoCubicRel, object);
85 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObjec
[all...]
H A DJSTextCustom.cpp35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Text* text) argument
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, Text, text);
H A DJSTouchCustom.cpp37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Touch* touch) argument
42 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, Touch, touch);
H A DJSTouchListCustom.cpp37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, TouchList* touchList) argument
42 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, TouchList, touchList);
/external/icu4c/test/intltest/
H A Ditrbbi.cpp27 if (exec) { \
36 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
38 if (exec) logln("TestSuite RuleBasedBreakIterator: ");
H A Dittrans.cpp30 if (exec) { \
37 void IntlTestTransliterator::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
39 if (exec) logln("TestSuite Transliterator");
H A Ditmajor.cpp43 if(exec) { \
50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
54 if (exec) {
63 if (exec) {
73 if (exec) {
83 if (exec) {
93 if (exec) {
103 if (exec) {
113 if (exec) {
122 if (exec) {
214 runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
[all...]
/external/v8/test/mjsunit/bugs/
H A Dbug-617.js36 RegExp.prototype.exec = make_sure_we_dont_get_here;
40 re.exec = make_sure_we_dont_get_here;
/external/webkit/Source/JavaScriptCore/API/
H A DJSProfilerPrivate.cpp42 ExecState* exec = toJS(ctx); local
44 profiler->stopProfiling(exec, title->ustring());
/external/webkit/Source/JavaScriptCore/runtime/
H A DConstructData.cpp36 JSObject* construct(ExecState* exec, JSValue constructorObject, ConstructType constructType, const ConstructData& constructData, const ArgList& args) argument
39 return exec->interpreter()->executeConstruct(exec, asObject(constructorObject), constructType, constructData, args);
H A DError.h71 inline EncodedJSValue throwVMError(ExecState* exec, JSValue error) { return JSValue::encode(throwError(exec, error)); } argument
72 inline EncodedJSValue throwVMTypeError(ExecState* exec) { return JSValue::encode(throwTypeError(exec)); } argument
74 JSValue createTypeErrorFunction(ExecState* exec, const UString& message);
H A DNativeErrorPrototype.cpp34 NativeErrorPrototype::NativeErrorPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const UString& nameAndMessage, NativeErrorConstructor* constructor) argument
37 putDirect(exec->globalData(), exec->propertyNames().name, jsString(exec, nameAndMessage), 0);
38 putDirect(exec->globalData(), exec->propertyNames().message, jsString(exec, nameAndMessage), 0);
39 putDirect(exec->globalData(), exec->propertyNames().constructor, constructor, DontEnum);

Completed in 167 milliseconds

1234567891011>>