/external/webkit/WebCore/platform/network/ |
HTTPParsers.h | 36 bool parseHTTPRefresh(const String& refresh, bool fromHttpEquivMeta, double& delay, String& url);
|
ResourceRequestBase.cpp | 72 data->m_url = url().copy(); 104 const KURL& ResourceRequestBase::url() const function in class:WebCore::ResourceRequestBase 111 void ResourceRequestBase::setURL(const KURL& url) 115 m_url = url; 143 if (url().protocolInHTTPFamily()) 160 if (url().protocolInHTTPFamily()) 193 if (url().protocolInHTTPFamily()) 224 if (url().protocolInHTTPFamily()) 239 if (url().protocolInHTTPFamily()) 249 if (url().protocolInHTTPFamily() [all...] |
/external/webkit/WebCore/platform/qt/ |
KURLQt.cpp | 38 KURL::KURL(const QUrl& url) 40 *this = KURL(KURL(), url.toEncoded().constData(), UTF8Encoding()); 93 QUrl url = QUrl::fromEncoded(ba); local 94 return url;
|
/external/webkit/WebCore/svg/ |
SVGURIReference.h | 40 static String getTarget(const String& url);
|
/external/webkit/WebKit/android/WebCoreSupport/ |
ContextMenuClientAndroid.h | 40 virtual void downloadURL(const KURL& url);
|
/external/webkit/WebKit/chromium/public/ |
WebNotificationPresenter.h | 62 // Checks the permission level for the given URL. If the URL is being displayed in a document 64 virtual Permission checkPermission(const WebURL& url, WebDocument* document) = 0;
|
WebSecurityPolicy.h | 43 // Registers a URL scheme to be treated as a local scheme (i.e., with the 48 // Registers a URL scheme to be treated as a noAccess scheme. This means 49 // that pages loaded with this URL scheme cannot access pages loaded with 50 // any other URL scheme. 59 // Returns whether the url should be allowed to see the referrer 61 WEBKIT_API static bool shouldHideReferrer(const WebURL& url, const WebString& referrer);
|
/external/webkit/WebKit/chromium/src/ |
WebPluginLoadObserver.h | 53 const WebURL& url() const { return m_notifyURL; } function in class:WebKit::WebPluginLoadObserver
|
/external/webkit/WebKit/haiku/WebCoreSupport/ |
ContextMenuClientHaiku.h | 43 virtual void downloadURL(const KURL& url);
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
ContextMenuClientQt.h | 44 virtual void downloadURL(const KURL& url);
|
/external/webkit/WebKit/win/Interfaces/ |
IWebResource.idl | 33 @discussion A WebResource represents a fully downloaded URL. 47 @method initWithData:URL:MIMEType:textEncodingName:frameName 50 @param URL The URL of the resource. 55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName; 57 HRESULT initWithData([in] IStream* data, [in] BSTR url, [in] BSTR mimeType, [in] BSTR textEncodingName, [in] BSTR frameName); 67 @method URL 68 @result The URL of the resource. 69 - (NSURL *)URL; [all...] |
/external/webkit/WebKit/wx/ |
WebFramePrivate.h | 50 WebCore::KURL url; member in class:WebViewFrameData
|
/external/webkit/WebKitTools/DumpRenderTree/ |
DumpRenderTree.h | 50 std::wstring urlSuitableForTestResult(const std::wstring& url);
|
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
testplugin.h | 40 const QUrl &url,
|
/external/webkit/WebKitTools/pywebsocket/ |
setup.py | 58 url='http://code.google.com/p/pywebsocket/', variable
|
/frameworks/base/core/java/android/webkit/ |
UrlInterceptRegistry.java | 47 * set the flag to control whether url intercept is enabled or disabled 60 * get the state of the url intercept, enabled or disabled 109 * Given an url, returns the CacheResult of the first 119 String url, Map<String, String> headers) { 126 CacheResult result = handler.service(url, headers); 135 * Given an url, returns the PluginData of the first 146 String url, Map<String, String> headers) { 153 PluginData data = handler.getPluginData(url, headers);
|
WebHistoryItem.java | 34 // The base url of this item. 36 // The original requested url of this item. 42 // The apple-touch-icon url for use when adding the site to the home screen 92 * Return the url of this history item. The url is the base url of this 93 * history item. See getTargetUrl() for the url that is the actual target of 95 * @return The base url of this history item. 104 * Return the original url of this history item. This was the requested 105 * url, the final url may be different as there might have been [all...] |
/frameworks/base/core/tests/coretests/src/android/content/ |
MemoryFileProvider.java | 118 public Cursor query(Uri url, String[] projectionIn, String selection, 124 public String getType(Uri url) { 125 int match = sURLMatcher.match(url); 132 throw new IllegalArgumentException("Unknown URL"); 137 public AssetFileDescriptor openAssetFile(Uri url, String mode) throws FileNotFoundException { 138 int match = sURLMatcher.match(url); 141 String sql = "SELECT _blob FROM data WHERE _id=" + url.getPathSegments().get(1); 142 return getBlobColumnAsAssetFile(url, mode, sql); 150 throw new FileNotFoundException("Error reading " + url + ":" + ex.toString()); 158 throw new FileNotFoundException("No files supported by provider at " + url); [all...] |
/frameworks/base/media/libmediaplayerservice/ |
MidiMetadataRetriever.cpp | 38 status_t MidiMetadataRetriever::setDataSource(const char *url) 40 LOGV("setDataSource: %s", url? url: "NULL pointer"); 47 return mMidiPlayer->setDataSource(url, NULL /* headers */);
|
VorbisMetadataRetriever.cpp | 34 status_t VorbisMetadataRetriever::setDataSource(const char *url) 36 LOGV("setDataSource: url(%s)", url? url: "NULL pointer"); 43 return mVorbisPlayer->setDataSource(url, NULL /* headers */);
|
/packages/apps/Browser/src/com/android/browser/ |
AddBookmarkPage.java | 82 String url = null; local 92 url = mOriginalUrl = mMap.getString("url"); 100 mAddress.setText(url); 126 String url = bundle.getString("url"); local 136 Bookmarks.addBookmark(null, cr, url, title, thumbnail, true); 138 new DownloadTouchIcon(cr, url).execute(mTouchIconUrl); 190 String url = unfilteredUrl.trim(); local 195 if (!url.toLowerCase().startsWith("javascript:")) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
AdtTestData.java | 25 import java.net.URL; 51 URL url = this.getClass().getClassLoader().getResource("."); //$NON-NLS-1$ local 56 mOsRootDataPath = FileLocator.resolve(url).getFile(); 58 sLogger.warning("IOException while using FileLocator, reverting to url"); 59 mOsRootDataPath = url.getFile(); 62 sLogger.info("Running as an plain JUnit test, using url as-is"); 63 mOsRootDataPath = url.getFile();
|
/dalvik/libcore/sql/src/main/java/SQLite/ |
JDBCDriver.java | 62 public boolean acceptsURL(String url) throws SQLException { 63 return url.startsWith("sqlite:/") || 64 url.startsWith("jdbc:sqlite:/"); 67 public Connection connect(String url, Properties info) 69 if (!acceptsURL(url)) { 73 args[0] = url; 98 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info)
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
DRTDesktopNotificationPresenter.cpp | 74 BSTR title, text, url; local 78 notification->contentsURL(&url); 79 printf("DESKTOP NOTIFICATION: contents at %S\n", url ? url : L""); 81 notification->iconURL(&url); 85 url ? url : L"",
|
/frameworks/base/core/java/android/net/ |
MailTo.java | 25 * MailTo URL parser 27 * This class parses a mailto scheme URL and then can be queried for 46 * Test to see if the given string is a mailto URL 47 * @param url string to be tested 48 * @return true if the string is a mailto URL 50 public static boolean isMailTo(String url) { 51 if (url != null && url.startsWith(MAILTO_SCHEME)) { 60 * @param url String containing a mailto URL [all...] |