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

/external/chromium_org/components/translate/content/renderer/
H A Dtranslate_helper.cc300 v8::Local<v8::String> v8_str = results[0]->ToString(); local
301 int length = v8_str->Utf8Length() + 1;
303 v8_str->WriteUtf8(str.get(), length);
/external/chromium_org/v8/test/cctest/
H A Dcctest.h344 static inline v8::Local<v8::String> v8_str(const char* x) { function
350 return v8::Script::Compile(v8_str(x));
370 return CompileWithOrigin(source, v8_str(origin_url));
376 return CompileWithOrigin(v8_str(source), v8_str(origin_url));
382 return v8::Script::Compile(v8_str(source))->Run();
395 v8::ScriptCompiler::Source script_source(v8_str(source));
414 v8::ScriptOrigin origin(v8_str(origin_url),
417 v8::ScriptCompiler::Source script_source(v8_str(source), origin);
425 source, v8::ScriptOrigin(v8_str(origin_ur
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtest_runner.cc64 WebString V8StringToWebString(v8::Handle<v8::String> v8_str) { argument
65 int length = v8_str->Utf8Length() + 1;
67 v8_str->WriteUtf8(chars.get(), length);

Completed in 43 milliseconds