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

1 2

  /external/webkit/Source/WebCore/bindings/v8/
JavaScriptCallFrame.cpp 55 v8::Handle<v8::Value> callerFrame = m_callFrame.get()->Get(v8String("caller"));
67 v8::Handle<v8::Value> result = m_callFrame.get()->Get(v8String("sourceID"));
77 v8::Handle<v8::Value> result = m_callFrame.get()->Get(v8String("line"));
87 v8::Handle<v8::Value> result = m_callFrame.get()->Get(v8String("column"));
97 v8::Handle<v8::Value> result = m_callFrame.get()->Get(v8String("functionName"));
103 v8::Handle<v8::Array> scopeChain = v8::Handle<v8::Array>::Cast(m_callFrame.get()->Get(v8String("scopeChain")));
112 v8::Handle<v8::Array> scopeType = v8::Handle<v8::Array>::Cast(m_callFrame.get()->Get(v8String("scopeType")));
118 return m_callFrame.get()->Get(v8String("thisObject"));
123 v8::Handle<v8::Function> evalFunction = v8::Handle<v8::Function>::Cast(m_callFrame.get()->Get(v8String("evaluate")));
124 v8::Handle<v8::Value> argv[] = { v8String(expression) }
    [all...]
ScriptProfiler.cpp 47 v8::CpuProfiler::StartProfiling(v8String(title));
54 v8::CpuProfiler::StopProfiling(v8String(title), state->context()->GetSecurityToken()) :
55 v8::CpuProfiler::StopProfiling(v8String(title));
98 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kFull, &adapter);
100 snapshot = v8::HeapProfiler::TakeSnapshot(v8String(title), v8::HeapSnapshot::kAggregated);
V8Binding.cpp 109 static WebCoreStringResource* toStringResource(v8::Handle<v8::String> v8String)
111 return static_cast<WebCoreStringResource*>(v8String->GetExternalStringResource());
266 return str.isNull() ? v8::Handle<v8::Value>(v8::Null()) : v8::Handle<v8::Value>(v8String(str));
271 return str.isNull() ? v8::Handle<v8::Value>(v8::Undefined()) : v8::Handle<v8::Value>(v8String(str));
276 return str.isNull() ? v8::Handle<v8::Value>(v8::False()) : v8::Handle<v8::Value>(v8String(str));
295 static S fromV8String(v8::Handle<v8::String> v8String, int length);
306 static String fromV8String(v8::Handle<v8::String> v8String, int length)
308 ASSERT(v8String->Length() == length);
313 v8String->Write(reinterpret_cast<uint16_t*>(buffer), 0, length);
326 static AtomicString fromV8String(v8::Handle<v8::String> v8String, int length
    [all...]
V8WindowErrorHandler.cpp 56 v8::Handle<v8::Value> parameters[3] = { v8String(errorEvent->message()), v8String(errorEvent->filename()), v8::Integer::New(errorEvent->lineno()) };
V8WorkerContextErrorHandler.cpp 56 v8::Handle<v8::Value> parameters[3] = { v8String(errorEvent->message()), v8String(errorEvent->filename()), v8::Integer::New(errorEvent->lineno()) };
V8Binding.h 59 StringType v8StringToWebCoreString(v8::Handle<v8::String> v8String, ExternalMode external);
64 inline String v8StringToWebCoreString(v8::Handle<v8::String> v8String)
66 return v8StringToWebCoreString<String>(v8String, Externalize);
72 inline AtomicString v8StringToAtomicWebCoreString(v8::Handle<v8::String> v8String)
74 return v8StringToWebCoreString<AtomicString>(v8String, Externalize);
105 inline v8::Handle<v8::String> v8String(const String& string)
ScriptFunctionCall.cpp 64 m_arguments.append(v8String(argument));
70 m_arguments.append(v8String(argument));
120 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name));
153 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name));
IDBBindingUtilities.cpp 81 return object->IsObject() && getValueFrom(v8String(keyPathElement.identifier), object);
94 return object->IsObject() && setValue(object, v8String(keyPathElement.identifier), v8Value);
ScriptDebugServer.cpp 70 args->Set(v8::String::New("sourceID"), v8String(sourceID));
73 args->Set(v8::String::New("condition"), v8String(scriptBreakpoint.condition));
91 args->Set(v8::String::New("breakpointId"), v8String(breakpointId));
224 v8::Handle<v8::Value> argv[] = { v8String(sourceID), v8String(newContent) };
364 m_debuggerScript.set(v8::Handle<v8::Object>::Cast(v8::Script::Compile(v8String(debuggerScriptSource))->Run()));
OptionsObject.cpp 147 v8::Handle<v8::String> v8Key = v8String(key);
V8Proxy.cpp 729 return v8::ThrowException(v8::Exception::RangeError(v8String(message)));
731 return v8::ThrowException(v8::Exception::ReferenceError(v8String(message)));
733 return v8::ThrowException(v8::Exception::SyntaxError(v8String(message)));
735 return v8::ThrowException(v8::Exception::TypeError(v8String(message)));
737 return v8::ThrowException(v8::Exception::Error(v8String(message)));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8IDBKeyCustom.cpp 50 return v8String(key->string());
V8InspectorFrontendHostCustom.cpp 48 return v8String("mac");
50 return v8String("linux");
52 return v8String("freebsd");
54 return v8String("windows");
56 return v8String("unknown");
V8SQLResultSetRowListCustom.cpp 73 value = v8String(sqlValue.string());
85 item->Set(v8String(rowList->columnNames()[i]), value, static_cast<v8::PropertyAttribute>(v8::DontDelete|v8::ReadOnly));
V8ClipboardCustom.cpp 60 result->Set(v8::Integer::New(index), v8String(*it));
94 return v8String(result);
V8CustomXPathNSResolver.cpp 80 v8::Handle<v8::Value> argv[argc] = { v8String(prefix) };
V8JavaScriptCallFrameCustom.cpp 74 return v8String("function");
V8DOMStringMapCustom.cpp 52 return v8String(V8DOMStringMap::toNative(info.Holder())->item(toWebCoreString(name)));
62 properties->Set(v8::Integer::New(i), v8String(names[i]));
V8CanvasRenderingContext2DCustom.cpp 60 return v8String(style->color());
V8StorageCustom.cpp 52 properties->Set(v8::Integer::New(i), v8String(key));
64 return v8String(storage->getItem(name));
V8CSSStyleDeclarationCustom.cpp 190 return v8String(result);
V8XSLTProcessorCustom.cpp 137 return v8String(result);
V8DOMWindowCustom.cpp 95 v8::Handle<v8::Value> v8String = function->ToString();
98 if (v8String.IsEmpty())
101 functionString = toWebCoreString(v8String);
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestCallback.cpp 120 v8::Handle<v8::Value> strArgHandle = v8String(strArg);
V8TestObj.cpp 66 return v8String(imp->readOnlyStringAttr());
167 return v8String(imp->stringAttr());
231 return v8String(imp->getAttribute(WebCore::HTMLNames::reflectedstringattrAttr));
295 return v8String(imp->getURLAttribute(WebCore::HTMLNames::reflectedurlattrAttr));
311 return v8String(imp->getNonEmptyURLAttribute(WebCore::HTMLNames::reflectednonemptyurlattrAttr));
327 return v8String(imp->getAttribute(WebCore::HTMLNames::customContentStringAttrAttr));
375 return v8String(imp->getURLAttribute(WebCore::HTMLNames::customContentURLAttrAttr));
391 return v8String(imp->getNonEmptyURLAttribute(WebCore::HTMLNames::customContentNonEmptyURLAttrAttr));
457 return v8String(v);
476 return v8String(imp->stringAttrWithSetterException())
    [all...]

Completed in 154 milliseconds

1 2