HomeSort by relevance Sort by last modified time
    Searched refs:URLString (Results 1 - 20 of 20) sorted by null

  /external/webkit/WebKit/mac/History/
WebHistoryItem.h 57 @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;
WebHistoryPrivate.h 42 - (WebHistoryItem *)_itemForURLString:(NSString *)URLString;
WebHistory.mm 94 - (WebHistoryItem *)itemForURLString:(NSString *)URLString;
249 - (BOOL)removeItemForURLString:(NSString *)URLString
251 WebHistoryItem *entry = [_entriesByURL objectForKey:URLString];
255 [_entriesByURL removeObjectForKey:URLString];
292 NSString *URLString = [url _web_originalDataAsString];
293 WebHistoryItem *entry = [_entriesByURL objectForKey:URLString];
305 entry = [[WebHistoryItem alloc] initWithURLString:URLString title:title lastVisitedTimeInterval:[NSDate timeIntervalSinceReferenceDate]];
307 [_entriesByURL setObject:entry forKey:URLString];
321 NSString *URLString = [entry URLString];
    [all...]
WebHistoryItem.mm 108 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time
111 return [self initWithWebCoreHistoryItem:HistoryItem::create(URLString, title, time)];
153 - (NSString *)URLString
156 return nsStringNilIfEmpty(core(_private)->urlString());
185 return [[WebIconDatabase sharedIconDatabase] iconForURL:[self URLString] withSize:WebIconSmallSize];
202 return [(NSString*)core(_private)->urlString() hash];
212 return core(_private)->urlString() == core(((WebHistoryItem*)anObject)->_private)->urlString();
219 NSMutableString *result = [NSMutableString stringWithFormat:@"%@ %@", [super description], (NSString*)coreItem->urlString()];
299 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title displayTitle:(NSString *)displayTitle lastVisitedTimeInterval:(NSTimeInter (…)
    [all...]
WebHistoryItemInternal.h 48 - (id)initWithURLString:(NSString *)URLString title:(NSString *)title displayTitle:(NSString *)displayTitle lastVisitedTimeInterval:(NSTimeInterval)time;
  /external/webkit/WebKit/mac/Misc/
WebNSFileManagerExtras.m 151 NSString *URLString;
159 WKSetMetadataURL(info->URLString, info->referrer, info->path);
161 HardRelease(info->URLString);
169 - (void)_webkit_setMetadataURL:(NSString *)URLString referrer:(NSString *)referrer atPath:(NSString *)path
171 ASSERT(URLString);
174 NSURL *URL = [NSURL _web_URLWithUserTypedString:URLString];
176 URLString = [[URL _web_URLByRemovingUserInfo] _web_userVisibleString];
188 info->URLString = HardRetainWithNSRelease([URLString copy]);
WebNSFileManagerExtras.h 40 - (void)_webkit_setMetadataURL:(NSString *)URLString referrer:(NSString *)referrer atPath:(NSString *)path;
WebNSPasteboardExtras.mm 132 NSString *URLString = [self stringForType:NSStringPboardType];
133 if ([URLString _webkit_looksLikeAbsoluteURL]) {
134 NSURL *URL = [[NSURL _web_URLWithUserTypedString:URLString] _webkit_canonicalize];
WebKitErrors.m 99 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URLString
101 return [self _webKitErrorWithDomain:WebKitErrorDomain code:code URL:[NSURL _web_URLWithUserTypedString:URLString]];
  /external/webkit/WebKit/win/Interfaces/
IWebHistoryItem.idl 49 @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;
59 HRESULT initWithURLString([in] BSTR urlString, [in] BSTR title, [in] DATE lastVisited);
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);
  /external/webkit/WebKit/win/
WebHistoryItem.h 59 /* [in] */ BSTR urlString,
66 virtual HRESULT STDMETHODCALLTYPE URLString(
WebHistory.cpp 619 hr = entry->URLString(&urlBStr);
623 RetainPtr<CFStringRef> urlString(AdoptCF, MarshallingHelpers::BSTRToCFStringRef(urlBStr));
629 IWebHistoryItem *matchingEntry = (IWebHistoryItem*)CFDictionaryGetValue(m_entriesByURL.get(), urlString.get());
633 hr = removeItemForURLString(urlString.get());
652 hr = entry->URLString(&urlBStr);
656 RetainPtr<CFStringRef> urlString(AdoptCF, MarshallingHelpers::BSTRToCFStringRef(urlBStr));
660 m_entriesByURL.get(), urlString.get()));
669 removeItemForURLString(urlString.get());
685 CFDictionarySetValue(m_entriesByURL.get(), urlString.get(), entry);
699 RetainPtr<CFStringRef> urlString(AdoptCF, url.string().createCFString())
    [all...]
WebHistoryItem.cpp 194 if (lastVisitWasHTTPNonGet && (protocolIs(m_historyItem->urlString(), "http") || protocolIs(m_historyItem->urlString(), "https")))
219 if (!m_historyItem->urlString().isEmpty()) {
221 values[keyCount++] = m_historyItem->urlString().createCFString();
242 ASSERT(m_historyItem->urlString().startsWith("http:", false) || m_historyItem->urlString().startsWith("https:", false));
302 *hasURL = m_historyItem->urlString().isEmpty() ? FALSE : TRUE;
562 /* [in] */ BSTR urlString,
567 m_historyItem = HistoryItem::create(String(urlString, SysStringLen(urlString)), String(title, SysStringLen(title)), MarshallingHelpers::DATEToCFAbsoluteTime(lastVisited))
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebView.h 637 @param URLString The URL to load in the mainFrame.
639 - (void)setMainFrameURL:(NSString *)URLString;
WebView.mm     [all...]
WebHTMLView.mm     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
DumpRenderTree.mm 195 static bool shouldIgnoreWebCoreNodeLeaks(const string& URLString)
205 // Match at the end of the URLString
206 if (!URLString.compare(URLString.length() - curIgnore.length(), curIgnore.length(), curIgnore))
714 NSString *urlString = [item URLString];
715 if ([[NSURL URLWithString:urlString] isFileURL]) {
716 NSRange range = [urlString rangeOfString:@"/LayoutTests/"];
717 urlString = [@"(file test):" stringByAppendingString:[urlString substringFromIndex:(range.length + range.location)]]
    [all...]
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 37 void WKSetMetadataURL(NSString *URLString, NSString *referrer, NSString *path);
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 201 NSString *URLString = [(NSString *)string _web_stringByStrippingReturnCharacters];
202 NSURL *URL = [NSURL _web_URLWithDataAsString:URLString relativeToURL:_baseURL.get()];
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 474 if (FAILED(item->URLString(&url)))
    [all...]

Completed in 79 milliseconds