Searched defs:sourceURL (Results 1 - 25 of 46) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/js/
H A DScriptEventListener.cpp60 String sourceURL; local
69 sourceURL = node->document()->url().string();
72 return JSLazyEventListener::create(attr->localName().string(), eventParameterName(node->isSVGElement()), attr->value(), node, sourceURL, lineNumber, 0, mainThreadNormalWorld());
85 String sourceURL; local
92 sourceURL = frame->document()->url().string();
94 return JSLazyEventListener::create(attr->localName().string(), eventParameterName(frame->document()->isSVGDocument()), attr->value(), 0, sourceURL, lineNumber, wrapper, mainThreadNormalWorld());
H A DJSLazyEventListener.cpp39 JSLazyEventListener::JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSObject* wrapper, DOMWrapperWorld* isolatedWorld) argument
44 , m_sourceURL(sourceURL)
H A DJSLazyEventListener.h32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld) argument
34 return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper, isolatedWorld));
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
H A DJSXMLHttpRequestCustom.cpp133 UString sourceURL; local
135 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function);
137 impl()->setLastSendURL(ustringToString(sourceURL));
H A DWorkerScriptController.cpp143 String sourceURL = sourceCode.url().string(); local
144 if (m_workerContext->sanitizeScriptError(errorMessage, lineNumber, sourceURL))
H A DScriptController.h128 const String* sourceURL() const { return m_sourceURL; } // 0 if we are not evaluating any script function in class:WebCore::ScriptController
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerContextExecutionProxy.h56 String sourceURL; member in struct:WebCore::WorkerContextExecutionState
H A DScriptEventListener.cpp54 String sourceURL; local
62 sourceURL = node->document()->url().string();
65 return V8LazyEventListener::create(attr->localName().string(), node->isSVGElement(), attr->value(), sourceURL, position, WorldContextHandle(UseMainWorld));
82 String sourceURL = frame->document()->url().string(); local
83 return V8LazyEventListener::create(attr->localName().string(), frame->document()->isSVGDocument(), attr->value(), sourceURL, position, WorldContextHandle(UseMainWorld));
H A DV8LazyEventListener.h49 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext) argument
51 return adoptRef(new V8LazyEventListener(functionName, isSVGEvent, code, sourceURL, position, worldContext));
60 V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext);
H A DScriptController.h162 const String* sourceURL() const { return m_sourceURL; } // 0 if we are not evaluating any script. function in class:WebCore::ScriptController
H A DV8LazyEventListener.cpp45 V8LazyEventListener::V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext) argument
50 , m_sourceURL(sourceURL)
H A DWorkerContextExecutionProxy.cpp75 String sourceURL = toWebCoreString(message->GetScriptResourceName()); local
76 context->reportException(errorMessage, lineNumber, sourceURL, 0);
216 state->sourceURL = toWebCoreString(message->GetScriptResourceName());
217 if (m_workerContext->sanitizeScriptError(state->errorMessage, state->lineNumber, state->sourceURL))
/external/webkit/Source/WebCore/inspector/
H A DScriptCallFrame.h47 const String& sourceURL() const { return m_scriptName; } function in class:WebCore::ScriptCallFrame
H A DInspectorConsoleInstrumentation.h90 inline void InspectorInstrumentation::addStartProfilingMessageToConsole(Page* page, const String& title, unsigned lineNumber, const String& sourceURL) argument
94 addStartProfilingMessageToConsoleImpl(inspectorAgent, title, lineNumber, sourceURL);
/external/webkit/Source/WebKit/chromium/public/
H A DWebCommonWorkerClient.h56 const WebString& sourceURL) = 0;
62 const WebString& message, int lineNumber, const WebString& sourceURL) = 0;
65 const WebString& message, int lineNumber, const WebString& sourceURL)
68 message, lineNumber, sourceURL);
64 postConsoleMessageToWorkerObject(int sourceIdentifier, int messageType, int messageLevel, const WebString& message, int lineNumber, const WebString& sourceURL) argument
/external/webkit/Source/WebKit2/UIProcess/
H A DWebHistoryClient.cpp46 void WebHistoryClient::didPerformClientRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
51 m_client.didPerformClientRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
54 void WebHistoryClient::didPerformServerRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
59 m_client.didPerformServerRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
/external/webkit/Source/JavaScriptCore/API/
H A DJSBase.cpp45 JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
54 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
70 bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
75 SourceCode source = makeSource(script->ustring(), sourceURL->ustring(), startingLineNumber);
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileGenerator.cpp62 UString sourceURL; local
65 exec->interpreter()->retrieveLastCaller(exec, lineNumber, sourceID, sourceURL, function);
66 m_currentNode = ProfileNode::create(exec, Profiler::createCallIdentifier(exec, function ? function.toThisObject(exec) : 0, sourceURL, lineNumber), m_head.get(), m_head.get());
H A DProfiler.cpp130 void Profiler::willExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber) argument
134 CallIdentifier callIdentifier = createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber);
146 void Profiler::didExecute(ExecState* callerCallFrame, const UString& sourceURL, int startingLineNumber) argument
150 dispatchFunctionToProfiles(callerCallFrame, m_currentProfiles, &ProfileGenerator::didExecute, createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber), callerCallFrame->lexicalGlobalObject()->profileGroup());
182 return CallIdentifier(name.isEmpty() ? AnonymousFunction : name, function->jsExecutable()->sourceURL(), function->jsExecutable()->lineNo());
/external/webkit/Source/JavaScriptCore/runtime/
H A DFunctionConstructor.cpp75 JSObject* constructFunction(ExecState* exec, JSGlobalObject* globalObject, const ArgList& args, const Identifier& functionName, const UString& sourceURL, int lineNumber) argument
100 SourceCode source = makeSource(program, sourceURL, lineNumber);
H A DError.cpp40 static const char* sourceURLPropertyName = "sourceURL";
122 const UString& sourceURL = source.provider()->url(); local
128 if (!sourceURL.isNull())
129 error->putWithAttributes(globalData, Identifier(globalData, sourceURLPropertyName), jsString(globalData, sourceURL), ReadOnly | DontDelete);
/external/webkit/Source/WebCore/platform/chromium/
H A DChromiumDataObject.cpp162 KURL sourceURL; local
163 PlatformBridge::clipboardReadHTML(buffer, &htmlText, &sourceURL);
H A DChromiumDataObjectLegacy.cpp160 KURL sourceURL; local
161 PlatformBridge::clipboardReadHTML(buffer, &htmlText, &sourceURL);
/external/webkit/Source/WebCore/page/
H A DNavigator.cpp95 const String* sourceURL = frame->script()->sourceURL(); local
96 if (!sourceURL)
98 if (!(sourceURL->endsWith("/dqm_script.js") || sourceURL->endsWith("/dqm_loader.js") || sourceURL->endsWith("/tdqm_loader.js")))
/external/webkit/Tools/DumpRenderTree/win/
H A DHistoryDelegate.cpp152 HRESULT HistoryDelegate::didPerformClientRedirectFromURL(IWebView*, BSTR sourceURL, BSTR destinationURL, IWebFrame*) argument
158 if (sourceURL)
159 source = urlSuitableForTestResult(wstringFromBSTR(sourceURL));
169 HRESULT HistoryDelegate::didPerformServerRedirectFromURL(IWebView* webView, BSTR sourceURL, BSTR destinationURL, IWebFrame* webFrame) argument
175 if (sourceURL)
176 source = urlSuitableForTestResult(wstringFromBSTR(sourceURL));

Completed in 416 milliseconds

12