Searched refs:URLString (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DFileSystemMac.mm72 String URLString;
80 wkSetMetadataURL((NSString *)info->URLString, (NSString *)info->referrer, (NSString *)String::fromUTF8(fileSystemRepresentation(info->path).data()));
87 void setMetadataURL(String& URLString, const String& referrer, const String& path)
89 NSURL *URL = URLWithUserTypedString(URLString, nil);
91 URLString = userVisibleString(URLByRemovingUserInfo(URL));
103 info->URLString = URLString;
H A DPasteboardMac.mm588 NSString *URLString = [URL absoluteString]; // Original data is ASCII-only, so there is no need to precompose.
589 if ([URLString length] == 0)
592 anchor->setAttribute(HTMLNames::hrefAttr, URLString);
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DWebHistoryItem.h57 @param URLString The URL string for the item.
64 the URLString and originalURLString will be the same.
66 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time;
77 @method URLString
79 @discussion The URLString may be different than the originalURLString if the page
83 - (NSString *)URLString;
H A DWebHistoryPrivate.h42 - (WebHistoryItem *)_itemForURLString:(NSString *)URLString;
H A DWebHistory.mm98 - (WebHistoryItem *)itemForURLString:(NSString *)URLString;
254 - (BOOL)removeItemForURLString:(NSString *)URLString
256 WebHistoryItem *entry = [_entriesByURL objectForKey:URLString];
260 [_entriesByURL removeObjectForKey:URLString];
297 NSString *URLString = [url _web_originalDataAsString];
298 if (!URLString)
299 URLString = @"";
300 WebHistoryItem *entry = [_entriesByURL objectForKey:URLString];
312 entry = [[WebHistoryItem alloc] initWithURLString:URLString title:title lastVisitedTimeInterval:[NSDate timeIntervalSinceReferenceDate]];
314 [_entriesByURL setObject:entry forKey:URLString];
[all...]
H A DWebHistoryItem.mm109 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time
112 return [self initWithWebCoreHistoryItem:HistoryItem::create(URLString, title, time)];
152 - (NSString *)URLString
184 return [[WebIconDatabase sharedIconDatabase] iconForURL:[self URLString] withSize:WebIconSmallSize];
277 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title displayTitle:(NSString *)displayTitle lastVisitedTimeInterval:(NSTimeInterval)time
279 return [self initWithWebCoreHistoryItem:HistoryItem::create(URLString, title, displayTitle, time)];
324 NSString *URLString = [dict _webkit_stringForKey:@""];
332 self = [self initWithURLString:URLString title:title displayTitle:[dict _webkit_stringForKey:displayTitleKey] lastVisitedTimeInterval:lastVisited];
336 if (![URLString canBeConvertedToEncoding:NSISOLatin1StringEncoding]) {
337 NSURL *tempURL = [NSURL _web_URLWithUserTypedString:URLString];
[all...]
H A DWebHistoryItemInternal.h47 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title displayTitle:(NSString *)displayTitle lastVisitedTimeInterval:(NSTimeInterval)time;
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSFileManagerExtras.h32 - (void)_webkit_setMetadataURL:(NSString *)URLString referrer:(NSString *)referrer atPath:(NSString *)path;
H A DWebNSFileManagerExtras.mm48 CFStringRef URLString;
57 WKSetMetadataURL((NSString *)info->URLString, (NSString *)info->referrer, (NSString *)info->path);
59 if (info->URLString)
60 CFRelease(info->URLString);
72 - (void)_webkit_setMetadataURL:(NSString *)URLString referrer:(NSString *)referrer atPath:(NSString *)path
74 ASSERT(URLString);
77 NSURL *URL = [NSURL _web_URLWithUserTypedString:URLString];
79 URLString = [[URL _web_URLByRemovingUserInfo] _web_userVisibleString];
91 info->URLString = URLString
[all...]
H A DWebKitErrors.m99 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URLString
101 return [self _webKitErrorWithDomain:WebKitErrorDomain code:code URL:[NSURL _web_URLWithUserTypedString:URLString]];
H A DWebNSPasteboardExtras.mm129 NSString *URLString = [self stringForType:NSStringPboardType];
130 if ([URLString _webkit_looksLikeAbsoluteURL]) {
131 NSURL *URL = [[NSURL _web_URLWithUserTypedString:URLString] _webkit_canonicalize];
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebHistoryItem.idl49 @param URLString The URL string for the item.
56 the URLString and originalURLString will be the same.
57 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time;
71 @method URLString
73 @discussion The URLString may be different than the originalURLString if the page
76 - (NSString *)URLString;
78 HRESULT URLString([out, retval] BSTR* url);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/mac/
H A DWebEditorClientMac.mm84 NSURL *WebEditorClient::canonicalizeURLString(NSString *URLString)
87 if ([URLString _webkit_looksLikeAbsoluteURL])
88 URL = [[NSURL _web_URLWithUserTypedString:URLString] _webkit_canonicalize];
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/MiniBrowser/
H A DAppController.rb104 objc_send( :initWithTitle, historyItem.URLString,
151 urlString = sender.representedObject.URLString
H A DMyDocument.rb206 self.loadURL(OSX::NSURL.URLWithString(historyItem.URLString))
/macosx-10.9.5/smb-697.95.1/lib/smbclient/
H A Dutil.c363 CFStringRef URLString = NULL; local
389 URLString = CreateURLCFString(DomainName, Username, Password, ServerName, FullPath, PortNumber);
390 if (URLString) {
391 CFIndex maxLen = (CFStringGetLength(URLString) * 3) + 1;
394 CFStringGetCString(URLString, urlStr, maxLen, kCFStringEncodingUTF8);
396 CFRelease(URLString);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DFileSystem.h212 void setMetadataURL(String& URLString, const String& referrer, const String& path);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebHistoryItem.h66 virtual HRESULT STDMETHODCALLTYPE URLString(
H A DWebHistory.cpp402 hr = entry->URLString(&urlBStr);
434 hr = entry->URLString(&urlBStr);
H A DWebHistoryItem.cpp580 HRESULT STDMETHODCALLTYPE WebHistoryItem::URLString( function in class:WebHistoryItem
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebBaseNetscapePluginView.mm159 NSString *URLString = [(NSString *)string _web_stringByStrippingReturnCharacters];
160 NSURL *URL = [NSURL _web_URLWithDataAsString:URLString relativeToURL:_baseURL.get()];
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebView.h631 @param URLString The URL to load in the mainFrame.
633 - (void)setMainFrameURL:(NSString *)URLString;
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebEditorClient.mm351 NSURL *WebEditorClient::canonicalizeURLString(NSString *URLString)
354 if ([URLString _webkit_looksLikeAbsoluteURL])
355 URL = [[NSURL _web_URLWithUserTypedString:URLString] _webkit_canonicalize];
/macosx-10.9.5/CF-855.17/
H A DCFURL.c1885 // It is the caller's responsibility to guarantee that if URLString is absolute, base is NULL. This is necessary to avoid duplicate processing for file system URLs, which had to decide whether to compute the cwd for the base; we don't want to duplicate that work. If parseURL is false, the caller is responsible for parsing the URL.
1886 static void _CFURLInit(struct __CFURL *url, CFStringRef URLString, CFURLRef base, Boolean parseURL) { argument
1889 url->_string = CFStringCreateCopy(CFGetAllocator(url), URLString);
2327 // Any escape sequences in URLString will be interpreted via UTF-8.
2328 CFURLRef CFURLCreateWithString(CFAllocatorRef allocator, CFStringRef URLString, CFURLRef baseURL) { argument
2330 if ( URLString && (baseURL || CFStringGetLength(URLString) != 0) ) {
2333 if ( !_CFURLInitWithURLString(url, URLString, true /* checkForLegalCharacters */, baseURL) ) {
2342 static CFURLRef _CFURLCreateWithArbitraryString(CFAllocatorRef allocator, CFStringRef URLString, CFURLRef baseURL) { argument
2344 if ( URLString
[all...]
H A DCFURL.h81 /* Any escape sequences in URLString will be interpreted via UTF-8. */
83 CFURLRef CFURLCreateWithString(CFAllocatorRef allocator, CFStringRef URLString, CFURLRef baseURL);

Completed in 166 milliseconds

12