Searched refs:ScriptData (Results 1 – 13 of 13) sorted by relevance
/external/webkit/Source/WebCore/bindings/v8/ |
D | V8Proxy.cpp | 203 …code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData) in compileScript() 309 PassOwnPtr<v8::ScriptData> V8Proxy::precompileScript(v8::Handle<v8::String> code, CachedScript* cac… in precompileScript() 323 return v8::ScriptData::New(cachedMetadata->data(), cachedMetadata->size()); in precompileScript() 325 OwnPtr<v8::ScriptData> scriptData(v8::ScriptData::PreCompile(code)); in precompileScript() 358 OwnPtr<v8::ScriptData> scriptData = precompileScript(code, source.cachedScript()); in evaluate()
|
D | V8Proxy.h | 241 …ring> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* = 0); 287 PassOwnPtr<v8::ScriptData> precompileScript(v8::Handle<v8::String>, CachedScript*);
|
/external/v8/test/cctest/ |
D | test-parsing.cc | 146 v8::ScriptData* data = in TEST() 147 v8::ScriptData::PreCompile(tests[i], i::StrLength(tests[i])); in TEST() 153 v8::ScriptData* data = in TEST() 154 v8::ScriptData::PreCompile(fail_tests[i], i::StrLength(fail_tests[i])); in TEST() 200 v8::ScriptData* preparse = in TEST() 201 v8::ScriptData::PreCompile(source, source_length); in TEST() 222 v8::ScriptData* error_preparse = in TEST() 223 v8::ScriptData::PreCompile(error_source, error_source_length); in TEST()
|
D | test-api.cc | 11389 v8::ScriptData* sd = in TEST() 11390 v8::ScriptData::PreCompile(script, i::StrLength(script)); in TEST() 11401 v8::ScriptData* sd = in TEST() 11402 v8::ScriptData::PreCompile(script, i::StrLength(script)); in TEST() 11411 v8::ScriptData* sd = in TEST() 11412 v8::ScriptData::PreCompile(script, i::StrLength(script)); in TEST() 11422 v8::ScriptData* sd = in TEST() 11423 v8::ScriptData::PreCompile(script, i::StrLength(script)); in TEST() 11431 v8::ScriptData* deserialized_sd = in TEST() 11432 v8::ScriptData::New(serialized_data, serialized_data_length); in TEST() [all …]
|
/external/v8/src/ |
D | accessors.h | 52 V(ScriptData) \
|
D | parser.h | 103 class ScriptDataImpl : public ScriptData { 163 friend class ScriptData; variable
|
D | accessors.cc | 269 const AccessorDescriptor Accessors::ScriptData = { member in v8::internal::Accessors
|
D | api.cc | 1432 ScriptData* ScriptData::PreCompile(const char* input, int length) { in PreCompile() 1439 ScriptData* ScriptData::PreCompile(v8::Handle<String> source) { in PreCompile() 1452 ScriptData* ScriptData::New(const char* data, int length) { in New() 1478 v8::ScriptData* pre_data, in New() 1539 v8::ScriptData* pre_data, in Compile()
|
D | bootstrapper.cc | 1522 factory()->NewForeign(&Accessors::ScriptData); in InstallNatives()
|
/external/v8/include/ |
D | v8.h | 514 class V8EXPORT ScriptData { // NOLINT 516 virtual ~ScriptData() { } in ~ScriptData() 524 static ScriptData* PreCompile(const char* input, int length); 534 static ScriptData* PreCompile(Handle<String> source); 543 static ScriptData* New(const char* data, int length); 607 ScriptData* pre_data = NULL, 641 ScriptData* pre_data = NULL,
|
/external/v8/ |
D | ChangeLog | 2215 Changed the ScriptData API.
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 117596 Persist V8's ScriptData to the memory cache. 117599 This stores V8's ScriptData in the memory cache and also causes the 118449 Persist V8's ScriptData to the memory cache. 118452 This stores V8's ScriptData in the memory cache and also causes the 128357 Persist V8's ScriptData to the memory cache. 128360 This stores V8's ScriptData in the memory cache and also causes the
|
D | ChangeLog-2010-05-24 | 4483 Implement ScriptData states for HTML5Lexer
|