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.cc1763 ScriptCompiler::StreamedSource::StreamedSource(ExternalSourceStream* stream, function in class:v8::ScriptCompiler::StreamedSource
1765 : impl_(new i::StreamedSource(stream, encoding)) {}
1768 ScriptCompiler::StreamedSource::~StreamedSource() { delete impl_; }
1772 ScriptCompiler::StreamedSource::GetCachedData() const {
2163 Isolate* v8_isolate, StreamedSource* source, CompileOptions options) {
2171 StreamedSource* v8_source,
2175 i::StreamedSource* source = v8_source->impl();
2225 StreamedSource* v8_sourc
[all...]
/external/v8/include/
H A Dv8.h152 struct StreamedSource;
1242 * StreamedSource must be kept alive while the streaming task is ran (see
1245 class V8_EXPORT StreamedSource { class in class:v8::ScriptCompiler
1249 StreamedSource(ExternalSourceStream* source_stream, Encoding encoding);
1250 ~StreamedSource();
1253 // caller. The CachedData object is alive as long as the StreamedSource
1257 internal::StreamedSource* impl() const { return impl_; }
1261 StreamedSource(const StreamedSource&);
1262 StreamedSource
[all...]

Completed in 144 milliseconds