Searched defs:StreamedSource (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dbackground-parsing-task.h17 // Internal representation of v8::ScriptCompiler::StreamedSource. Contains all
20 struct StreamedSource { struct in namespace:v8::internal
21 StreamedSource(ScriptCompiler::ExternalSourceStream* source_stream, function in struct:v8::internal::StreamedSource
22 ScriptCompiler::StreamedSource::Encoding encoding)
25 // Internal implementation of v8::ScriptCompiler::StreamedSource.
27 ScriptCompiler::StreamedSource::Encoding encoding;
40 StreamedSource(const StreamedSource&);
41 StreamedSource& operator=(const StreamedSource
[all...]
H A Dapi.cc1583 ScriptCompiler::StreamedSource::StreamedSource(ExternalSourceStream* stream, function in class:v8::ScriptCompiler::StreamedSource
1585 : impl_(new i::StreamedSource(stream, encoding)) {}
1588 ScriptCompiler::StreamedSource::~StreamedSource() { delete impl_; }
1592 ScriptCompiler::StreamedSource::GetCachedData() const {
2002 Isolate* v8_isolate, StreamedSource* source, CompileOptions options) {
2010 StreamedSource* v8_source,
2014 i::StreamedSource* source = v8_source->impl();
2064 StreamedSource* v8_sourc
[all...]
/external/v8/include/
H A Dv8.h150 struct StreamedSource;
1265 * StreamedSource must be kept alive while the streaming task is ran (see
1268 class V8_EXPORT StreamedSource { class in class:v8::ScriptCompiler
1272 StreamedSource(ExternalSourceStream* source_stream, Encoding encoding);
1273 ~StreamedSource();
1276 // caller. The CachedData object is alive as long as the StreamedSource
1280 internal::StreamedSource* impl() const { return impl_; }
1284 StreamedSource(const StreamedSource&);
1285 StreamedSource
[all...]

Completed in 331 milliseconds