HomeSort by relevance Sort by last modified time
    Searched refs:resolve (Results 1 - 25 of 540) 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/robolectric/src/test/java/com/xtremelabs/robolectric/internal/
ClassNameResolverTest.java 12 assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs.robolectric", "TestApplication").resolve());
17 assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs.robolectric", ".TestApplication").resolve());
22 assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs.robolectric", "com.xtremelabs.robolectric.TestApplication").resolve());
27 assertEquals(TestApplication.class, new ClassNameResolver<Application>("com.xtremelabs", ".robolectric.TestApplication").resolve());
32 new ClassNameResolver<Application>("com.xtremelabs", "robolectric.TestApplication").resolve(); method
  /external/apache-http/src/org/apache/http/conn/scheme/
HostNameResolver.java 39 InetAddress resolve (String hostname) throws IOException; method in interface:HostNameResolver
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImportStateResolver.h 46 HTMLImportState resolve() const;
  /libcore/luni/src/test/java/libcore/java/net/
URITest.java 287 URI uri = base.resolve("another");
296 URI uri = base.resolve("#another");
310 assertEquals("http://host/another#fragment", base.resolve("another#fragment").toString());
315 assertEquals("http://host/a/d", base.resolve("../d").toString());
320 assertEquals("http://host/a/b/d/e", base.resolve("d/e").toString());
325 assertEquals("http://host/d", base.resolve("/d").toString());
330 assertEquals("http://host2/d/e", base.resolve("http://host2/d/e").toString());
331 assertEquals("https://host2/d/e", base.resolve("https://host2/d/e").toString());
336 assertEquals("https://host2/d/e", base.resolve("https://host2/d/e").toString());
341 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);
  /external/chromium_org/v8/test/mjsunit/es6/
debug-promises-reentry.js 14 var p = new Promise(function(resolve, reject) { resolve(); });
16 new Promise(function(resolve, reject) { resolve(); });
mirror-promises.js 56 var resolved = new Promise(function(resolve, reject) { resolve() });
57 var rejected = new Promise(function(resolve, reject) { reject() });
58 var pending = new Promise(function(resolve, reject) {});
64 var resolvedv = new Promise(function(resolve, reject) { resolve('resolve') });
65 var rejectedv = new Promise(function(resolve, reject) { reject('reject') });
66 var thrownv = new Promise(function(resolve, reject) { throw 'throw' });
68 testPromiseMirror(resolvedv, "resolved", 'resolve');
    [all...]
