Searched refs:StreamedSource (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/ |
D | background-parsing-task.h | 25 struct StreamedSource { struct 26 StreamedSource(ScriptCompiler::ExternalSourceStream* source_stream, in StreamedSource() function 27 ScriptCompiler::StreamedSource::Encoding encoding) in StreamedSource() 34 ScriptCompiler::StreamedSource::Encoding encoding; argument 45 StreamedSource(const StreamedSource&) = delete; argument 46 StreamedSource& operator=(const StreamedSource&) = delete; argument 52 BackgroundParsingTask(StreamedSource* source, 59 StreamedSource* source_; // Not owned.
|
D | background-parsing-task.cc | 13 void StreamedSource::Release() { in Release() 19 StreamedSource* source, ScriptCompiler::CompileOptions options, in BackgroundParsingTask()
|
D | api.cc | 1933 ScriptCompiler::StreamedSource::StreamedSource(ExternalSourceStream* stream, in StreamedSource() function in v8::ScriptCompiler::StreamedSource 1935 : impl_(new i::StreamedSource(stream, encoding)) {} in StreamedSource() 1938 ScriptCompiler::StreamedSource::~StreamedSource() { delete impl_; } in ~StreamedSource() 1942 ScriptCompiler::StreamedSource::GetCachedData() const { in GetCachedData() 2413 Isolate* v8_isolate, StreamedSource* source, CompileOptions options) { in StartStreamingScript() 2424 StreamedSource* v8_source, in Compile() 2429 i::StreamedSource* source = v8_source->impl(); in Compile() 2486 StreamedSource* v8_source, in Compile()
|
/external/v8/src/parsing/ |
D | parse-info.h | 95 ScriptCompiler::StreamedSource::Encoding source_stream_encoding() const { in source_stream_encoding() 99 ScriptCompiler::StreamedSource::Encoding source_stream_encoding) { in set_source_stream_encoding() 258 ScriptCompiler::StreamedSource::Encoding source_stream_encoding_;
|
D | scanner-character-streams.h | 26 ScriptCompiler::StreamedSource::Encoding encoding,
|
D | scanner-character-streams.cc | 845 v8::ScriptCompiler::StreamedSource::Encoding encoding, in For() 848 case v8::ScriptCompiler::StreamedSource::TWO_BYTE: in For() 854 case v8::ScriptCompiler::StreamedSource::ONE_BYTE: in For() 856 case v8::ScriptCompiler::StreamedSource::UTF8: in For()
|
D | parse-info.cc | 22 source_stream_encoding_(ScriptCompiler::StreamedSource::ONE_BYTE), in ParseInfo()
|
/external/v8/include/ |
D | v8.h | 150 struct StreamedSource; 1274 class V8_EXPORT StreamedSource { 1278 StreamedSource(ExternalSourceStream* source_stream, Encoding encoding); 1279 ~StreamedSource(); 1286 internal::StreamedSource* impl() const { return impl_; } in impl() 1289 StreamedSource(const StreamedSource&) = delete; 1290 StreamedSource& operator=(const StreamedSource&) = delete; 1293 internal::StreamedSource* impl_; 1366 Isolate* isolate, StreamedSource* source, 1378 StreamedSource* source, [all …]
|