Home | History | Annotate | Download | only in include

Lines Matching refs:CachedData

1028   struct V8_EXPORT CachedData {
1034 CachedData() : data(NULL), length(0), buffer_policy(BufferNotOwned) {}
1037 // data and guarantees that it stays alive until the CachedData object is
1039 // (with delete[]) when the CachedData object is destroyed.
1040 CachedData(const uint8_t* data, int length,
1042 ~CachedData();
1051 CachedData(const CachedData&);
1052 CachedData& operator=(const CachedData&);
1060 // Source takes ownership of CachedData.
1062 CachedData* cached_data = NULL);
1064 CachedData* cached_data = NULL);
1067 // Ownership of the CachedData or its buffers is *not* transferred to the
1068 // caller. The CachedData object is alive as long as the Source object is
1070 V8_INLINE const CachedData* GetCachedData() const;
1089 CachedData* cached_data;
1134 // Ownership of the CachedData or its buffers is *not* transferred to the
1135 // caller. The CachedData object is alive as long as the StreamedSource
1137 const CachedData* GetCachedData() const;
6367 CachedData* data)
6377 CachedData* data)
6386 const ScriptCompiler::CachedData* ScriptCompiler::Source::GetCachedData()