HomeSort by relevance Sort by last modified time
    Searched defs:sourceURL (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
ScriptEventListener.cpp 60 String sourceURL;
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;
92 sourceURL = frame->document()->url().string();
94 return JSLazyEventListener::create(attr->localName().string(), eventParameterName(frame->document()->isSVGDocument()), attr->value(), 0, sourceURL, lineNumber, wrapper, mainThreadNormalWorld());
WorkerScriptController.cpp 143 String sourceURL = sourceCode.url().string();
144 if (m_workerContext->sanitizeScriptError(errorMessage, lineNumber, sourceURL))
JSXMLHttpRequestCustom.cpp 133 UString sourceURL;
135 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function);
137 impl()->setLastSendURL(ustringToString(sourceURL));
ScriptController.h 128 const String* sourceURL() const { return m_sourceURL; } // 0 if we are not evaluating any script
ScriptController.cpp 121 String sourceURL = ustringToString(jsSourceCode.provider()->url());
133 m_sourceURL = &sourceURL;
139 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL, sourceCode.startLine());
  /external/webkit/Source/WebCore/inspector/
ScriptCallFrame.h 47 const String& sourceURL() const { return m_scriptName; }
  /external/webkit/Source/WebCore/bindings/v8/
ScriptEventListener.cpp 54 String sourceURL;
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();
83 return V8LazyEventListener::create(attr->localName().string(), frame->document()->isSVGDocument(), attr->value(), sourceURL, position, WorldContextHandle(UseMainWorld));
WorkerContextExecutionProxy.h 56 String sourceURL;
ScriptController.h 162 const String* sourceURL() const { return m_sourceURL; } // 0 if we are not evaluating any script.
WorkerContextExecutionProxy.cpp 75 String sourceURL = toWebCoreString(message->GetScriptResourceName());
76 context->reportException(errorMessage, lineNumber, sourceURL, 0);
216 state->sourceURL = toWebCoreString(message->GetScriptResourceName());
217 if (m_workerContext->sanitizeScriptError(state->errorMessage, state->lineNumber, state->sourceURL))
ScriptController.cpp 191 const String* sourceURL = activeFrame->script()->sourceURL();
192 if (sourceURL && sourceURL->isNull() && !activeProxy->timerCallback()) {
222 String sourceURL = sourceCode.url();
224 m_sourceURL = &sourceURL;
  /external/webkit/Source/WebCore/platform/chromium/
ChromiumDataObjectLegacy.cpp 160 KURL sourceURL;
161 PlatformBridge::clipboardReadHTML(buffer, &htmlText, &sourceURL);
ChromiumDataObject.cpp 162 KURL sourceURL;
163 PlatformBridge::clipboardReadHTML(buffer, &htmlText, &sourceURL);
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileGenerator.cpp 62 UString sourceURL;
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/JavaScriptCore/runtime/
Error.cpp 40 static const char* sourceURLPropertyName = "sourceURL";
122 const UString& sourceURL = source.provider()->url();
128 if (!sourceURL.isNull())
129 error->putWithAttributes(globalData, Identifier(globalData, sourceURLPropertyName), jsString(globalData, sourceURL), ReadOnly | DontDelete);
Executable.h 181 const UString& sourceURL() const { return m_source.provider()->url(); }
  /external/webkit/Source/WebCore/page/
Navigator.cpp 95 const String* sourceURL = frame->script()->sourceURL();
96 if (!sourceURL)
98 if (!(sourceURL->endsWith("/dqm_script.js") || sourceURL->endsWith("/dqm_loader.js") || sourceURL->endsWith("/tdqm_loader.js")))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/templates/
SimpleFile.java 99 URL sourceURL = FileLocator.find(bundle, new Path(op.source), null);
100 if (sourceURL == null)
104 TemplatedInputStream in = new TemplatedInputStream(sourceURL.openStream(),
  /external/webkit/Source/WebKit/chromium/src/
WebWorkerClientImpl.cpp 236 const WebString& sourceURL)
243 String(sourceURL)));
248 sourceURL,
251 m_scriptExecutionContext->reportException(errorMessage, lineNumber, sourceURL, 0);
260 const WebString& sourceURL)
270 String(sourceURL)));
278 String(sourceURL), 0);
286 const WebString& sourceURL)
288 postConsoleMessageToWorkerObject(0, sourceId, messageType, messageLevel, message, lineNumber, sourceURL);
377 const String& sourceURL)
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h     [all...]

Completed in 1165 milliseconds