HomeSort by relevance Sort by last modified time
    Searched refs:urlString (Results 26 - 50 of 148) sorted by null

12 3 4 5 6

  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
AdditionalTextOutput.java 51 public void appendExceededDbQuotaMessage(String urlString, String databaseIdentifier) {
59 URL url = new URL(urlString);
66 Log.e(LOG_TAG, "urlString=" + urlString + " databaseIdentifier=" + databaseIdentifier,
  /developers/samples/android/connectivity/network/NetworkConnect/NetworkConnect/src/main/java/com/example/android/networkconnect/
MainActivity.java 118 private String loadFromNetwork(String urlString) throws IOException {
123 stream = downloadUrl(urlString);
136 * @param urlString A string representation of a URL.
140 private InputStream downloadUrl(String urlString) throws IOException {
142 URL url = new URL(urlString);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardListItem.h 51 const String& url() const { return m_item->urlString(); }
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.h 107 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);
109 void proxiesForURL(const String& urlString, String& proxyString);
110 void cookiesForURL(const String& urlString, String& cookieString);
111 void setCookiesForURL(const String& urlString, const String& cookieString);
PluginProxy.cpp 370 void PluginProxy::loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups)
372 m_pluginController->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups);
375 void PluginProxy::proxiesForURL(const String& urlString, String& proxyString)
377 proxyString = m_pluginController->proxiesForURL(urlString);
380 void PluginProxy::cookiesForURL(const String& urlString, String& cookieString)
382 cookieString = m_pluginController->cookiesForURL(urlString);
385 void PluginProxy::setCookiesForURL(const String& urlString, const String& cookieString)
387 m_pluginController->setCookiesForURL(urlString, cookieString);
  /external/webkit/Source/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/Source/WebCore/page/
Location.cpp 149 void Location::setHref(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow)
153 m_frame->domWindow()->setLocation(urlString, activeWindow, firstWindow);
235 void Location::assign(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow)
239 m_frame->domWindow()->setLocation(urlString, activeWindow, firstWindow);
242 void Location::replace(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow)
246 m_frame->domWindow()->setLocation(urlString, activeWindow, firstWindow, LockHistoryAndBackForwardList);
  /external/webkit/Source/WebCore/platform/win/
DragImageWin.cpp 150 String urlString = url.string();
154 label = urlString;
159 TextRun urlRun(urlString.impl());
213 urlString = StringTruncator::rightTruncate(urlString, imageSize.width() - (DragLabelBorderX * 2.0f), *urlFont);
215 WebCoreDrawDoubledTextAtPoint(context, urlString, textPos, *urlFont, topColor, bottomColor);
  /external/webkit/Source/WebCore/history/
HistoryItem.cpp 74 HistoryItem::HistoryItem(const String& urlString, const String& title, double time)
75 : m_urlString(urlString)
76 , m_originalURLString(urlString)
92 HistoryItem::HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double time)
93 : m_urlString(urlString)
94 , m_originalURLString(urlString)
212 const String& HistoryItem::urlString() const
270 void HistoryItem::setURLString(const String& urlString)
272 if (m_urlString != urlString) {
274 m_urlString = 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);
PhotoFragment.java 182 * @param urlString A String representation of the URL pointing to the picture
184 public void setPhoto(String urlString) {
185 mURLString = urlString;
  /external/apache-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/Source/WebKit/win/
WebHistory.cpp 617 hr = entry->URLString(&urlBStr);
621 RetainPtr<CFStringRef> urlString(AdoptCF, MarshallingHelpers::BSTRToCFStringRef(urlBStr));
627 IWebHistoryItem *matchingEntry = (IWebHistoryItem*)CFDictionaryGetValue(m_entriesByURL.get(), urlString.get());
631 hr = removeItemForURLString(urlString.get());
650 hr = entry->URLString(&urlBStr);
654 RetainPtr<CFStringRef> urlString(AdoptCF, MarshallingHelpers::BSTRToCFStringRef(urlBStr));
658 m_entriesByURL.get(), urlString.get()));
667 removeItemForURLString(urlString.get());
683 CFDictionarySetValue(m_entriesByURL.get(), urlString.get(), entry);
697 RetainPtr<CFStringRef> urlString(AdoptCF, url.string().createCFString())
    [all...]
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...]
  /external/webkit/Source/WebCore/history/cf/
HistoryPropertyList.cpp 122 stream.writeUniqueString(item->urlString());
137 ASSERT(item->urlString().startsWith("http:", false) || item->urlString().startsWith("https:", false));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
Uploader.java 64 final String urlString = context.getString(R.string.research_logger_upload_url);
65 if (TextUtils.isEmpty(urlString)) {
71 url = new URL(urlString);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 202 void PluginControllerProxy::loadURL(uint64_t requestID, const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody, bool allowPopups)
204 m_connection->connection()->send(Messages::PluginProxy::LoadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups), m_pluginInstanceID);
313 String PluginControllerProxy::proxiesForURL(const String& urlString)
317 if (!m_connection->connection()->sendSync(Messages::PluginProxy::CookiesForURL(urlString), Messages::PluginProxy::CookiesForURL::Reply(proxyString), m_pluginInstanceID))
323 String PluginControllerProxy::cookiesForURL(const String& urlString)
327 if (!m_connection->connection()->sendSync(Messages::PluginProxy::CookiesForURL(urlString), Messages::PluginProxy::CookiesForURL::Reply(cookieString), m_pluginInstanceID))
333 void PluginControllerProxy::setCookiesForURL(const String& urlString, const String& cookieString)
335 m_connection->connection()->send(Messages::PluginProxy::SetCookiesForURL(urlString, cookieString), m_pluginInstanceID);
  /external/webkit/Source/WebKit2/UIProcess/
WebInspectorProxy.cpp 198 void WebInspectorProxy::inspectedURLChanged(const String& urlString)
200 platformInspectedURLChanged(urlString);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebInspector.cpp 89 void WebInspector::inspectedURLChanged(const String& urlString)
91 WebProcess::shared().connection()->send(Messages::WebInspectorProxy::InspectedURLChanged(urlString), m_page->pageID());
  /development/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/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/WebProcess/Plugins/Netscape/
NetscapePlugin.h 77 void loadURL(const String& method, const String& urlString, const String& target, const WebCore::HTTPHeaderMap& headerFields,
99 String proxiesForURL(const String& urlString);
100 String cookiesForURL(const String& urlString);
101 void setCookiesForURL(const String& urlString, const String& cookieString);
NetscapePlugin.cpp 144 void NetscapePlugin::loadURL(const String& method, const String& urlString, const String& target, const HTTPHeaderMap& headerFields, const Vector<uint8_t>& httpBody,
149 m_pluginController->loadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups());
164 m_pendingURLNotifications.set(requestID, make_pair(urlString, notificationData));
276 String NetscapePlugin::proxiesForURL(const String& urlString)
278 return m_pluginController->proxiesForURL(urlString);
281 String NetscapePlugin::cookiesForURL(const String& urlString)
283 return m_pluginController->cookiesForURL(urlString);
286 void NetscapePlugin::setCookiesForURL(const String& urlString, const String& cookieString)
288 m_pluginController->setCookiesForURL(urlString, cookieString);
  /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);

Completed in 2161 milliseconds

12 3 4 5 6