HomeSort by relevance Sort by last modified time
    Searched refs:resolve (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /libcore/luni/src/main/java/javax/xml/transform/
URIResolver.java 37 * and the processor should try to resolve the URI itself.
40 * resolve the URI.
42 public Source resolve(String href, String base) method in interface:URIResolver
  /ndk/sources/host-tools/make-3.81/w32/include/
pathstuff.h 23 extern char * w32ify(char *file, int resolve);
  /external/apache-http/src/org/apache/http/conn/scheme/
HostNameResolver.java 39 InetAddress resolve (String hostname) throws IOException; method in interface:HostNameResolver
  /libcore/luni/src/test/java/libcore/java/net/
URITest.java 269 URI uri = base.resolve("another");
278 URI uri = base.resolve("#another");
292 assertEquals("http://host/another#fragment", base.resolve("another#fragment").toString());
297 assertEquals("http://host/a/d", base.resolve("../d").toString());
302 assertEquals("http://host/a/b/d/e", base.resolve("d/e").toString());
307 assertEquals("http://host/d", base.resolve("/d").toString());
312 assertEquals("http://host2/d/e", base.resolve("http://host2/d/e").toString());
313 assertEquals("https://host2/d/e", base.resolve("https://host2/d/e").toString());
318 assertEquals("https://host2/d/e", base.resolve("https://host2/d/e").toString());
323 assertEquals("http://another/d/e", base.resolve("//another/d/e").toString())
    [all...]
OldAndroidURITest.java 39 resolve("http://www.google.com/your",
44 private static void resolve(String base, String uri, String expected) { method in class:OldAndroidURITest
46 URI resolved = b.resolve(uri);
OldURITest.java 121 b.resolve((URI) null);
130 b.resolve((String) null);
137 b.resolve("http://a/b/c/g?y/./x\n");
  /external/webkit/Source/WebKit2/Platform/qt/
ModuleQt.cpp 46 // Unfortunately QLibrary::resolve is not const.
47 return const_cast<QLibrary*>(&m_lib)->resolve(functionName);
  /external/webkit/Source/WebCore/plugins/qt/
PluginPackageQt.cpp 43 NPP_GetValueProcPtr gv = (NPP_GetValueProcPtr)m_module->resolve("NP_GetValue");
46 (NPP_GetMIMEDescriptionProcPtr)m_module->resolve("NP_GetMIMEDescription");
107 gtk_init_ptr gtkInit = (gtk_init_ptr)module->resolve("gtk_init");
127 gtk_init_check_ptr gtkInitCheck = (gtk_init_check_ptr)library.resolve("gtk_init_check");
154 NP_Initialize = (NP_InitializeFuncPtr)m_module->resolve("NP_Initialize");
155 m_NPP_Shutdown = (NPP_ShutdownProcPtr)m_module->resolve("NP_Shutdown");
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/qt/
InjectedBundleQt.cpp 46 reinterpret_cast<WKBundleInitializeFunctionPtr>(m_platformBundle.resolve("WKBundleInitialize"));
  /external/doclava/src/com/google/doclava/
Doclava2.java 45 InfoBuilder.resolve();
72 InfoBuilder.resolve();
82 InfoBuilder.resolve();
  /external/skia/src/animator/
SkDrawBitmap.h 63 void resolve() const { (const_cast<SkImage*>(this))->resolve(); } function in class:SkImage
64 void resolve();
  /external/guava/guava-tests/test/com/google/common/base/
FinalizableReferenceQueueTest.java 147 protected synchronized Class<?> loadClass(String name, boolean resolve)
152 if (resolve) {
158 return super.loadClass(name, resolve);
  /dalvik/tests/068-classloader/src/
FancyLoader.java 184 protected Class<?> loadClass(String name, boolean resolve)
199 if (resolve)
209 if (resolve)
225 res = super.loadClass(name, resolve); // returns class or throws
  /external/apache-http/src/org/apache/http/client/utils/
URIUtils.java 171 public static URI resolve(final URI baseURI, final String reference) { method in class:URIUtils
172 return URIUtils.resolve(baseURI, URI.create(reference));
183 public static URI resolve(final URI baseURI, URI reference){ method in class:URIUtils
194 URI resolved = baseURI.resolve(reference);
  /frameworks/compile/mclinker/include/mcld/LD/
Resolver.h 60 virtual bool resolve(ResolveInfo & __restrict__ pOld,
  /sdk/monkeyrunner/scripts/
mr_pydoc.py 34 object, name = pydoc.resolve(str(clz), 0)
  /dalvik/dx/etc/
jasmin.jar 
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForVariable.java 78 // resolve() looks up the next level only, if null is returned
104 void resolve() { method in class:ImplForVariable
122 resolve(); method
127 resolve(); method
  /dalvik/vm/mterp/armv5te/
OP_SGET.S 17 beq .L${opcode}_resolve @ yes, do resolve
38 EXPORT_PC() @ resolve() could throw, so export now
OP_SPUT.S 17 beq .L${opcode}_resolve @ yes, do resolve
39 EXPORT_PC() @ resolve() could throw, so export now
  /external/webkit/Source/WebCore/platform/network/cf/
DNSCFNet.cpp 53 // When resolve queue is empty, we fire async resolution requests immediately (which is important if the prefetch is triggered by hovering).
111 void resolve(const String&);
130 // If there are no names queued, and few enough are in flight, resolve immediately (the mouse may be over a link).
136 resolve(name);
168 resolve(*currentName);
182 void DNSResolveQueue::resolve(const String& hostname) function in class:WebCore::DNSResolveQueue
  /dalvik/tests/086-null-super/src/
Main.java 111 public Class<?> loadClass(String name, boolean resolve)
118 return super.loadClass(name, resolve);
  /dalvik/tests/087-gc-after-link/src/
Main.java 120 public Class<?> loadClass(String name, boolean resolve)
127 return super.loadClass(name, resolve);
  /external/webkit/Tools/Scripts/
webkit-tools-completion.sh 92 complete -W "--continue --fix-merged --help --no-continue --no-warnings --warnings -c -f -h -w" resolve-ChangeLogs
  /external/chromium/net/base/
host_resolver_impl_unittest.cc 88 virtual int Resolve(const std::string& hostname,
135 virtual int Resolve(const std::string& hostname,
153 // Helper that represents a single Resolve() result, used to inspect all the
154 // resolve results by forwarding them to Delegate.
161 virtual void OnCompleted(ResolveRequest* resolve) = 0;
174 int err = resolver->Resolve(info_, &addrlist_, &callback_, &req_,
186 int err = resolver->Resolve(info, &addrlist_, &callback_, &req_,
225 // The result of the resolve.
271 int err = host_resolver->Resolve(info, &addrlist, NULL, NULL, log.bound());
306 int err = host_resolver->Resolve(info, &addrlist, &callback_, NULL
    [all...]

Completed in 1717 milliseconds

1 2 3 4 5 6 7 8 91011