Searched refs:urlString (Results 76 - 100 of 121) sorted by relevance

12345

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.frameworkadmin.equinox_1.0.200.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.extensionlocation_1.2.0.v20100518.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
H A Dmain.m160 NSString *urlString = [NSString stringWithUTF8String:argv[i]];
161 if (urlString)
162 obj->movieURL = [[NSURL URLWithString:urlString] retain];
/external/webkit/Source/WebCore/platform/mac/
H A DHTMLConverter.mm1086 NSString *urlString = [element getAttribute:@"src"];
1087 if (urlString && [urlString length] > 0) {
1088 NSURL *url = core([element ownerDocument])->completeURL(stripLeadingAndTrailingHTMLSpaces(urlString));
1089 if (!url) url = [NSURL _web_URLWithString:[urlString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] relativeToURL:_baseURL];
1094 NSString *baseString = [element getAttribute:@"codebase"], *urlString = [element getAttribute:@"data"], *declareString = [element getAttribute:@"declare"];
1095 if (urlString && [urlString length] > 0 && ![@"true" isEqualToString:declareString]) {
1101 if (baseURL) url = [NSURL _web_URLWithString:[urlString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] relativeToURL:baseURL];
1102 if (!url) url =core([element ownerDocument])->completeURL(stripLeadingAndTrailingHTMLSpaces(urlString));
[all...]
/external/webkit/Source/WebCore/loader/
H A DFrameLoader.cpp709 String urlString(url.string());
710 if (urlString.isEmpty())
726 m_documentLoader->getIconLoadDecisionForIconURL(urlString);
732 IconLoadDecision decision = iconDatabase().synchronousLoadDecisionForIconURL(urlString, m_documentLoader.get());
739 LOG(IconDatabase, "FrameLoader %p might load icon %s later", this, urlString.ascii().data());
759 String urlString(url.string());
761 LOG(IconDatabase, "FrameLoader::startIconLoader() - Told not to load this icon, committing iconURL %s to database for pageURL mapping", urlString.ascii().data());
765 m_documentLoader->getIconDataForIconURL(urlString);
773 if (!iconDatabase().synchronousIconDataKnownForIconURL(urlString)) {
774 LOG(IconDatabase, "Told not to load icon %s but icon data is not yet available - registering for notification and requesting load from disk", urlString
1282 const String& urlString = url.string(); local
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DDumpRenderTree.mm756 NSString *urlString = [item URLString];
757 if ([[NSURL URLWithString:urlString] isFileURL]) {
758 NSRange range = [urlString rangeOfString:@"/LayoutTests/"];
759 urlString = [@"(file test):" stringByAppendingString:[urlString substringFromIndex:(range.length + range.location)]];
762 printf("%s", [urlString UTF8String]);
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserLibxml2.cpp383 String urlString = url.string(); local
387 if (urlString == "file:///etc/xml/catalog")
391 if (urlString.startsWith("file:///", false) && urlString.endsWith("/etc/catalog", false))
396 if (urlString.startsWith("http://www.w3.org/TR/xhtml", false))
400 if (urlString.startsWith("http://www.w3.org/Graphics/SVG", false))
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowCustom.cpp642 String urlString = valueToStringWithUndefinedOrNullCheck(exec, exec->argument(0)); local
652 RefPtr<DOMWindow> openedWindow = impl()->open(urlString, frameName, windowFeaturesString, activeDOMWindow(exec), firstDOMWindow(exec));
701 String urlString = valueToStringWithUndefinedOrNullCheck(exec, exec->argument(0)); local
710 impl()->showModalDialog(urlString, dialogFeaturesString, activeDOMWindow(exec), firstDOMWindow(exec), setUpDialog, &handler);
/external/webkit/Source/WebKit/android/jni/
H A DWebHistory.cpp329 // TODO: Figure out if we can't just use item->urlString() instead...
330 const WTF::String urlString = WebFrame::convertIDNToUnicode(item->url()); local
331 webItem->m_url = urlString.threadsafeCopy();
341 WTF::String url = item->urlString();
464 writeString(vector, item->urlString());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebContext.h194 void getPluginPath(const String& mimeType, const String& urlString, String& pluginPath);
H A DWebProcessProxy.h118 void addBackForwardItem(uint64_t itemID, const String& originalURLString, const String& urlString, const String& title, const CoreIPC::DataReference& backForwardData);
H A DWebContext.cpp523 void WebContext::getPluginPath(const String& mimeType, const String& urlString, String& pluginPath) argument
527 PluginInfoStore::Plugin plugin = pluginInfoStore()->findPlugin(newMimeType, KURL(ParsedURLString, urlString));
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapeBrowserFuncs.cpp274 String urlString(url);
277 urlString.replace('\r', "");
278 urlString.replace('\n', "");
280 return urlString;
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp552 CString urlString = url.string().utf8(); local
553 g_signal_emit_by_name(m_webView, "hovering-over-link", titleString.data(), urlString.data());
/external/chromium/webkit/glue/
H A Dwebkit_glue.cc206 std::string url = item.urlString().utf8();
H A Dglue_serialize.cc304 WriteString(item.urlString(), obj);
/external/webkit/Source/WebCore/plugins/
H A DPluginView.cpp580 String urlString = relativeURLString; local
583 urlString.replace('\n', "");
584 urlString.replace('\r', "");
586 return KURL(baseURL, urlString);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_history.cpp531 eina_stringshare_replace(&i->uri, core->urlString().utf8().data());
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebView.idl690 HRESULT setMainFrameURL([in] BSTR urlString);
697 HRESULT mainFrameURL([out, retval] BSTR* urlString);
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp751 RetainPtr<CFStringRef> urlString(AdoptCF, JSStringCopyCFString(0, jsURL));
752 RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithString(0, urlString.get(), 0));
797 RetainPtr<CFStringRef> urlString(AdoptCF, JSStringCopyCFString(0, jsURL));
798 ::setPersistentUserStyleSheetLocation(urlString.get());
/external/webkit/Tools/MiniBrowser/mac/
H A DBrowserWindowController.m735 - (void)loadURLString:(NSString *)urlString
738 [urlText setStringValue:urlString];
/external/webkit/Source/WebCore/bindings/v8/
H A DSerializedScriptValue.cpp987 String urlString; local
991 if (!readWebCoreString(&urlString))
995 fileList->append(File::create(path, KURL(ParsedURLString, urlString), type));
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebhistoryitem.cpp387 priv->uri = item->urlString().utf8();

Completed in 1393 milliseconds

12345