/external/webkit/WebCore/page/ |
History.cpp | 83 KURL History::urlForState(const String& urlString) 86 if (urlString.isEmpty()) 89 KURL absoluteURL(baseURL, urlString); 99 void History::stateObjectAdded(PassRefPtr<SerializedScriptValue> data, const String& title, const String& urlString, StateObjectType stateObjectType, ExceptionCode& ec) 104 KURL fullURL = urlForState(urlString); 115 if (!urlString.isEmpty())
|
/external/webkit/JavaScriptCore/interpreter/ |
CallFrame.cpp | 44 UString urlString; 47 interpreter()->retrieveLastCaller(this, signedLineNumber, sourceID, urlString, function); 48 printf("Callpoint => %s:%d\n", urlString.ascii(), signedLineNumber);
|
/external/webkit/WebKitTools/DumpRenderTree/gtk/ |
WorkQueueItemGtk.cpp | 50 gchar* urlString = JSStringCopyUTF8CString(m_url.get()); 51 WebKitNetworkRequest* request = webkit_network_request_new(urlString); 52 g_free(urlString);
|
/external/webkit/WebCore/rendering/ |
HitTestResult.cpp | 249 AtomicString urlString; 262 urlString = element->getAttribute(element->imageSourceAttributeName()); 266 return m_innerNonSharedNode->document()->completeURL(deprecatedParseURL(urlString)); 278 AtomicString urlString; 281 urlString = mediaElement->currentSrc(); 285 return m_innerNonSharedNode->document()->completeURL(deprecatedParseURL(urlString)); 296 AtomicString urlString; 298 urlString = m_innerURLElement->getAttribute(hrefAttr); 301 urlString = m_innerURLElement->getAttribute(XLinkNames::hrefAttr); 305 urlString = m_innerURLElement->getAttribute(hrefAttr) [all...] |
/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);
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/ |
SystemIDResolver.java | 83 String urlString; 87 urlString = "file://" + absolutePath; 89 urlString = "file:///" + absolutePath; 92 urlString = "file:" + localPath; 94 return replaceChars(urlString); 275 * @param urlString SystemID string 281 public static String getAbsoluteURI(String urlString, String base) 285 return getAbsoluteURI(urlString); 292 uri = new URI(baseURI, urlString);
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
SystemIDResolver.java | 76 String urlString; 80 urlString = "file://" + absolutePath; 82 urlString = "file:///" + absolutePath; 85 urlString = "file:" + localPath; 87 return replaceChars(urlString); 268 * @param urlString SystemID string 274 public static String getAbsoluteURI(String urlString, String base) 278 return getAbsoluteURI(urlString); 285 uri = new URI(baseURI, urlString);
|
/external/webkit/WebCore/bindings/js/ |
ScriptCallStack.cpp | 52 UString urlString; 55 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, urlString, function); 61 m_frames.append(ScriptCallFrame(m_caller->name(m_exec), urlString, lineNumber, args, skipArgumentCount)); 65 m_frames.append(ScriptCallFrame(UString(), urlString, lineNumber, args, skipArgumentCount));
|
ScriptCallFrame.cpp | 41 ScriptCallFrame::ScriptCallFrame(const UString& functionName, const UString& urlString, int lineNumber, const ArgList& args, unsigned skipArgumentCount) 43 , m_sourceURL(ParsedURLString, urlString)
|
JSWebSocketConstructor.cpp | 67 const String& urlString = args.at(0).toString(exec); 70 const KURL& url = context->completeURL(urlString);
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/ |
SourceTreeManager.java | 110 * @param urlString Value from an xsl:import or xsl:include's href attribute, 119 String base, String urlString, SourceLocator locator) 127 source = m_uriResolver.resolve(urlString, base); 132 String uri = SystemIDResolver.getAbsoluteURI(urlString, base); 228 * @param base The base URI to use if the urlString is relative. 229 * @param urlString An absolute or relative URL string. 233 * base and urlString. 238 String base, String urlString, SourceLocator locator, XPathContext xctxt) 245 Source source = this.resolveURI(base, urlString, locator); 247 // System.out.println("getSourceTree - base: "+base+", urlString: "+urlString+", source: "+source.getSystemId()) [all...] |
/external/webkit/WebCore/bindings/v8/ |
ScriptCallFrame.cpp | 43 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& urlString, int lineNumber, const v8::Arguments& arguments, unsigned skipArgumentCount) 45 , m_sourceURL(ParsedURLString, urlString)
|
/external/webkit/WebCore/platform/chromium/ |
PasteboardChromium.cpp | 134 AtomicString urlString; 136 urlString = static_cast<Element*>(node)->getAttribute(HTMLNames::srcAttr); 139 urlString = static_cast<Element*>(node)->getAttribute(XLinkNames::hrefAttr); 143 urlString = element->getAttribute(element->imageSourceAttributeName()); 145 KURL url = urlString.isEmpty() ? KURL() : node->document()->completeURL(deprecatedParseURL(urlString));
|
/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;
|
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...] |
/external/webkit/WebCore/history/ |
HistoryItem.h | 74 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, double lastVisited) 76 return adoptRef(new HistoryItem(urlString, title, lastVisited)); 78 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, const String& alternateTitle, double lastVisited) 80 return adoptRef(new HistoryItem(urlString, title, alternateTitle, lastVisited)); 92 const String& urlString() const; 205 HistoryItem(const String& urlString, const String& title, double lastVisited); 206 HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double lastVisited);
|
HistoryItem.cpp | 64 HistoryItem::HistoryItem(const String& urlString, const String& title, double time) 65 : m_urlString(urlString) 66 , m_originalURLString(urlString) 78 HistoryItem::HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double time) 79 : m_urlString(urlString) 80 , m_originalURLString(urlString) 156 const String& HistoryItem::urlString() const 220 void HistoryItem::setURLString(const String& urlString) 222 if (m_urlString != urlString) { 224 m_urlString = urlString; [all...] |
/external/webkit/WebKit/win/ |
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...] |
WebHistoryItem.h | 59 /* [in] */ BSTR urlString, 66 virtual HRESULT STDMETHODCALLTYPE URLString(
|
/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]);
|
/external/webkit/WebCore/history/cf/ |
HistoryPropertyList.cpp | 122 stream.writeUniqueString(item->urlString()); 137 ASSERT(item->urlString().startsWith("http:", false) || item->urlString().startsWith("https:", false));
|
/external/guava/src/com/google/common/base/ |
FinalizableReferenceQueue.java | 274 String urlString = finalizerUrl.toString(); 275 if (!urlString.endsWith(finalizerPath)) { 276 throw new IOException("Unsupported path style: " + urlString); 278 urlString = urlString.substring(0, 279 urlString.length() - finalizerPath.length()); 280 return new URL(finalizerUrl, urlString);
|
/external/webkit/WebKit/win/WebCoreSupport/ |
WebDragClient.cpp | 240 String urlString = url.string(); 244 label = urlString; 249 TextRun urlRun(urlString.impl()); 305 urlString = StringTruncator::rightTruncate(urlString, imageSize.width() - (DRAG_LABEL_BORDER_X * 2.0f), *urlFont, false); 307 WebCoreDrawDoubledTextAtPoint(context, urlString, textPos, *urlFont, topColor, bottomColor);
|