debug-promises-throw-in-reject.js 16 var p = new Promise(function(resolve, reject) {
17 log.push("resolve");
18 resolve();
26 var resolve = function() { };
28 resolver(resolve, reject);
43 assertEquals(["resolve", "construct", "end main",
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSPropertyEquality.cpp 65 return a.backgroundColor().resolve(a.color()) == b.backgroundColor().resolve(b.color())
66 && a.visitedLinkBackgroundColor().resolve(a.color()) == b.visitedLinkBackgroundColor().resolve(b.color());
78 return a.borderBottomColor().resolve(a.color()) == b.borderBottomColor().resolve(b.color())
79 && a.visitedLinkBorderBottomColor().resolve(a.color()) == b.visitedLinkBorderBottomColor().resolve(b.color());
95 return a.borderLeftColor().resolve(a.color()) == b.borderLeftColor().resolve(b.color()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
net_unittests.js 39 return new Promise(function(resolve, reject) {
44 resolve(self.resolvePromises());
47 resolve(results);
57 return new Promise(function(resolve, reject) {
75 resolve();
checkout_unittests.js 37 return Promise.resolve();
46 return Promise.resolve();
70 return Promise.resolve();
78 return Promise.resolve();
129 return Promise.resolve();
133 return Promise.resolve();
builders_unittests.js 706 return Promise.resolve(kExampleBuilderStatusJSON);
    [all...]
treestatus_unittests.js 58 return Promise.resolve(closedTreeJson);
60 return Promise.resolve(openTreeJson);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedColor.cpp 56 Color fromColor = toSVGColorProperty(other)->m_styleColor.resolve(fallbackColor);
57 Color toColor = m_styleColor.resolve(fallbackColor);
70 Color fromColor = fromStyleColor.resolve(fallbackColor);
71 Color toColor = toStyleColor.resolve(fallbackColor);
72 Color toAtEndOfDurationColor = toAtEndOfDurationStyleColor.resolve(fallbackColor);
73 Color animatedColor = m_styleColor.resolve(fallbackColor);
96 Color fromColor = m_styleColor.resolve(fallbackColor);
97 Color toColor = toSVGColorProperty(toValue)->m_styleColor.resolve(fallbackColor);
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuotaCallbacksImpl.cpp 51 m_resolver->resolve(StorageInfo::create(usageInBytes, quotaInBytes));
56 m_resolver->resolve(StorageInfo::create(usageInBytes, grantedQuotaInBytes));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPromiseResolver.h 47 // (resolve / reject) from C++ world.
53 // 3. Call resolve or reject when the operation completes or
62 // by calling resolve or reject.
65 // resolver is already resolved or rejected. If you want to resolve a resolver
80 // Note that the underlying Promise is cleared when |resolve| or |reject|
85 void resolve(const T& value, ExecutionContext* executionContext) function in class:WebCore::ScriptPromiseResolver
89 // to resolve a Promise in a non-original V8 context.
90 return resolve(value);
101 void resolve(const T& value) function in class:WebCore::ScriptPromiseResolver
104 resolve(toV8Value(value))
112 template<typename T> void resolve(const T& value, v8::Handle<v8::Object> creationContext) function in class:WebCore::ScriptPromiseResolver
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/polyfills/
cacheStoragePolyfill.js 17 return Promise.resolve(this.cachesByName[key]);
23 return Promise.resolve(this.cachesByName.hasOwnProperty(key));
33 return Promise.resolve();
44 return Promise.resolve();
50 return Promise.resolve();
56 return Promise.resolve();
63 return Promise.resolve();
70 return Promise.resolve(Object.keys(this.cachesByName));
74 return Promise.resolve(Object.keys(this.cachesByName).map(function(key) {
80 return Promise.resolve(Object.keys(this.cachesByName).length)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.h 74 void setTextStrokeColor(const StyleColor& color) { m_textStrokeColor = color.resolve(Color()); m_textStrokeColorIsCurrentColor = color.isCurrentColor(); }
75 void setTextFillColor(const StyleColor& color) { m_textFillColor = color.resolve(Color()); m_textFillColorIsCurrentColor = color.isCurrentColor(); }
76 void setTextEmphasisColor(const StyleColor& color) { m_textEmphasisColor = color.resolve(Color()); m_textEmphasisColorIsCurrentColor = color.isCurrentColor(); }
77 void setVisitedLinkTextStrokeColor(const StyleColor& color) { m_visitedLinkTextStrokeColor = color.resolve(Color()); m_visitedLinkTextStrokeColorIsCurrentColor = color.isCurrentColor(); }
78 void setVisitedLinkTextFillColor(const StyleColor& color) { m_visitedLinkTextFillColor = color.resolve(Color()); m_visitedLinkTextFillColorIsCurrentColor = color.isCurrentColor(); }
79 void setVisitedLinkTextEmphasisColor(const StyleColor& color) { m_visitedLinkTextEmphasisColor = color.resolve(Color()); m_visitedLinkTextEmphasisColorIsCurrentColor = color.isCurrentColor(); }
  /art/runtime/
field_helper.cc 27 mirror::Class* FieldHelper::GetType(bool resolve) {
36 if (resolve && (type == nullptr)) {
  /external/chromium_org/content/test/data/service_worker/
worker_activate_rejected.js 6 event.waitUntil(new Promise(function(resolve, reject) {
worker_install_rejected.js 6 event.waitUntil(new Promise(function(resolve, reject) {
  /external/chromium_org/media/base/
cdm_promise.h 22 // This is only the base class, as parameter to resolve() varies.
58 virtual void resolve(const T& result);
66 // Specialization for no parameter to resolve().
73 virtual void resolve();
  /external/chromium_org/third_party/skia/src/animator/
SkDrawBitmap.h 63 void resolve() const { (const_cast<SkImageBaseBitmap*>(this))->resolve(); } function in class:SkImageBaseBitmap
64 void resolve();

Completed in 937 milliseconds

1 2 3 4 5 6 7 8 91011>>