Searched refs:URL (Results 201 - 225 of 413) sorted by relevance

1234567891011>>

/external/libvpx/examples/includes/geshi/geshi/
H A Dapplescript.php19 * URL settings to references
/external/webkit/Source/WebKit/mac/WebView/
H A DWebPreferences.h248 @param URL The location of the user style sheet.
250 - (void)setUserStyleSheetLocation:(NSURL *)URL;
/external/webkit/Source/WebKit/win/
H A DWebResource.h61 virtual HRESULT STDMETHODCALLTYPE URL(
H A DWebURLResponse.h66 virtual HRESULT STDMETHODCALLTYPE URL(
/external/webkit/Tools/DumpRenderTree/win/
H A DResourceLoadDelegate.cpp78 if (FAILED(request->URL(&urlBSTR)))
98 return L"<NSURLRequest URL " + url + L", main document URL " + mainDocumentURL + L", http method " + httpMethod + L">";
107 if (FAILED(response->URL(&urlBSTR)))
159 // If the error doesn't have a failing URL, we fake one by using the URL the resource had
169 result += L", failing URL \"" + urlSuitableForTestResult(failingURL) + L"\">";
221 if (FAILED(request->URL(&urlStr)))
336 if (FAILED(response->URL(&urlBSTR)))
/external/libxml2/
H A DxmlIO.c3799 * case it will handle encoding and update of the base URL in case of
3867 static int xmlNoNetExists(const char *URL) { argument
3870 if (URL == NULL)
3873 if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file://localhost/", 17))
3875 path = &URL[17];
3877 path = &URL[16];
3879 else if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file:///", 8)) {
3881 path = &URL[8];
3883 path = &URL[7];
3886 path = URL;
3906 xmlResolveResourceFromCatalog(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
3980 xmlDefaultExternalEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
4055 xmlLoadExternalEntity(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
4092 xmlNoNetExternalEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt) argument
[all...]
H A Dnanoftp.c126 char *path; /* the path within the URL */
294 * @URL: The URL used to initialize the context
296 * (Re)Initialize an FTP context by parsing the URL and finding
301 xmlNanoFTPScanURL(void *ctx, const char *URL) { argument
320 if (URL == NULL) return;
322 uri = xmlParseURIRaw(URL, 1);
358 * @URL: The URL used to update the context
360 * Update an FTP context by parsing the URL an
370 xmlNanoFTPUpdateURL(void *ctx, const char *URL) argument
427 xmlNanoFTPScanProxy(const char *URL) argument
472 xmlNanoFTPNewCtxt(const char *URL) argument
1992 xmlNanoFTPOpen(const char *URL) argument
[all...]
H A Dpattern.c920 xmlChar *URL = NULL; local
956 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE);
960 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
976 PUSH(XML_OP_ATTR, NULL, URL);
984 PUSH(XML_OP_ATTR, token, URL);
991 if (URL != NULL)
992 XML_PAT_FREE_STRING(ctxt, URL)
1012 xmlChar *URL = NULL; local
1077 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
1081 XML_PAT_COPY_NSNAME(ctxt, URL, ctx
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_model.h42 // BookmarkNode contains information about a starred entry: title, URL, favicon,
50 URL, enumerator in enum:BookmarkNode::Type
61 // Returns the URL.
63 // Sets the URL to the given value.
93 // node whose type is not URL.
94 bool is_folder() const { return type_ != URL; }
96 // Is this a URL?
97 bool is_url() const { return type_ == URL; }
146 // The URL. BookmarkModel maintains maps off this URL, i
[all...]
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/
H A DJmeDesktopSystem.java42 import java.net.URL;
55 public AssetManager newAssetManager(URL configFile) {
73 final URL iconUrl = JmeSystem.class.getResource(iconPath.startsWith("/") ? iconPath : "/" + iconPath);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DPropertyBoxParserImpl.java26 import java.net.URL;
44 Enumeration<URL> enumeration = Thread.currentThread().getContextClassLoader().getResources("isoparser-custom.properties");
47 URL url = enumeration.nextElement();
/external/okhttp/src/main/java/libcore/util/
H A DLibcore.java29 import java.net.URL;
209 public static int getEffectivePort(URL url) {
239 public static URI toUriLenient(URL url) throws URISyntaxException {
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginStream.mm120 URL:m_responseURL ? m_responseURL.get() : (NSURL *)m_requestURL];
144 : m_requestURL([request URL])
165 ASSERT(core([view webFrame])->document()->securityOrigin()->canDisplay([request URL]));
167 ASSERT([request URL]);
174 if (SecurityOrigin::shouldHideReferrer([request URL], core([view webFrame])->loader()->outgoingReferrer()))
250 LOG(Plugins, "NPP_NewStream URL=%@ MIME=%s error=%d", m_responseURL.get(), m_mimeType.data(), npErr);
323 // But we don't have the original bytes, we have NSStrings built by the URL loading system.
350 startStream([r URL], expectedContentLength, WKGetNSURLResponseLastModifiedDate(r), response.mimeType(), theHeaders);
438 // NPP_URLNotify expects the request URL, not the response URL
[all...]
H A DWebNetscapePluginView.mm1166 // If the OBJECT/EMBED tag has no SRC, the URL is passed to us as "".
1233 // The Java plug-in requires the first argument to be the base URL
1349 URL:(NSURL *)URL
1357 self = [super initWithFrame:frame pluginPackage:pluginPackage URL:URL baseURL:baseURL MIMEType:MIME attributeKeys:keys attributeValues:values loadManually:loadManually element:element];
1523 contentURL:[response URL]
1532 _manualStream->setRequestURL([[[self dataSource] request] URL]);
1583 NSURL *URL = [[JSPluginRequest request] URL];
[all...]
H A DWebBaseNetscapePluginView.mm128 URL:(NSURL *)URL
142 _sourceURL.adoptNS([URL copy]);
204 NSURL *URL = [NSURL _web_URLWithDataAsString:URLString relativeToURL:_baseURL.get()];
206 if (!URL)
209 return URL;
214 NSURL *URL = [self URLWithCString:URLCString];
215 if (!URL)
218 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL];
/external/webkit/Source/WebKit/wx/bindings/python/samples/
H A Dsimple.py106 URL = self.location.GetValue()
107 self.location.Append(URL)
108 self.webview.LoadURL(URL)
122 "Enter a full URL or local path",
/external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DGUnitExecuteMojo.java13 import java.net.URL;
233 * @throws MojoExecutionException Problem resolving artifacts to {@link java.net.URL urls}.
237 ArrayList<URL> classPathUrls = new ArrayList<URL>();
247 throw new MojoExecutionException( "Unable to build path URL [" + path + "]" );
251 return new URLClassLoader( classPathUrls.toArray( new URL[classPathUrls.size()] ), getClass().getClassLoader() );
254 protected static URL resolveLocalURL(Artifact artifact) throws MojoExecutionException {
/external/webkit/Source/WebCore/platform/mac/
H A DPasteboardMac.mm393 NSURL *URL = resource->url();
394 imageElement->setAttribute(HTMLNames::srcAttr, [URL isFileURL] ? [URL absoluteString] : resource->url());
445 NSURL *URL = [NSURL URLWithString:[NSString stringWithFormat:@"%@://%@/%@", WebDataProtocolScheme, UUIDString, relativePart]];
448 return URL;
469 NSURL *URL = frame->editor()->client()->canonicalizeURLString(URLString);
470 if (URL)
471 return URL;
587 NSURL *URL = [NSURL URLFromPasteboard:m_pasteboard.get()];
593 NSString *URLString = [URL absoluteStrin
[all...]
/external/webkit/Source/WebCore/plugins/
H A Dnpfunctions.h45 typedef NPError (*NPN_GetURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, void* notifyData);
46 typedef NPError (*NPN_PostURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, uint32_t len, const char* buf, NPBool file, void* notifyData);
62 typedef NPError (*NPN_GetURLProcPtr)(NPP instance, const char* URL, const char* window);
63 typedef NPError (*NPN_PostURLProcPtr)(NPP instance, const char* URL, const char* window, uint32_t len, const char* buf, NPBool file);
112 typedef void (*NPP_URLNotifyProcPtr)(NPP instance, const char* URL, NPReason reason, void* notifyData);
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItem.mm161 // The first URL we loaded to get to where this history item points. Includes both client
274 + (WebHistoryItem *)entryWithURL:(NSURL *)URL
276 return [[[self alloc] initWithURL:URL title:nil] autorelease];
290 - (id)initWithURL:(NSURL *)URL target:(NSString *)target parent:(NSString *)parent title:(NSString *)title
292 return [self initWithWebCoreHistoryItem:HistoryItem::create(URL, target, parent, title)];
352 // Check if we've read a broken URL from the file that has non-Latin1 chars. If so, try to convert
434 - (id)initWithURL:(NSURL *)URL title:(NSString *)title
436 return [self initWithURLString:[URL _web_originalDataAsString] title:title lastVisitedTimeInterval:0];
553 - (NSURL *)URL
/external/okhttp/src/test/java/libcore/net/http/
H A DURLConnectionTest.java43 import java.net.URL;
123 private static OkHttpConnection openConnection(URL url) {
127 private static OkHttpConnection openConnection(URL url, Proxy proxy) {
399 URL url = server.getUrl("/");
527 URL url = new URL("http://android.com/foo");
576 URL url = server.getUrl("/foo");
617 URL url = new URL("https://android.com/foo");
649 URL ur
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DResourceBundleTest.java27 import java.net.URL;
190 urlVec.addElement(new URL(url));
194 URL[] urls = new URL[urlVec.size()];
196 urls[i] = (URL) urlVec.elementAt(i);
228 Vector<URL> urlVec = new Vector<URL>();
239 urlVec.addElement(new URL(url));
248 urlVec.add(new URL("file:" + tmpdir));
253 URL[] url
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DCharInfo.java27 import java.net.URL;
211 // Load user specified resource file by using URL loading, it
226 URL url = new URL(entitiesResource);
/external/doclava/src/com/google/doclava/
H A DDoclavaDiff.java28 import java.net.URL;
54 sites.add(new FederatedSite("Android", new URL("http://manatee/doclava/android")));
55 sites.add(new FederatedSite("GWT", new URL("http://manatee/doclava/gwt")));
56 //sites.add(new FederatedSite("Crore", new URL("http://manatee/doclava/crore")));
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DApplication.java49 import java.net.URL;
147 URL url = null;
149 url = new URL(assetCfg);

Completed in 645 milliseconds

1234567891011>>