| /external/chromium_org/third_party/WebKit/Source/web/ |
| WebScriptBindings.cpp | 43 return v8String(isolate, string); 46 WebString WebScriptBindings::toWebString(v8::Handle<v8::String> v8String) 48 return v8StringToWebCoreString<String>(v8String, Externalize);
|
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
| V8StringResource.cpp | 63 ALWAYS_INLINE static void write(v8::Handle<v8::String> v8String, CharType* buffer, int length) 65 v8String->Write(reinterpret_cast<uint16_t*>(buffer), 0, length); 71 ALWAYS_INLINE static void write(v8::Handle<v8::String> v8String, CharType* buffer, int length) 73 v8String->WriteOneByte(buffer, 0, length); 78 String StringTraits<String>::fromV8String(v8::Handle<v8::String> v8String, int length) 80 ASSERT(v8String->Length() == length); 83 V8StringTrait::write(v8String, buffer, length); 88 AtomicString StringTraits<AtomicString>::fromV8String(v8::Handle<v8::String> v8String, int length) 90 ASSERT(v8String->Length() == length); 94 V8StringTrait::write(v8String, inlineBuffer, length) [all...] |
| V8ThrowException.cpp | 65 v8::Handle<v8::Value> error = v8::Exception::Error(v8String(isolate, domException->message())); 87 return v8::Exception::RangeError(v8String(isolate, message)); 89 return v8::Exception::ReferenceError(v8String(isolate, message)); 91 return v8::Exception::SyntaxError(v8String(isolate, message)); 93 return v8::Exception::TypeError(v8String(isolate, message)); 95 return v8::Exception::Error(v8String(isolate, message)); 112 return v8::Exception::TypeError(v8String(isolate, message.isNull() ? "Type error" : message));
|
| ScriptPreprocessor.cpp | 87 v8::Handle<v8::String> functionNameString = v8String(m_scriptState->isolate(), functionName); 99 v8::Handle<v8::String> sourceCodeString = v8String(isolate, sourceCode); 100 v8::Handle<v8::String> sourceNameString = v8String(isolate, sourceName);
|
| CustomElementConstructorBuilder.cpp | 174 v8::Handle<v8::Value> value = m_prototype->Get(v8String(isolate, name)); 201 v8::Handle<v8::String> v8TagName = v8String(isolate, descriptor.localName()); 204 v8Type = v8String(isolate, descriptor.type()); 211 V8HiddenValue::setHiddenValue(isolate, m_constructor, V8HiddenValue::customElementNamespaceURI(isolate), v8String(isolate, descriptor.namespaceURI())); 215 v8::Handle<v8::String> prototypeKey = v8String(isolate, "prototype"); 227 m_prototype->ForceSet(v8String(isolate, "constructor"), m_constructor, v8::DontEnum); 239 if (m_prototype->GetPropertyAttributes(v8String(m_scriptState->isolate(), "constructor")) & v8::DontDelete) {
|
| ScriptRegexp.cpp | 52 v8::Local<v8::RegExp> regex = v8::RegExp::New(v8String(isolate, pattern), static_cast<v8::RegExp::Flags>(flags)); 80 v8::Handle<v8::Value> argv[] = { v8String(isolate, string.substring(startFrom)) };
|
| V8ErrorHandler.cpp | 71 v8::Handle<v8::Value> parameters[5] = { v8String(isolate(), errorEvent->message()), v8String(isolate(), errorEvent->filename()), v8::Integer::New(isolate(), errorEvent->lineno()), v8::Integer::New(isolate(), errorEvent->colno()), error };
|
| ScriptFunctionCall.cpp | 58 m_arguments.append(ScriptValue(m_scriptState.get(), v8String(isolate, argument))); 65 m_arguments.append(ScriptValue(m_scriptState.get(), v8String(isolate, argument))); 133 v8::Local<v8::Value> value = thisObject->Get(v8String(m_scriptState->isolate(), m_name)); 170 v8::Local<v8::Value> value = thisObject->Get(v8String(m_scriptState->isolate(), m_name));
|
| ScriptString.cpp | 69 v8::Handle<v8::String> targetString = v8String(nonNullIsolate, string);
|
| V8LazyEventListener.cpp | 169 v8::Handle<v8::String> codeExternalString = v8String(isolate(), code); 215 V8HiddenValue::setHiddenValue(isolate(), wrappedFunction, V8HiddenValue::toStringString(isolate()), v8String(isolate(), toStringString)); 217 wrappedFunction->SetName(v8String(isolate(), m_functionName));
|
| ScriptProfiler.cpp | 72 profiler->StartProfiling(v8String(isolate, title), true); 82 v8::CpuProfile* profile = profiler->StopProfiling(v8String(isolate, title)); 241 const v8::HeapSnapshot* snapshot = profiler->TakeHeapSnapshot(v8String(isolate, title), &adapter, &resolver);
|
| V8CustomElementLifecycleCallbacks.cpp | 224 v8String(isolate, name), 225 oldValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, oldValue)), 226 newValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, newValue))
|
| ScriptDebugServer.cpp | 95 info->Set(v8AtomicString(m_isolate, "sourceID"), v8String(debuggerContext->GetIsolate(), sourceID)); 99 info->Set(v8AtomicString(m_isolate, "condition"), v8String(debuggerContext->GetIsolate(), scriptBreakpoint.condition)); 117 info->Set(v8AtomicString(m_isolate, "breakpointId"), v8String(debuggerContext->GetIsolate(), breakpointId)); 258 v8::Handle<v8::Value> argv[] = { v8String(m_isolate, sourceID), v8String(m_isolate, newContent), v8Boolean(preview, m_isolate) }; 519 v8::Handle<v8::String> source = v8String(m_isolate, String(reinterpret_cast<const char*>(DebuggerScriptSource_js), sizeof(DebuggerScriptSource_js))); 558 v8String(debuggerContext->GetIsolate(), variableName), 576 v8::Handle<v8::String> source = v8String(m_isolate, expression);
|
| ScriptPromiseTest.cpp | 196 ScriptValue value = ScriptValue(scriptState(), v8String(isolate(), "hello")); 226 ScriptValue value = ScriptValue(scriptState(), v8String(isolate(), "hello"));
|
| WorkerScriptController.cpp | 165 m_scriptState->context()->SetErrorMessageForCodeGenerationFromStrings(v8String(m_isolate, m_disableEvalPending)); 171 v8::Handle<v8::String> scriptString = v8String(m_isolate, script);
|
| IDBBindingUtilities.cpp | 64 return v8String(isolate, value.string()); 91 return v8String(isolate, key->string()); 148 return v8String(isolate, impl->string()); 244 return object->IsObject() && getValueFrom(v8String(isolate, keyPathElement), result); 254 return canSet(object, keyPathElement) && setValue(object, v8String(isolate, keyPathElement), v8Value);
|
| V8WindowShell.cpp | 231 context->SetErrorMessageForCodeGenerationFromStrings(v8String(m_isolate, csp->evalDisabledErrorMessage())); 473 documentHandle->SetAccessor(v8String(m_isolate, name), getter); 490 documentHandle->Delete(v8String(m_isolate, name));
|
| /external/chromium_org/third_party/WebKit/Source/core/animation/ |
| AnimationTestHelper.cpp | 14 return v8::Handle<v8::Value>::Cast(v8String(v8::Isolate::GetCurrent(), string));
|
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
| V8SQLResultSetRowListCustom.cpp | 75 value = v8String(info.GetIsolate(), sqlValue.string()); 87 item->Set(v8String(info.GetIsolate(), rowList->columnNames()[i]), value, static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly));
|
| V8CustomXPathNSResolver.cpp | 84 v8::Handle<v8::Value> argv[argc] = { v8String(m_isolate, prefix) };
|
| V8CanvasRenderingContext2DCustom.cpp | 57 return v8String(isolate, style->color());
|
| V8InjectedScriptManager.cpp | 94 v8::Local<v8::Value> value = V8ScriptRunner::compileAndRunInternalScript(v8String(isolate, scriptSource), isolate);
|
| V8MessageEventCustom.cpp | 56 V8HiddenValue::setHiddenValue(isolate, eventWrapper, V8HiddenValue::stringData(isolate), v8String(isolate, stringValue)); 113 result = v8String(info.GetIsolate(), stringValue);
|
| /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
| V8TestCallbackInterface.cpp | 162 v8::Handle<v8::Value> stringArgHandle = v8String(isolate, stringArg); 189 v8::Handle<v8::Value> stringArgHandle = v8String(isolate, stringArg);
|
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| JavaScriptCallFrame.cpp | 152 v8::Handle<v8::Value> argv[] = { v8String(m_debuggerContext.newLocal(m_isolate)->GetIsolate(), expression) }; 173 v8String(m_isolate, variableName),
|