Searched refs:StreamedSource (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/v8/src/
H A Dbackground-parsing-task.h19 // Internal representation of v8::ScriptCompiler::StreamedSource. Contains all
22 struct StreamedSource { struct in namespace:v8::internal
23 StreamedSource(ScriptCompiler::ExternalSourceStream* source_stream, function in struct:v8::internal::StreamedSource
24 ScriptCompiler::StreamedSource::Encoding encoding)
30 // Internal implementation of v8::ScriptCompiler::StreamedSource.
32 ScriptCompiler::StreamedSource::Encoding encoding;
46 StreamedSource(const StreamedSource&);
47 StreamedSource& operator=(const StreamedSource
[all...]
H A Dscanner-character-streams.h84 v8::ScriptCompiler::StreamedSource::Encoding encoding)
109 v8::ScriptCompiler::StreamedSource::Encoding encoding_;
H A Dbackground-parsing-task.cc11 StreamedSource* source, ScriptCompiler::CompileOptions options,
H A Dscanner-character-streams.cc20 ScriptCompiler::StreamedSource::Encoding encoding) {
21 if (encoding == ScriptCompiler::StreamedSource::UTF8) {
29 if (encoding == ScriptCompiler::StreamedSource::ONE_BYTE) {
32 DCHECK(encoding == ScriptCompiler::StreamedSource::TWO_BYTE);
339 if (encoding_ == ScriptCompiler::StreamedSource::UTF8) {
H A Dcompiler.h122 ScriptCompiler::StreamedSource::Encoding source_stream_encoding() const {
400 ScriptCompiler::StreamedSource::Encoding encoding,
453 ScriptCompiler::StreamedSource::Encoding source_stream_encoding_;
537 ScriptCompiler::StreamedSource::Encoding encoding,
H A Dapi.cc1569 ScriptCompiler::StreamedSource::StreamedSource(ExternalSourceStream* stream, function in class:v8::ScriptCompiler::StreamedSource
1571 : impl_(new i::StreamedSource(stream, encoding)) {}
1574 ScriptCompiler::StreamedSource::~StreamedSource() { delete impl_; }
1578 ScriptCompiler::StreamedSource::GetCachedData() const {
1798 Isolate* v8_isolate, StreamedSource* source, CompileOptions options) {
1817 StreamedSource* v8_source,
1821 i::StreamedSource* source = v8_source->impl();
H A Dcompiler.cc125 ScriptCompiler::StreamedSource::Encoding encoding, Isolate* isolate,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptStreamer.h46 v8::ScriptCompiler::StreamedSource* source() { return &m_source; }
99 ScriptStreamer(ScriptResource*, v8::ScriptCompiler::StreamedSource::Encoding, PendingScript::Type);
117 v8::ScriptCompiler::StreamedSource m_source;
H A DScriptStreamer.cpp325 ScriptStreamer::ScriptStreamer(ScriptResource* resource, v8::ScriptCompiler::StreamedSource::Encoding encoding, PendingScript::Type scriptType)
398 v8::ScriptCompiler::StreamedSource::Encoding encoding;
402 encoding = v8::ScriptCompiler::StreamedSource::ONE_BYTE;
404 encoding = v8::ScriptCompiler::StreamedSource::UTF8;
/external/chromium_org/v8/include/
H A Dv8.h133 struct StreamedSource;
1124 * StreamedSource must be kept alive while the streaming task is ran (see
1127 class V8_EXPORT StreamedSource { class in class:v8::ScriptCompiler
1131 StreamedSource(ExternalSourceStream* source_stream, Encoding encoding);
1132 ~StreamedSource();
1135 // caller. The CachedData object is alive as long as the StreamedSource
1139 internal::StreamedSource* impl() const { return impl_; }
1143 StreamedSource(const StreamedSource&);
1144 StreamedSource
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc23078 v8::ScriptCompiler::StreamedSource::Encoding encoding =
23079 v8::ScriptCompiler::StreamedSource::ONE_BYTE,
23086 v8::ScriptCompiler::StreamedSource source(new TestSourceStream(chunks),
23156 RunStreamingTest(chunks, v8::ScriptCompiler::StreamedSource::ONE_BYTE,
23183 RunStreamingTest(chunks, v8::ScriptCompiler::StreamedSource::UTF8);
23207 RunStreamingTest(chunks, v8::ScriptCompiler::StreamedSource::UTF8);
23228 RunStreamingTest(chunks, v8::ScriptCompiler::StreamedSource::UTF8);
23255 RunStreamingTest(chunks, v8::ScriptCompiler::StreamedSource::UTF8);
23273 RunStreamingTest(chunks, v8::ScriptCompiler::StreamedSource::UTF8);
23282 RunStreamingTest(chunks, v8::ScriptCompiler::StreamedSource
[all...]

Completed in 1079 milliseconds