Searched refs:cached_data (Results 1 – 8 of 8) sorted by relevance
/external/toolchain-utils/cros_utils/ |
D | buildbot_json.py | 153 def cached_data(self): member in AddressableBaseDataNode 199 def cached_data(self): member in NonAddressableDataNode 200 if self.parent.cached_data is None: 202 return self.parent.cached_data[self.subkey] 318 if self.parent.cached_data is not None: 319 for i in xrange(len(self.parent.cached_data[self.subkey])): 323 def cached_data(self): member in NonAddressableNodeList 324 if self.parent.cached_data is None: 330 if self.parent.cached_data is None: 386 if item.cached_data is not None: [all …]
|
/external/v8/src/snapshot/ |
D | code-serializer.cc | 274 Isolate* isolate, ScriptData* cached_data, Handle<String> source, in Deserialize() argument 284 isolate, cached_data, in Deserialize() 289 DCHECK(cached_data->rejected()); in Deserialize() 308 int length = cached_data->length(); in Deserialize() 514 Isolate* isolate, ScriptData* cached_data, uint32_t expected_source_hash, in FromCachedData() argument 517 SerializedCodeData scd(cached_data); in FromCachedData() 520 cached_data->Reject(); in FromCachedData()
|
D | code-serializer.h | 52 Isolate* isolate, ScriptData* cached_data, Handle<String> source, 134 ScriptData* cached_data,
|
/external/v8/src/ |
D | compiler.h | 125 ScriptOriginOptions origin_options, ScriptData* cached_data, 144 v8::Extension* extension, ScriptData* cached_data, 334 std::unique_ptr<ScriptCompiler::CachedData> cached_data; member
|
D | compiler.cc | 1590 ScriptData* cached_data, ScriptCompiler::CompileOptions compile_options, in GetSharedFunctionInfoForScript() argument 1596 DCHECK_NULL(cached_data); in GetSharedFunctionInfoForScript() 1599 DCHECK(cached_data); in GetSharedFunctionInfoForScript() 1634 if (CodeSerializer::Deserialize(isolate, cached_data, source, in GetSharedFunctionInfoForScript() 1681 ScriptOriginOptions origin_options, ScriptData* cached_data, in GetWrappedFunction() argument 1689 DCHECK_NULL(cached_data); in GetWrappedFunction() 1692 DCHECK(cached_data); in GetWrappedFunction() 1711 maybe_result = CodeSerializer::Deserialize(isolate, cached_data, source, in GetWrappedFunction()
|
D | d8.cc | 485 ScriptCompiler::CachedData* cached_data = new ScriptCompiler::CachedData( in LookupCodeCache() local 487 return cached_data; in LookupCodeCache() 575 ScriptCompiler::CachedData* cached_data = in ExecuteString() local 577 StoreInCodeCache(isolate, source, cached_data); in ExecuteString() 578 delete cached_data; in ExecuteString() 584 ScriptCompiler::CachedData* cached_data = in ExecuteString() local 586 StoreInCodeCache(isolate, source, cached_data); in ExecuteString() 587 delete cached_data; in ExecuteString()
|
D | api.cc | 2041 return impl_->cached_data.get(); in GetCachedData() 2374 source->cached_data->rejected = true; in CompileUnboundInternal() 2382 DCHECK(source->cached_data); in CompileUnboundInternal() 2384 script_data = new i::ScriptData(source->cached_data->data, in CompileUnboundInternal() 2385 source->cached_data->length); in CompileUnboundInternal() 2400 source->cached_data->rejected = script_data->rejected(); in CompileUnboundInternal() 2542 DCHECK(source->cached_data); in CompileFunctionInContext() 2544 script_data = new i::ScriptData(source->cached_data->data, in CompileFunctionInContext() 2545 source->cached_data->length); in CompileFunctionInContext() 2556 source->cached_data->rejected = script_data->rejected(); in CompileFunctionInContext()
|
/external/v8/include/ |
D | v8.h | 1427 CachedData* cached_data = NULL); 1429 CachedData* cached_data = NULL); 1459 CachedData* cached_data; 10023 cached_data(data) {} 10027 : source_string(string), cached_data(data) {} 10031 delete cached_data; 10037 return cached_data;
|