/external/webkit/Source/WebKit/mac/Misc/ |
WebNSFileManagerExtras.h | 32 - (void)_webkit_setMetadataURL:(NSString *)URLString referrer:(NSString *)referrer atPath:(NSString *)path;
|
WebKitErrors.m | 99 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URLString 101 return [self _webKitErrorWithDomain:WebKitErrorDomain code:code URL:[NSURL _web_URLWithUserTypedString:URLString]];
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundleBackForwardListItem.h | 51 const String& url() const { return m_item->urlString(); }
|
/external/webkit/Tools/MiniBrowser/mac/ |
BrowserWindowController.h | 51 - (void)loadURLString:(NSString *)urlString;
|
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/ |
NetworkActivity.java | 215 private String loadXmlFromNetwork(String urlString) throws XmlPullParserException, IOException { 235 stream = downloadUrl(urlString); 265 private InputStream downloadUrl(String urlString) throws IOException { 266 URL url = new URL(urlString);
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
PluginObject.cpp | 539 NPUTF8* urlString = createCStringFromNPVariant(&args[0]); 541 NPError npErr = browser->geturl(obj->npp, urlString, targetString); 542 free(urlString); 549 NPUTF8* urlString = createCStringFromNPVariant(&args[0]); 550 NPError npErr = browser->geturl(obj->npp, urlString, 0); 551 free(urlString); 566 NPUTF8* urlString = createCStringFromNPVariant(&args[0]); 571 browser->geturlnotify(obj->npp, urlString, targetString, callbackIdentifier); 573 free(urlString); 767 NPString urlString = NPVARIANT_TO_STRING(args[0]) [all...] |
/external/webkit/Tools/DumpRenderTree/mac/ |
DumpRenderTree.mm | 205 static bool shouldIgnoreWebCoreNodeLeaks(const string& URLString) 215 // Match at the end of the URLString 216 if (!URLString.compare(URLString.length() - curIgnore.length(), curIgnore.length(), curIgnore)) 756 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)]] [all...] |
/external/webkit/Source/WebCore/platform/qt/ |
PasteboardQt.cpp | 146 QString urlString = url.string(); 147 md->setText(urlString);
|
/external/webkit/Source/WebKit/chromium/src/ |
WebHistoryItem.cpp | 63 WebString WebHistoryItem::urlString() const 65 return m_private->urlString();
|
/external/webkit/Source/WebKit/win/ |
WebHistory.h | 148 HRESULT removeItemForURLString(CFStringRef urlString); 156 HRESULT itemForURLString(CFStringRef urlString, IWebHistoryItem** item) const;
|
WebIconDatabase.cpp | 270 String urlString(url, SysStringLen(url)); 274 iconDatabase().synchronousIconForPageURL(urlString, IntSize(0, 0)); 278 *result = !(iconDatabase().synchronousIconURLForPageURL(urlString).isEmpty());
|
/external/webkit/Source/WebKit2/PluginProcess/ |
PluginControllerProxy.h | 84 virtual void loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const WebCore::HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups); 101 virtual void setCookiesForURL(const String& urlString, const String& cookieString);
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebInspectorProxy.cpp | 198 void WebInspectorProxy::inspectedURLChanged(const String& urlString) 200 platformInspectedURLChanged(urlString);
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
WebInspectorProxyMac.mm | 137 void WebInspectorProxy::platformInspectedURLChanged(const String& urlString) 139 NSString *title = [NSString stringWithFormat:WEB_UI_STRING("Web Inspector ? %@", "Web Inspector window title"), (NSString *)urlString];
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebInspectorProxyWin.cpp | 190 void WebInspectorProxy::platformInspectedURLChanged(const String& urlString) 193 String title = makeString("Web Inspector ", static_cast<UChar>(0x2014), ' ', urlString);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
PluginController.h | 57 virtual void loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, 106 virtual void setCookiesForURL(const String& urlString, const String& cookieString) = 0;
|
PluginView.h | 122 virtual void loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, 141 virtual void setCookiesForURL(const String& urlString, const String& cookieString);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/ |
WebErrorsMac.mm | 101 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URLString 103 return [self _webKitErrorWithDomain:WebError::webKitErrorDomain() code:code URL:[NSURL URLWithString:URLString]];
|
/external/webkit/Tools/DumpRenderTree/win/ |
WorkQueueItemWin.cpp | 73 wstring urlString = jsStringRefToWString(m_url.get()); 74 BSTR urlBSTR = SysAllocString(urlString.c_str());
|
DumpRenderTree.cpp | 140 wstring urlSuitableForTestResult(const wstring& urlString) 142 RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(urlString.c_str()), urlString.length() * sizeof(wstring::value_type), kCFStringEncodingUTF16, 0)); 146 return urlString; 151 return urlString; 156 return urlString; 160 return urlString; 171 wstring lastPathComponent(const wstring& urlString) 173 if (urlString.empty()) 174 return urlString; [all...] |
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
DisplayActivity.java | 413 String urlString; 428 urlString = intent.getDataString(); 434 if (!urlString.equals(photoFragment.getURLString())) { 437 photoFragment.setPhoto(urlString); 449 photoFragment.setPhoto(urlString);
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertReceiver.java | [all...] |
/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
web_drop_target.mm | 220 NSString* urlString = [urls objectAtIndex:0]; 221 if ([urlString length]) { 224 const char* utf8Url = [urlString UTF8String];
|
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/ |
main.m | 160 NSString *urlString = [NSString stringWithUTF8String:argv[i]]; 161 if (urlString) 162 obj->movieURL = [[NSURL URLWithString:urlString] retain];
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8LocationCustom.cpp | 222 String urlString = toWebCoreString(args[0]); 224 impl->replace(urlString, state->activeWindow(), state->firstWindow()); 235 String urlString = toWebCoreString(args[0]); 237 impl->assign(urlString, state->activeWindow(), state->firstWindow());
|