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

1 2

  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfileNode.cpp 43 return toWebCoreString(m_profileNode->GetFunctionName());
48 return toWebCoreString(m_profileNode->GetScriptResourceName());
ScriptProfile.cpp 50 return toWebCoreString(m_profile->GetTitle());
67 result->setString("functionName", toWebCoreString(node->GetFunctionName()));
68 result->setString("url", toWebCoreString(node->GetScriptResourceName()));
ScriptHeapSnapshot.cpp 51 return toWebCoreString(m_snapshot->GetTitle());
ScriptCallStackFactory.cpp 51 sourceName = toWebCoreString(sourceNameValue);
56 functionName = toWebCoreString(functionNameValue);
WorkerContextExecutionProxy.cpp 73 String errorMessage = toWebCoreString(message->Get());
75 String sourceURL = toWebCoreString(message->GetScriptResourceName());
214 state->errorMessage = toWebCoreString(message->Get());
216 state->sourceURL = toWebCoreString(message->GetScriptResourceName());
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DataGridColumnListCustom.cpp 56 DataGridColumn* result = imp->itemWithName(toWebCoreString(name));
V8NotificationCenterCustom.cpp 55 String url = toWebCoreString(args[0]);
71 RefPtr<Notification> notification = notificationCenter->createNotification(toWebCoreString(args[0]), toWebCoreString(args[1]), toWebCoreString(args[2]), ec);
V8StyleSheetListCustom.cpp 51 HTMLStyleElement* item = imp->getNamedItem(toWebCoreString(name));
V8XSLTProcessorCustom.cpp 114 String namespaceURI = toWebCoreString(args[0]);
115 String localName = toWebCoreString(args[1]);
116 String value = toWebCoreString(args[2]);
131 String namespaceURI = toWebCoreString(args[0]);
132 String localName = toWebCoreString(args[1]);
148 String namespaceURI = toWebCoreString(args[0]);
149 String localName = toWebCoreString(args[1]);
V8HTMLOutputElementCustom.cpp 52 imp->setFor(toWebCoreString(value));
V8WebKitCSSMatrixConstructor.cpp 58 cssValue = toWebCoreString(args[0]);
V8SharedWorkerCustom.cpp 61 name = toWebCoreString(args[1]->ToString());
77 RefPtr<SharedWorker> obj = SharedWorker::create(toWebCoreString(scriptUrl), name, context, ec);
V8WebSocketCustom.cpp 69 const KURL& url = context->completeURL(toWebCoreString(urlstring));
81 webSocket->connect(url, toWebCoreString(protocol), ec);
V8DOMStringMapCustom.cpp 44 if (V8DOMStringMap::toNative(info.Holder())->contains(toWebCoreString(name)))
52 return v8String(V8DOMStringMap::toNative(info.Holder())->item(toWebCoreString(name)));
76 V8DOMStringMap::toNative(info.Holder())->deleteItem(toWebCoreString(name), ec);
92 V8DOMStringMap::toNative(info.Holder())->setItem(toWebCoreString(name), toWebCoreString(value), ec);
V8DocumentLocationCustom.cpp 53 V8DOMWindowShell::setLocation(window, toWebCoreString(value));
V8EventSourceConstructor.cpp 62 String url = toWebCoreString(args[0]);
V8HTMLOptionElementConstructor.cpp 69 data = toWebCoreString(args[0]);
71 value = toWebCoreString(args[1]);
V8NavigatorCustom.cpp 51 String options = toWebCoreString(args[0]);
107 if (!navigator->isApplicationInstalled(toWebCoreString(args[0]), callback.release()))
V8LocationCustom.cpp 58 String hash = toWebCoreString(value);
70 String host = toWebCoreString(value);
82 String hostname = toWebCoreString(value);
94 String href = toWebCoreString(value);
106 String pathname = toWebCoreString(value);
118 String port = toWebCoreString(value);
130 String protocol = toWebCoreString(value);
145 String search = toWebCoreString(value);
222 String urlString = toWebCoreString(args[0]);
235 String urlString = toWebCoreString(args[0])
    [all...]
V8StorageCustom.cpp 61 String name = toWebCoreString(v8Name);
87 String name = toWebCoreString(v8Name);
98 String name = toWebCoreString(v8Name);
99 String value = toWebCoreString(v8Value);
133 String name = toWebCoreString(v8Name);
V8DocumentCustom.cpp 74 String expression = toWebCoreString(args[0]);
105 String contextId = toWebCoreString(args[0]);
106 String name = toWebCoreString(args[1]);
V8HTMLAllCollectionCustom.cpp 62 v8::Handle<v8::Value> result = getNamedItems(collection, toWebCoreString(argument->ToString()));
104 v8::Handle<v8::Value> result = getNamedItems(imp, toWebCoreString(args[0]));
124 String name = toWebCoreString(args[0]);
V8HTMLCollectionCustom.cpp 65 v8::Handle<v8::Value> result = getNamedItems(collection, toWebCoreString(asString));
107 v8::Handle<v8::Value> result = getNamedItems(imp, toWebCoreString(args[0]));
127 String name = toWebCoreString(args[0]);
V8ClipboardCustom.cpp 78 String type = toWebCoreString(args[0]);
92 String result = clipboard->getData(toWebCoreString(args[0]), success);
V8NamedNodeMapCustom.cpp 71 RefPtr<Node> result = imp->getNamedItem(toWebCoreString(name));

Completed in 157 milliseconds

1 2