Searched defs:resolve (Results 1 - 25 of 77) sorted by relevance

1234

/external/apache-http/src/org/apache/http/conn/scheme/
H A DHostNameResolver.java39 InetAddress resolve (String hostname) throws IOException; method in interface:HostNameResolver
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DParserLoader.java89 public synchronized Class loadClass(String name, boolean resolve) throws ClassNotFoundException { argument
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptPromiseResolver.h47 // (fulfill / resolve / reject) from C++ world.
97 inline void resolve(PassRefPtr<T>);
103 void resolve(ScriptValue);
109 void resolve(v8::Handle<v8::Value>);
126 void ScriptPromiseResolver::resolve(PassRefPtr<T> value) function in class:WebCore::ScriptPromiseResolver
129 resolve(toV8(value.get(), v8::Object::New(), m_isolate));
H A DScriptPromiseResolver.cpp102 void ScriptPromiseResolver::resolve(v8::Handle<v8::Value> value) function in class:WebCore::ScriptPromiseResolver
126 void ScriptPromiseResolver::resolve(ScriptValue value) function in class:WebCore::ScriptPromiseResolver
129 resolve(value.v8Value());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
H A DClassNameResolver.java12 public Class<? extends T> resolve() { method in class:ClassNameResolver
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java171 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);
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DViewportStyleResolver.cpp76 void ViewportStyleResolver::resolve() function in class:WebCore::ViewportStyleResolver
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.lua241 local function resolve(name) function
270 resolve(funcname)
274 resolve(name)[scope] = true
/external/v8/tools/gcmole/
H A Dgcmole.lua238 local function resolve(name) function
267 resolve(funcname)
271 resolve(name)[scope] = true
/external/chromium-trace/trace-viewer/build/
H A Dparse_deps.py32 The dependency resolution code in Module.resolve will find bits of code in the
200 def resolve(self, all_resources, resource_finder): member in class:Module
228 module.resolve(all_resources, resource_finder)
362 module.resolve(all_resources, resource_finder)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCustomElementRegistrationContext.cpp78 resolve(element.get(), nullAtom);
84 resolve(element, type);
87 void CustomElementRegistrationContext::resolve(Element* element, const AtomicString& typeExtension) function in class:WebCore::CustomElementRegistrationContext
H A DViewportArguments.cpp100 PageScaleConstraints ViewportArguments::resolve(const FloatSize& initialViewportSize, const FloatSize& deviceSize, int defaultWidth) const function in class:WebCore::ViewportArguments
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawBitmap.cpp154 resolve();
160 resolve();
180 void SkImageBaseBitmap::resolve() { function in class:SkImageBaseBitmap
H A DSkDrawBitmap.h63 void resolve() const { (const_cast<SkImageBaseBitmap*>(this))->resolve(); } function in class:SkImageBaseBitmap
64 void resolve();
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRenderTarget.cpp50 void GrRenderTarget::resolve() { function in class:GrRenderTarget
/external/guava/guava-tests/test/com/google/common/base/
H A DFinalizableReferenceQueueTest.java147 protected synchronized Class<?> loadClass(String name, boolean resolve) argument
152 if (resolve) {
158 return super.loadClass(name, resolve);
/external/javassist/src/main/javassist/tools/web/
H A DViewer.java112 protected synchronized Class loadClass(String name, boolean resolve) argument
122 if (resolve)
/external/skia/src/animator/
H A DSkDrawBitmap.cpp154 resolve();
160 resolve();
180 void SkImageBaseBitmap::resolve() { function in class:SkImageBaseBitmap
H A DSkDrawBitmap.h63 void resolve() const { (const_cast<SkImageBaseBitmap*>(this))->resolve(); } function in class:SkImageBaseBitmap
64 void resolve();
/external/skia/src/gpu/
H A DGrRenderTarget.cpp50 void GrRenderTarget::resolve() { function in class:GrRenderTarget
/external/chromium/net/http/
H A Dhttp_auth_handler_mock.cc27 void HttpAuthHandlerMock::SetResolveExpectation(Resolve resolve) { argument
29 resolve_ = resolve;
/external/chromium_org/net/http/
H A Dhttp_auth_handler_mock.cc31 void HttpAuthHandlerMock::SetResolveExpectation(Resolve resolve) { argument
33 resolve_ = resolve;
/external/javassist/src/main/javassist/
H A DLoader.java302 protected Class loadClass(String name, boolean resolve) argument
316 if (resolve)
/external/chromium_org/third_party/jinja2/
H A Druntime.py102 `__getitem__`, `__contains__`). Additionally there is a :meth:`resolve`
143 def resolve(self, key): member in class:Context
219 item = self.resolve(key)
/external/emma/core/java12/com/vladium/emma/rt/
H A DInstrClassLoader.java77 public synchronized final Class loadClass (final String name, final boolean resolve) argument
82 if (trace1) m_log.trace1 ("loadClass", "(" + name + ", " + resolve + "): nest level " + m_nestLevel);
153 if (resolve) resolveClass (c); // this never happens in J2SE JVMs

Completed in 930 milliseconds

1234