Searched defs:startingLineNumber (Results 1 - 3 of 3) sorted by relevance

/external/webkit/JavaScriptCore/API/
H A DJSBase.cpp44 JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
53 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
69 bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
74 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
H A DJSObjectRef.cpp115 JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef name, unsigned parameterCount, const JSStringRef parameterNames[], JSStringRef body, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
127 JSObject* result = constructFunction(exec, args, nameID, sourceURL->ustring(), startingLineNumber);
/external/webkit/JavaScriptCore/profiler/
H A DProfiler.cpp115 void Profiler::willExecute(ExecState* exec, const UString& sourceURL, int startingLineNumber) argument
119 CallIdentifier callIdentifier = createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumber);
131 void Profiler::didExecute(ExecState* exec, const UString& sourceURL, int startingLineNumber) argument
135 dispatchFunctionToProfiles(m_currentProfiles, &ProfileGenerator::didExecute, createCallIdentifier(exec, JSValue(), sourceURL, startingLineNumber), exec->lexicalGlobalObject()->profileGroup());

Completed in 307 milliseconds