OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptSourceCode
(Results
1 - 25
of
36
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentationCustomInl.h
40
PassOwnPtr<
ScriptSourceCode
> preprocessImpl(InstrumentingAgents*, LocalFrame*, const
ScriptSourceCode
&);
72
inline PassOwnPtr<
ScriptSourceCode
> preprocess(LocalFrame* frame, const
ScriptSourceCode
& sourceCode)
74
FAST_RETURN_IF_NO_FRONTENDS(PassOwnPtr<
ScriptSourceCode
>());
77
return PassOwnPtr<
ScriptSourceCode
>();
PageDebuggerAgent.h
45
class
ScriptSourceCode
;
InspectorInstrumentation.cpp
135
PassOwnPtr<
ScriptSourceCode
> preprocessImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* frame, const
ScriptSourceCode
& sourceCode)
139
return PassOwnPtr<
ScriptSourceCode
>();
InspectorDebuggerAgent.h
71
class
ScriptSourceCode
;
105
PassOwnPtr<
ScriptSourceCode
> preprocess(LocalFrame*, const
ScriptSourceCode
&);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPreprocessor.h
41
class
ScriptSourceCode
;
47
ScriptPreprocessor(const
ScriptSourceCode
&, LocalFrame*);
ScriptSourceCode.h
44
class
ScriptSourceCode
{
46
ScriptSourceCode
(const String& source, const KURL& url = KURL(), const TextPosition& startPosition = TextPosition::minimumPosition())
58
ScriptSourceCode
(ScriptResource* resource)
65
ScriptSourceCode
(PassRefPtr<ScriptStreamer> streamer, ScriptResource* resource)
ScriptController.h
57
class
ScriptSourceCode
;
85
void executeScriptInMainWorld(const
ScriptSourceCode
&, AccessControlStatus = NotSharableCrossOrigin, double* compilationFinishTime = 0);
86
v8::Local<v8::Value> executeScriptInMainWorldAndReturnValue(const
ScriptSourceCode
&);
87
v8::Local<v8::Value> executeScriptAndReturnValue(v8::Handle<v8::Context>, const
ScriptSourceCode
&, AccessControlStatus = NotSharableCrossOrigin, double* compilationFinishTime = 0);
97
void executeScriptInIsolatedWorld(int worldID, const Vector<
ScriptSourceCode
>& sources, int extensionGroup, Vector<v8::Local<v8::Value> >* results);
156
v8::Local<v8::Value> evaluateScriptInMainWorld(const
ScriptSourceCode
&, AccessControlStatus, ExecuteScriptPolicy, double* compilationFinishTime = 0);
PageScriptDebugServer.h
45
class
ScriptSourceCode
;
72
virtual PassOwnPtr<
ScriptSourceCode
> preprocess(LocalFrame*, const
ScriptSourceCode
&) OVERRIDE;
93
OwnPtr<
ScriptSourceCode
> m_preprocessorSourceCode;
WorkerScriptController.h
45
class
ScriptSourceCode
;
55
void evaluate(const
ScriptSourceCode
&, RefPtrWillBeRawPtr<ErrorEvent>* = 0);
ScheduledAction.h
35
#include "bindings/core/v8/
ScriptSourceCode
.h"
64
ScriptSourceCode
m_code;
ScriptPreprocessor.cpp
35
#include "bindings/core/v8/
ScriptSourceCode
.h"
47
ScriptPreprocessor::ScriptPreprocessor(const
ScriptSourceCode
& preprocessorSourceCode, LocalFrame* frame)
57
Vector<
ScriptSourceCode
> sources;
63
frame->console().addMessage(ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, "ScriptPreprocessor internal error, one
ScriptSourceCode
must give exactly one result."));
V8ScriptRunner.h
39
class
ScriptSourceCode
;
47
static v8::Local<v8::Script> compileScript(const
ScriptSourceCode
&, v8::Isolate*, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOptionsOff);
ScriptStreamerTest.cpp
9
#include "bindings/core/v8/
ScriptSourceCode
.h"
163
ScriptSourceCode
sourceCode = pendingScript().getSource(KURL(), errorOccurred);
196
ScriptSourceCode
sourceCode = pendingScript().getSource(KURL(), errorOccurred);
251
ScriptSourceCode
sourceCode = pendingScript().getSource(KURL(), errorOccurred);
253
//
ScriptSourceCode
doesn't refer to the streamer, since we have suppressed
275
ScriptSourceCode
sourceCode = pendingScript().getSource(KURL(), errorOccurred);
PageScriptDebugServer.cpp
36
#include "bindings/core/v8/
ScriptSourceCode
.h"
82
m_preprocessorSourceCode = adoptPtr(new
ScriptSourceCode
(preprocessorSource));
294
PassOwnPtr<
ScriptSourceCode
> PageScriptDebugServer::preprocess(LocalFrame* frame, const
ScriptSourceCode
& sourceCode)
297
return PassOwnPtr<
ScriptSourceCode
>();
300
return adoptPtr(new
ScriptSourceCode
(preprocessedSource, sourceCode.url()));
ScriptController.cpp
39
#include "bindings/core/v8/
ScriptSourceCode
.h"
169
v8::Local<v8::Value> ScriptController::executeScriptAndReturnValue(v8::Handle<v8::Context> context, const
ScriptSourceCode
& source, AccessControlStatus corsStatus, double* compilationFinishTime)
549
v8::Local<v8::Value> result = evaluateScriptInMainWorld(
ScriptSourceCode
(decodedURL.substring(javascriptSchemeLength)), NotSharableCrossOrigin, DoNotExecuteScriptWhenScriptsDisabled);
572
evaluateScriptInMainWorld(
ScriptSourceCode
(script), NotSharableCrossOrigin, policy);
575
void ScriptController::executeScriptInMainWorld(const
ScriptSourceCode
& sourceCode, AccessControlStatus corsStatus, double* compilationFinishTime)
581
v8::Local<v8::Value> ScriptController::executeScriptInMainWorldAndReturnValue(const
ScriptSourceCode
& sourceCode)
586
v8::Local<v8::Value> ScriptController::evaluateScriptInMainWorld(const
ScriptSourceCode
& sourceCode, AccessControlStatus corsStatus, ExecuteScriptPolicy policy, double* compilationFinishTime)
607
OwnPtr<
ScriptSourceCode
> maybeProcessedSourceCode = InspectorInstrumentation::preprocess(m_frame, sourceCode);
608
const
ScriptSourceCode
& sourceCodeToCompile = maybeProcessedSourceCode ? *maybeProcessedSourceCode : sourceCode;
619
void ScriptController::executeScriptInIsolatedWorld(int worldID, const Vector<
ScriptSourceCode
>& sources, int extensionGroup, Vector<v8::Local<v8::Value> >* results
[
all
...]
ScriptDebugServer.h
52
class
ScriptSourceCode
;
111
virtual PassOwnPtr<
ScriptSourceCode
> preprocess(LocalFrame*, const
ScriptSourceCode
&);
ScheduledAction.cpp
35
#include "bindings/core/v8/
ScriptSourceCode
.h"
106
frame->script().executeScriptAndReturnValue(m_scriptState->context(),
ScriptSourceCode
(m_code));
/external/chromium_org/third_party/WebKit/Source/core/dom/
PendingScript.cpp
29
#include "bindings/core/v8/
ScriptSourceCode
.h"
101
ScriptSourceCode
PendingScript::getSource(const KURL& documentURL, bool& errorOccurred) const
107
return
ScriptSourceCode
(m_streamer, resource());
108
return
ScriptSourceCode
(resource());
111
return
ScriptSourceCode
(m_element->textContent(), documentURL, startingPosition());
PendingScript.h
40
class
ScriptSourceCode
;
112
ScriptSourceCode
getSource(const KURL& documentURL, bool& errorOccurred) const;
ScriptLoader.h
35
class
ScriptSourceCode
;
50
void executeScript(const
ScriptSourceCode
&, double* compilationFinishTime = 0);
ScriptLoader.cpp
28
#include "bindings/core/v8/
ScriptSourceCode
.h"
247
executeScript(
ScriptSourceCode
(scriptContent(), scriptURL, position));
298
void ScriptLoader::executeScript(const
ScriptSourceCode
& sourceCode, double* compilationFinishTime)
376
executeScript(
ScriptSourceCode
(resource));
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.h
44
class
ScriptSourceCode
;
HTMLScriptRunner.cpp
29
#include "bindings/core/v8/
ScriptSourceCode
.h"
128
ScriptSourceCode
sourceCode = pendingScript.getSource(documentURLForScriptExecution(m_document), errorOccurred);
332
ScriptSourceCode
sourceCode(script->textContent(), documentURLForScriptExecution(m_document), scriptStartPosition);
HTMLDocumentParser.h
64
class
ScriptSourceCode
;
/external/chromium_org/third_party/WebKit/Source/web/tests/
ActivityLoggerTest.cpp
81
Vector<
ScriptSourceCode
> sources;
82
sources.append(
ScriptSourceCode
(script));
Completed in 906 milliseconds
1
2