HomeSort by relevance Sort by last modified time
    Searched refs:v8String (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
WebScriptBindings.cpp 43 return v8String(string, isolate);
WebDevToolsFrontendImpl.cpp 167 args.append(v8String(message, isolate));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8StringResource.cpp 80 String StringTraits<String>::fromV8String<false>(v8::Handle<v8::String> v8String, int length)
82 ASSERT(v8String->Length() == length);
85 v8String->Write(reinterpret_cast<uint16_t*>(buffer), 0, length);
90 AtomicString StringTraits<AtomicString>::fromV8String<false>(v8::Handle<v8::String> v8String, int length)
92 ASSERT(v8String->Length() == length);
96 v8String->Write(reinterpret_cast<uint16_t*>(inlineBuffer), 0, length);
101 v8String->Write(reinterpret_cast<uint16_t*>(buffer), 0, length);
106 String StringTraits<String>::fromV8String<true>(v8::Handle<v8::String> v8String, int length)
108 ASSERT(v8String->Length() == length);
111 v8String->WriteOneByte(buffer, 0, length)
    [all...]
V8ThrowException.cpp 63 v8::Handle<v8::Value> error = v8::Exception::Error(v8String(domException->message(), isolate));
84 return v8::Exception::RangeError(v8String(message, isolate));
86 return v8::Exception::ReferenceError(v8String(message, isolate));
88 return v8::Exception::SyntaxError(v8String(message, isolate));
90 return v8::Exception::TypeError(v8String(message, isolate));
92 return v8::Exception::Error(v8String(message, isolate));
109 return v8::Exception::TypeError(v8String(message.isNull() ? "Type error" : message, isolate));
ScriptString.cpp 40 v8::Handle<v8::String> b = v8String(string, isolate);
CustomElementConstructorBuilder.cpp 167 v8::Handle<v8::Value> value = m_prototype->Get(v8String(name, isolate));
192 v8::Handle<v8::String> v8TagName = v8String(descriptor.localName(), isolate);
195 v8Type = v8String(descriptor.type(), isolate);
202 V8HiddenPropertyName::setNamedHiddenReference(m_constructor, "customElementNamespaceURI", v8String(descriptor.namespaceURI(), isolate));
206 v8::Handle<v8::String> prototypeKey = v8String("prototype", isolate);
218 m_prototype->ForceSet(v8String("constructor", isolate), m_constructor, v8::DontEnum);
230 if (m_prototype->GetPropertyAttributes(v8String("constructor", m_context->GetIsolate())) & v8::DontDelete) {
269 v8::Handle<v8::Object> elementPrototype = elementConstructor->Get(v8String("prototype", m_context->GetIsolate())).As<v8::Object>();
V8ErrorHandler.cpp 65 v8::Handle<v8::Value> parameters[5] = { v8String(errorEvent->message(), isolate), v8String(errorEvent->filename(), isolate), v8::Integer::New(errorEvent->lineno(), isolate), v8::Integer::New(errorEvent->colno(), isolate), error };
ScriptFunctionCall.cpp 65 m_arguments.append(v8String(argument, m_scriptState->isolate()));
71 m_arguments.append(v8String(argument, m_scriptState->isolate()));
121 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name, m_scriptState->isolate()));
156 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name, m_scriptState->isolate()));
V8LazyEventListener.cpp 165 v8::Handle<v8::String> codeExternalString = v8String(code, isolate);
217 wrappedFunction->SetHiddenValue(V8HiddenPropertyName::toStringString(), v8String(toStringString, isolate));
221 wrappedFunction->SetName(v8String(m_functionName, isolate));
ScriptProfiler.cpp 65 profiler->StartCpuProfiling(v8String(title, isolate), true);
75 const v8::CpuProfile* profile = profiler->StopCpuProfiling(v8String(title, isolate));
244 const v8::HeapSnapshot* snapshot = profiler->TakeHeapSnapshot(v8String(title, isolate), &adapter, &resolver);
V8CustomElementLifecycleCallbacks.cpp 220 v8String(name, isolate),
221 oldValue.isNull() ? v8::Handle<v8::Value>(v8::Null()) : v8::Handle<v8::Value>(v8String(oldValue, isolate)),
222 newValue.isNull() ? v8::Handle<v8::Value>(v8::Null()) : v8::Handle<v8::Value>(v8String(newValue, isolate))
WorkerScriptController.cpp 146 context->SetErrorMessageForCodeGenerationFromStrings(v8String(m_disableEvalPending, m_isolate));
154 v8::Handle<v8::String> scriptString = v8String(script, m_isolate);
ScriptDebugServer.cpp 149 args->Set(v8::String::NewSymbol("sourceID"), v8String(sourceID, debuggerContext->GetIsolate()));
153 args->Set(v8::String::NewSymbol("condition"), v8String(scriptBreakpoint.condition, debuggerContext->GetIsolate()));
171 args->Set(v8::String::NewSymbol("breakpointId"), v8String(breakpointId, debuggerContext->GetIsolate()));
315 v8::Handle<v8::Value> argv[] = { v8String(sourceID, debuggerContext->GetIsolate()), v8String(newContent, debuggerContext->GetIsolate()), v8Boolean(preview) };
523 v8::Handle<v8::Value> argv2[] = { eventDetails.GetEventData(), v8String(patchedScript, m_isolate) };
594 v8::Handle<v8::String> source = v8String(String(reinterpret_cast<const char*>(DebuggerScriptSource_js), sizeof(DebuggerScriptSource_js)), m_isolate);
627 v8String(variableName, debuggerContext->GetIsolate()),
647 v8::Handle<v8::String> source = v8String(expression, m_isolate);
IDBBindingUtilities.cpp 57 return v8String(key->string(), isolate);
142 return object->IsObject() && getValueFrom(v8String(keyPathElement, isolate), result);
152 return canSet(object, keyPathElement) && setValue(object, v8String(keyPathElement, isolate), v8Value);
V8WindowShell.cpp 234 context->SetErrorMessageForCodeGenerationFromStrings(v8String(csp->evalDisabledErrorMessage(), m_isolate));
476 documentHandle->SetAccessor(v8String(name, m_isolate), getter);
495 documentHandle->Delete(v8String(name, m_isolate));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SQLResultSetRowListCustom.cpp 69 value = v8String(sqlValue.string(), args.GetIsolate());
81 item->Set(v8String(rowList->columnNames()[i], args.GetIsolate()), value, static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::ReadOnly));
V8IDBAnyCustom.cpp 51 return v8String(value.string(), isolate);
91 return v8String(impl->string(), isolate);
V8CustomXPathNSResolver.cpp 85 v8::Handle<v8::Value> argv[argc] = { v8String(prefix, m_isolate) };
V8CanvasRenderingContext2DCustom.cpp 57 return v8String(style->color(), isolate);
V8ClipboardCustom.cpp 60 result->Set(v8::Integer::New(index, info.GetIsolate()), v8String(*it, info.GetIsolate()));
V8InjectedScriptManager.cpp 90 v8::Local<v8::Value> value = V8ScriptRunner::compileAndRunInternalScript(v8String(scriptSource, isolate), isolate);
V8MessageEventCustom.cpp 81 result = v8String(stringValue, info.GetIsolate());
V8WindowCustom.cpp 98 v8::Handle<v8::Value> v8String = function->ToString();
101 if (v8String.IsEmpty())
104 functionString = toWebCoreString(v8String);
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
RegularExpression.cpp 33 // without v8String is difficult, and calling into v8 without V8RecursionScope will
56 v8::Local<v8::RegExp> regex = v8::RegExp::New(v8String(pattern, context->GetIsolate()), static_cast<v8::RegExp::Flags>(flags));
86 v8::Handle<v8::Value> argv[] = { v8String(string.substring(startFrom), context->GetIsolate()) };
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 134 v8::Handle<v8::Value> argv[] = { v8String(expression, m_debuggerContext.newLocal(m_isolate)->GetIsolate()) };
154 v8String(variableName, m_isolate),

Completed in 125 milliseconds

1 2