Searched refs:sourceURL (Results 1 - 25 of 51) sorted by relevance

123

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DHistoryClient.mm55 void HistoryClient::didPerformClientRedirect(WebContext*, WebPageProxy* webPageProxy, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy* webFrameProxy)
62 navigationState.didPerformClientRedirect(sourceURL, destinationURL);
65 void HistoryClient::didPerformServerRedirect(WebContext*, WebPageProxy* webPageProxy, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy* webFrameProxy)
72 navigationState.didPerformServerRedirect(sourceURL, destinationURL);
H A DHistoryClient.h45 virtual void didPerformClientRedirect(WebContext*, WebPageProxy*, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy*) override;
46 virtual void didPerformServerRedirect(WebContext*, WebPageProxy*, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy*) override;
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebHistoryDelegate.h36 - (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame;
38 - (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBrowsingContextHistoryDelegate.h38 - (void)browsingContextController:(WKBrowsingContextController *)browsingContextController didPerformClientRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
39 - (void)browsingContextController:(WKBrowsingContextController *)browsingContextController didPerformServerRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
H A DWKHistoryDelegatePrivate.h40 - (void)_webView:(WKWebView *)webView didPerformClientRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
41 - (void)_webView:(WKWebView *)webView didPerformServerRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/efl/
H A DContextHistoryClientEfl.h44 static void didPerformClientRedirect(WKContextRef, WKPageRef, WKURLRef sourceURL, WKURLRef, WKFrameRef, const void*);
45 static void didPerformServerRedirect(WKContextRef, WKPageRef, WKURLRef sourceURL, WKURLRef, WKFrameRef, const void*);
H A DContextHistoryClientEfl.cpp59 void ContextHistoryClientEfl::didPerformClientRedirect(WKContextRef, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef, const void* clientInfo) argument
66 WKEinaSharedString sourceURLString(sourceURL);
72 void ContextHistoryClientEfl::didPerformServerRedirect(WKContextRef, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef, const void* clientInfo) argument
79 WKEinaSharedString sourceURLString(sourceURL);
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DIWebHistoryDelegate.idl45 HRESULT didPerformClientRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame);
46 HRESULT didPerformServerRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame);
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DLegacyProfiler.h51 static CallIdentifier createCallIdentifier(ExecState*, JSValue, const WTF::String& sourceURL, unsigned defaultLineNumber, unsigned defaultColumnNumber);
58 void willExecute(ExecState* callerCallFrame, const WTF::String& sourceURL, unsigned startingLineNumber, unsigned startingColumnNumber);
60 void didExecute(ExecState* callerCallFrame, const WTF::String& sourceURL, unsigned startingLineNumber, unsigned startingColumnNumber);
H A DLegacyProfiler.cpp132 void LegacyProfiler::willExecute(ExecState* callerCallFrame, const String& sourceURL, unsigned startingLineNumber, unsigned startingColumnNumber) argument
136 CallIdentifier callIdentifier = createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber, startingColumnNumber);
148 void LegacyProfiler::didExecute(ExecState* callerCallFrame, const String& sourceURL, unsigned startingLineNumber, unsigned startingColumnNumber) argument
152 dispatchFunctionToProfiles(callerCallFrame, m_currentProfiles, &ProfileGenerator::didExecute, createCallIdentifier(callerCallFrame, JSValue(), sourceURL, startingLineNumber, startingColumnNumber), callerCallFrame->lexicalGlobalObject()->profileGroup());
178 return CallIdentifier(name.isEmpty() ? ASCIILiteral(AnonymousFunction) : name, jsFunction->jsExecutable()->sourceURL(), jsFunction->jsExecutable()->lineNo(), jsFunction->jsExecutable()->startColumn());
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DScriptCallFrame.h50 const String& sourceURL() const { return m_scriptName; } function in class:Inspector::ScriptCallFrame
H A DScriptCallStackFactory.cpp71 m_frames.append(ScriptCallFrame(visitor->functionName(), visitor->sourceURL(), line, column));
119 static void extractSourceInformationFromException(JSC::ExecState* exec, JSObject* exceptionObject, int* lineNumber, int* columnNumber, String* sourceURL) argument
126 JSValue sourceURLValue = exceptionObject->getDirect(exec->vm(), Identifier(exec, "sourceURL"));
127 *sourceURL = sourceURLValue && sourceURLValue.isString() ? sourceURLValue.toString(exec)->value(exec) : String("undefined");
143 // Fallback to getting at least the line and sourceURL from the exception object if it has values and the exceptionStack doesn't.
153 if (stackTrace[0].sourceURL.isEmpty()) {
H A DScriptDebugListener.h60 String sourceURL; member in class:Inspector::ScriptDebugListener::Script
H A DScriptCallStack.cpp80 if (frame.sourceURL() != "[native code]")
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSBase.h104 @param sourceURL A JSString containing a URL for the script's source file. This is used by debuggers and when reporting exceptions. Pass NULL if you do not care to include source file information.
105 @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when reporting exceptions. The value is one-based, so the first line is line 1 and invalid values are clamped to 1.
109 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
116 @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care to include source file information in exceptions.
117 @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when reporting exceptions. The value is one-based, so the first line is line 1 and invalid values are clamped to 1.
121 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
H A DJSBase.cpp48 JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
63 SourceCode source = makeSource(script->string(), sourceURL->string(), TextPosition(OrdinalNumber::fromOneBasedInt(startingLineNumber), OrdinalNumber::first()));
89 bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
100 SourceCode source = makeSource(script->string(), sourceURL->string(), TextPosition(OrdinalNumber::fromOneBasedInt(startingLineNumber), OrdinalNumber::first()));
H A DJSContext.h87 @param sourceURL A URL for the script's source file. Used by debuggers and when reporting exceptions. This parameter is informative only: it does not change the behavior of the script.
90 - (JSValue *)evaluateScript:(NSString *)script withSourceURL:(NSURL *)sourceURL NS_AVAILABLE(10_10, 8_0);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKContextHistoryClient.h32 typedef void (*WKContextDidPerformClientRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo);
33 typedef void (*WKContextDidPerformServerRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DSourceMap.js101 sourceContent: function(sourceURL)
103 return this._sourceContentByURL[sourceURL];
143 findEntryReversed: function(sourceURL, lineNumber)
145 var mappings = this._reverseMappingsBySourceURL[sourceURL];
180 var sourceURL = sources[sourceIndex]; variable
204 sourceURL = sources[sourceIndex];
211 this._mappings.push([lineNumber, columnNumber, sourceURL, sourceLineNumber, sourceColumnNumber]);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DFunctionConstructor.cpp82 JSObject* constructFunction(ExecState* exec, JSGlobalObject* globalObject, const ArgList& args, const Identifier& functionName, const String& sourceURL, const TextPosition& position) argument
86 return constructFunctionSkippingEvalEnabledCheck(exec, globalObject, args, functionName, sourceURL, position);
89 JSObject* constructFunctionSkippingEvalEnabledCheck(ExecState* exec, JSGlobalObject* globalObject, const ArgList& args, const Identifier& functionName, const String& sourceURL, const TextPosition& position) argument
113 SourceCode source = makeSource(program, sourceURL, position);
H A DError.cpp45 static const char* sourceURLPropertyName = "sourceURL";
137 const String& sourceURL = source.provider()->url(); local
141 if (!sourceURL.isNull())
142 error->putDirect(*vm, Identifier(vm, sourceURLPropertyName), jsString(vm, sourceURL), ReadOnly | DontDelete);
H A DFunctionConstructor.h59 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&, const Identifier& functionName, const String& sourceURL, const WTF::TextPosition&);
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DStackVisitor.cpp201 String StackVisitor::Frame::sourceURL() function in class:JSC::StackVisitor::Frame
209 String sourceURL = codeBlock()->ownerExecutable()->sourceURL(); local
210 if (!sourceURL.isEmpty())
211 traceLine = sourceURL.impl();
225 String sourceURL = this->sourceURL(); local
227 if (!sourceURL.isEmpty()) {
230 traceBuild.append(sourceURL);
382 printif(i, " sourceURL '
[all...]
H A DInterpreter.h90 String sourceURL; member in struct:JSC::StackFrame
100 if (!sourceURL.isEmpty())
101 traceLine = sourceURL.impl();
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/Hosted/
H A DNetscapePluginHostManager.h47 PassRefPtr<NetscapePluginInstanceProxy> instantiatePlugin(const String& pluginPath, cpu_type_t pluginArchitecture, const String& bundleIdentifier, WebHostedNetscapePluginView *, NSString *mimeType, NSArray *attributeKeys, NSArray *attributeValues, NSString *userAgent, NSURL *sourceURL, bool fullFrame, bool isPrivateBrowsingEnabled, bool isAcceleratedCompositingEnabled, bool hostLayersInWindowServer);

Completed in 133 milliseconds

123