Searched refs:sourceURL (Results 26 - 50 of 86) sorted by relevance

1234

/external/webkit/Source/WebCore/inspector/
H A DInspectorProfilerAgent.h62 void addProfile(PassRefPtr<ScriptProfile> prpProfile, unsigned lineNumber, const String& sourceURL);
63 void addProfileFinishedMessageToConsole(PassRefPtr<ScriptProfile>, unsigned lineNumber, const String& sourceURL);
64 void addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL);
H A DInspectorConsoleAgent.h79 void addProfileFinishedMessageToConsole(PassRefPtr<ScriptProfile>, unsigned lineNumber, const String& sourceURL);
80 void addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL);
H A DInspectorProfilerAgent.cpp91 void InspectorProfilerAgent::addProfile(PassRefPtr<ScriptProfile> prpProfile, unsigned lineNumber, const String& sourceURL) argument
97 addProfileFinishedMessageToConsole(profile, lineNumber, sourceURL);
100 void InspectorProfilerAgent::addProfileFinishedMessageToConsole(PassRefPtr<ScriptProfile> prpProfile, unsigned lineNumber, const String& sourceURL) argument
107 m_consoleAgent->addMessageToConsole(JSMessageSource, LogMessageType, LogMessageLevel, message, lineNumber, sourceURL);
110 void InspectorProfilerAgent::addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL) argument
115 m_consoleAgent->addMessageToConsole(JSMessageSource, LogMessageType, LogMessageLevel, message, lineNumber, sourceURL);
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/WebCore/dom/
H A DScriptExecutionContext.cpp75 PendingException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) argument
78 , m_sourceURL(sourceURL)
310 bool ScriptExecutionContext::sanitizeScriptError(String& errorMessage, int& lineNumber, String& sourceURL) argument
312 KURL targetURL = completeURL(sourceURL);
316 sourceURL = String();
321 void ScriptExecutionContext::reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) argument
326 m_pendingExceptions->append(adoptPtr(new PendingException(errorMessage, lineNumber, sourceURL, callStack)));
331 if (!dispatchErrorEvent(errorMessage, lineNumber, sourceURL))
332 logExceptionToConsole(errorMessage, lineNumber, sourceURL, callStack);
344 bool ScriptExecutionContext::dispatchErrorEvent(const String& errorMessage, int lineNumber, const String& sourceURL) argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
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 DWorkerScriptController.cpp143 String sourceURL = sourceCode.url().string(); local
144 if (m_workerContext->sanitizeScriptError(errorMessage, lineNumber, sourceURL))
/external/webkit/Source/WebCore/workers/
H A DWorkerMessagingProxy.h65 virtual void postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL);
66 virtual void postConsoleMessageToWorkerObject(MessageSource, MessageType, MessageLevel, const String& message, int lineNumber, const String& sourceURL);
H A DDefaultSharedWorkerRepository.cpp82 virtual void postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL);
83 virtual void postConsoleMessageToWorkerObject(MessageSource, MessageType, MessageLevel, const String& message, int lineNumber, const String& sourceURL);
157 static void postExceptionTask(ScriptExecutionContext* context, const String& errorMessage, int lineNumber, const String& sourceURL) argument
159 context->reportException(errorMessage, lineNumber, sourceURL, 0);
162 void SharedWorkerProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL) argument
166 (*iter)->postTask(createCallbackTask(&postExceptionTask, errorMessage, lineNumber, sourceURL));
169 static void postConsoleMessageTask(ScriptExecutionContext* document, MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceURL) argument
171 document->addMessage(source, type, level, message, lineNumber, sourceURL, 0);
174 void SharedWorkerProxy::postConsoleMessageToWorkerObject(MessageSource source, MessageType type, MessageLevel level, const String& message, int lineNumber, const String& sourceURL) argument
178 (*iter)->postTask(createCallbackTask(&postConsoleMessageTask, source, type, level, message, lineNumber, sourceURL));
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerBase.cpp288 const String& sourceURL)
292 sourceURL));
298 int lineNumber, const String& sourceURL)
305 sourceURL);
313 const String& sourceURL)
317 message, lineNumber, sourceURL));
326 const String& sourceURL)
332 lineNumber, sourceURL);
286 postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL) argument
295 postExceptionTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, const String& errorMessage, int lineNumber, const String& sourceURL) argument
308 postConsoleMessageToWorkerObject(MessageSource source, MessageType type, MessageLevel level, const String& message, int lineNumber, const String& sourceURL) argument
320 postConsoleMessageTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, int source, int type, int level, const String& message, int lineNumber, const String& sourceURL) argument
H A DWebWorkerClientImpl.h134 const WTF::String& sourceURL);
142 const WTF::String& sourceURL);
/external/webkit/Source/JavaScriptCore/profiler/
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());
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());
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptController.cpp191 const String* sourceURL = activeFrame->script()->sourceURL(); local
192 if (sourceURL && sourceURL->isNull() && !activeProxy->timerCallback()) {
222 String sourceURL = sourceCode.url(); local
224 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))
H A DWorkerContextExecutionProxy.h56 String sourceURL; member in struct:WebCore::WorkerContextExecutionState
H A DWorkerScriptController.cpp80 m_workerContext->reportException(state.errorMessage, state.lineNumber, state.sourceURL, 0);
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)
/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);
/external/webkit/Source/WebCore/page/
H A DConsole.h89 void addMessage(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceURL);
90 void addMessage(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack);
/external/webkit/Tools/MiniBrowser/mac/
H A DAppDelegate.m80 static void didPerformClientRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
82 CFURLRef cfSourceURL = WKURLCopyCFURL(0, sourceURL);
84 LOG(@"HistoryClient - didPerformClientRedirect - sourceURL: %@ - destinationURL: %@", cfSourceURL, cfDestinationURL);
89 static void didPerformServerRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
91 CFURLRef cfSourceURL = WKURLCopyCFURL(0, sourceURL);
93 LOG(@"HistoryClient - didPerformServerRedirect - sourceURL: %@ - destinationURL: %@", cfSourceURL, cfDestinationURL);
/external/webkit/Source/WebCore/inspector/front-end/
H A DSourceFile.js35 if (script.sourceURL)
36 this._resource = WebInspector.networkManager.inflightResourceForURL(script.sourceURL) || WebInspector.resourceForURL(script.sourceURL);
40 this.url = script.sourceURL;
H A DDebuggerPresentationModel.js99 var sourceFileId = this._createSourceFileId(script.sourceURL, script.sourceID);
326 if (script.sourceURL)
327 WebInspector.debuggerModel.setBreakpoint(script.sourceURL, location.lineNumber, location.columnNumber, breakpoint.condition, didSetBreakpoint.bind(this));
525 sourceFile = this._sourceFileForScript(script.sourceURL, script.sourceID);
553 _sourceFileForScript: function(sourceURL, sourceID)
555 return this._sourceFiles[this._createSourceFileId(sourceURL, sourceID)];
562 return this._createSourceFileId(script.sourceURL, script.sourceID) === sourceFileId;
567 _createSourceFileId: function(sourceURL, sourceID)
570 return prefix + (sourceURL || sourceID);
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DNetscapePluginHostManager.h47 PassRefPtr<NetscapePluginInstanceProxy> instantiatePlugin(const WTF::String& pluginPath, cpu_type_t pluginArchitecture, const WTF::String& bundleIdentifier, WebHostedNetscapePluginView *, NSString *mimeType, NSArray *attributeKeys, NSArray *attributeValues, NSString *userAgent, NSURL *sourceURL, bool fullFrame, bool isPrivateBrowsingEnabled, bool isAcceleratedCompositingEnabled);
/external/webkit/Source/WebCore/platform/chromium/
H A DChromiumDataObject.cpp162 KURL sourceURL; local
163 PlatformBridge::clipboardReadHTML(buffer, &htmlText, &sourceURL);

Completed in 2698 milliseconds

1234