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

  /external/webkit/Source/JavaScriptCore/wtf/url/api/
URLString.h 33 // URLString represents a string that's a canonicalized URL.
34 class URLString {
36 URLString() { }
43 // URLString can only be constructed by a ParsedURL.
44 explicit URLString(const String& string)
  /external/webkit/Source/WebCore/platform/
URLString.h 35 class URLString {
42 explicit URLString(const String& string)
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ESDescriptor.java 39 bit(8) URLstring[URLlength];
73 String URLString;
98 URLString = IsoTypeReader.readString(bb, URLLength);
189 IsoTypeWriter.writeUtf8String(out, URLString);
289 return URLString;
292 public void setURLString(String URLString) {
293 this.URLString = URLString;
322 sb.append(", URLString='").append(URLString).append('\'');
    [all...]
  /external/webkit/Source/WebKit/win/
WebHistoryItem.cpp 190 if (lastVisitWasHTTPNonGet && (protocolIs(m_historyItem->urlString(), "http") || protocolIs(m_historyItem->urlString(), "https")))
215 if (!m_historyItem->urlString().isEmpty()) {
217 values[keyCount++] = m_historyItem->urlString().createCFString();
238 ASSERT(m_historyItem->urlString().startsWith("http:", false) || m_historyItem->urlString().startsWith("https:", false));
298 *hasURL = m_historyItem->urlString().isEmpty() ? FALSE : TRUE;
558 /* [in] */ BSTR urlString,
563 m_historyItem = HistoryItem::create(String(urlString, SysStringLen(urlString)), String(title, SysStringLen(title)), MarshallingHelpers::DATEToCFAbsoluteTime(lastVisited))
    [all...]

Completed in 111 milliseconds