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

/external/v8/src/
H A Dbackground-parsing-task.h22 // Internal representation of v8::ScriptCompiler::StreamedSource. Contains all
25 struct StreamedSource { struct in namespace:v8::internal
26 StreamedSource(ScriptCompiler::ExternalSourceStream* source_stream, function in struct:v8::internal::StreamedSource
27 ScriptCompiler::StreamedSource::Encoding encoding)
32 // Internal implementation of v8::ScriptCompiler::StreamedSource.
34 ScriptCompiler::StreamedSource::Encoding encoding;
45 StreamedSource(const StreamedSource&) = delete;
46 StreamedSource& operator=(const StreamedSource
[all...]
H A Dapi.cc1933 ScriptCompiler::StreamedSource::StreamedSource(ExternalSourceStream* stream, function in class:v8::ScriptCompiler::StreamedSource
1935 : impl_(new i::StreamedSource(stream, encoding)) {}
1938 ScriptCompiler::StreamedSource::~StreamedSource() { delete impl_; }
1942 ScriptCompiler::StreamedSource::GetCachedData() const {
2413 Isolate* v8_isolate, StreamedSource* source, CompileOptions options) {
2424 StreamedSource* v8_source,
2429 i::StreamedSource* source = v8_source->impl();
2486 StreamedSource* v8_sourc
[all...]
/external/v8/include/
H A Dv8.h150 struct StreamedSource;
1271 * StreamedSource must be kept alive while the streaming task is ran (see
1274 class V8_EXPORT StreamedSource { class in class:v8::ScriptCompiler
1278 StreamedSource(ExternalSourceStream* source_stream, Encoding encoding);
1279 ~StreamedSource();
1282 // caller. The CachedData object is alive as long as the StreamedSource
1286 internal::StreamedSource* impl() const { return impl_; }
1289 StreamedSource(const StreamedSource&) = delete;
1290 StreamedSource
[all...]

Completed in 2907 milliseconds