Searched refs:resolve (Results 1 - 25 of 436) sorted by relevance

1234567891011>>

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/
H A DResolvable.java25 T resolve(); method in interface:Resolvable
/external/autotest/client/site_tests/video_WebRtcMediaRecorder/
H A Dmediarecorder_test_utils.js9 return new Promise(function(resolve, reject) {
14 resolve();
20 return new Promise(function(resolve, reject) {
31 resolve();
/external/turbine/java/com/google/turbine/binder/lookup/
H A DImportScope.java33 * com.google.turbine.binder.Resolve#resolve}.
40 default ClassSymbol resolve(SourceFile source, int position, LookupResult result) { method in interface:ImportScope.ResolveFunction
53 LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve); argument
59 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) {
60 LookupResult result = next.lookup(lookupKey, resolve);
64 return ImportScope.this.lookup(lookupKey, resolve);
77 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) {
84 default CompoundScope toScope(ResolveFunction resolve) { argument
89 return ImportScope.this.lookup(lookupKey, resolve);
H A DImportIndex.java59 CanonicalSymbolResolver resolve,
73 return namedImport(source, cpi, i, resolve);
100 /** Fully resolve the canonical name of a non-static named import. */
102 SourceFile source, TopLevelIndex cpi, ImportDecl i, CanonicalSymbolResolver resolve) {
108 ClassSymbol sym = resolve.resolve(source, i.position(), result);
120 * java.util.Map.Entry}. We cannot resolve {@code Entry} as a member of {@code HashMap} until the
121 * hierarchy analysis is complete, so for now we resolve the base {@code java.util.HashMap} and
131 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) {
132 ClassSymbol result = resolve
57 create( SourceFile source, CanonicalSymbolResolver resolve, final TopLevelIndex cpi, ImmutableList<ImportDecl> imports) argument
101 namedImport( SourceFile source, TopLevelIndex cpi, ImportDecl i, CanonicalSymbolResolver resolve) argument
139 lookup(LookupKey lookup, ResolveFunction resolve) argument
[all...]
H A DWildImportIndex.java67 /** Full resolve the type for a non-static on-demand import. */
77 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) {
113 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) {
114 ClassSymbol member = resolveImportBase(result, resolve, importResolver);
118 return resolveMember(member, resolve, importResolver, lookupKey);
125 ResolveFunction resolve,
128 ClassSymbol member = resolve.resolveOne(base, lookupKey.first());
140 ResolveFunction resolve,
144 member = resolve.resolveOne(member, bit);
156 public LookupResult lookup(LookupKey lookup, ResolveFunction resolve) { argument
123 resolveMember( ClassSymbol base, ResolveFunction resolve, CanonicalSymbolResolver importResolver, LookupKey lookupKey) argument
138 resolveImportBase( LookupResult result, ResolveFunction resolve, CanonicalSymbolResolver importResolver) argument
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/internal/
H A DClassNameResolverTest.java12 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();
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/internal/
H A DClassNameResolverTest.java15 assertEquals(TestApplication.class, ClassNameResolver.resolve("org.robolectric", "TestApplication"));
20 assertEquals(TestApplication.class, ClassNameResolver.resolve("org.robolectric", ".TestApplication"));
25 assertEquals(TestApplication.class, ClassNameResolver.resolve("org.robolectric", "org.robolectric.TestApplication"));
30 assertEquals(TestApplication.class, ClassNameResolver.resolve("org", ".robolectric.TestApplication"));
35 ClassNameResolver.resolve("org", "robolectric.TestApplication");
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
H A DCompilationUnitTest.java48 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
49 Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "Z.java"));
58 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
59 Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "A.java"));
67 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources", "com", "github", "javaparser", "storage")).normalize();
68 Path testFile = sourceRoot.resolve(Paths.get("B.java"));
77 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
78 Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "PrimaryType.java"));
92 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
93 Path testFile = sourceRoot.resolve(Path
[all...]
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver.hpp31 * The basic_resolver class template provides the ability to resolve a query
81 * This function is used to resolve a query into a list of endpoint entries.
95 iterator resolve(const query& q) function in class:asio::ip::basic_resolver
98 iterator i = this->service.resolve(this->implementation, q, ec);
99 asio::detail::throw_error(ec, "resolve");
105 * This function is used to resolve a query into a list of endpoint entries.
120 iterator resolve(const query& q, asio::error_code& ec) function in class:asio::ip::basic_resolver
122 return this->service.resolve(this->implementation, q, ec);
127 * This function is used to asynchronously resolve a query into a list of
132 * @param handler The handler to be called when the resolve operatio
184 iterator resolve(const endpoint_type& e) function in class:asio::ip::basic_resolver
211 iterator resolve(const endpoint_type& e, asio::error_code& ec) function in class:asio::ip::basic_resolver
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver.hpp31 * The basic_resolver class template provides the ability to resolve a query
81 * This function is used to resolve a query into a list of endpoint entries.
95 iterator resolve(const query& q) function in class:asio::ip::basic_resolver
98 iterator i = this->service.resolve(this->implementation, q, ec);
99 asio::detail::throw_error(ec, "resolve");
105 * This function is used to resolve a query into a list of endpoint entries.
120 iterator resolve(const query& q, asio::error_code& ec) function in class:asio::ip::basic_resolver
122 return this->service.resolve(this->implementation, q, ec);
127 * This function is used to asynchronously resolve a query into a list of
132 * @param handler The handler to be called when the resolve operatio
184 iterator resolve(const endpoint_type& e) function in class:asio::ip::basic_resolver
211 iterator resolve(const endpoint_type& e, asio::error_code& ec) function in class:asio::ip::basic_resolver
[all...]
/external/skia/experimental/svg/model/
H A DSkSVGEllipse.cpp58 SkRect SkSVGEllipse::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGEllipse
59 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal);
60 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical);
61 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal);
62 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical);
71 canvas->drawOval(this->resolve(lctx), paint);
76 path.addOval(this->resolve(ctx.lengthContext()));
H A DSkSVGLine.cpp58 std::tuple<SkPoint, SkPoint> SkSVGLine::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGLine
60 SkPoint::Make(lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizontal),
61 lctx.resolve(fY1, SkSVGLengthContext::LengthType::kVertical)),
62 SkPoint::Make(lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal),
63 lctx.resolve(fY2, SkSVGLengthContext::LengthType::kVertical)));
69 std::tie(p0, p1) = this->resolve(lctx);
76 std::tie(p0, p1) = this->resolve(ctx.lengthContext());
H A DSkSVGCircle.cpp49 std::tuple<SkPoint, SkScalar> SkSVGCircle::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGCircle
50 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal);
51 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical);
52 const auto r = lctx.resolve(fR , SkSVGLengthContext::LengthType::kOther);
60 std::tie(pos, r) = this->resolve(lctx);
70 std::tie(pos, r) = this->resolve(ctx.lengthContext());
H A DSkSVGRect.cpp77 SkRRect SkSVGRect::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGRect
79 const SkScalar rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal);
80 const SkScalar ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical);
87 canvas->drawRRect(this->resolve(lctx), paint);
92 path.addRRect(this->resolve(ctx.lengthContext()));
/external/skqp/experimental/svg/model/
H A DSkSVGEllipse.cpp58 SkRect SkSVGEllipse::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGEllipse
59 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal);
60 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical);
61 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal);
62 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical);
71 canvas->drawOval(this->resolve(lctx), paint);
76 path.addOval(this->resolve(ctx.lengthContext()));
H A DSkSVGLine.cpp58 std::tuple<SkPoint, SkPoint> SkSVGLine::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGLine
60 SkPoint::Make(lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizontal),
61 lctx.resolve(fY1, SkSVGLengthContext::LengthType::kVertical)),
62 SkPoint::Make(lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal),
63 lctx.resolve(fY2, SkSVGLengthContext::LengthType::kVertical)));
69 std::tie(p0, p1) = this->resolve(lctx);
76 std::tie(p0, p1) = this->resolve(ctx.lengthContext());
H A DSkSVGCircle.cpp49 std::tuple<SkPoint, SkScalar> SkSVGCircle::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGCircle
50 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal);
51 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical);
52 const auto r = lctx.resolve(fR , SkSVGLengthContext::LengthType::kOther);
60 std::tie(pos, r) = this->resolve(lctx);
70 std::tie(pos, r) = this->resolve(ctx.lengthContext());
H A DSkSVGRect.cpp77 SkRRect SkSVGRect::resolve(const SkSVGLengthContext& lctx) const { function in class:SkSVGRect
79 const SkScalar rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal);
80 const SkScalar ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical);
87 canvas->drawRRect(this->resolve(lctx), paint);
92 path.addRRect(this->resolve(ctx.lengthContext()));
/external/skia/infra/bots/
H A Dbootstrap_win_toolchain_json.py21 win_toolchain_utils.resolve(args.win_toolchain_json,
/external/skqp/infra/bots/
H A Dbootstrap_win_toolchain_json.py21 win_toolchain_utils.resolve(args.win_toolchain_json,
/external/v8/src/js/
H A Dpromise.js55 %_Call(promiseCapability.resolve, UNDEFINED, valuesArray);
64 var nextPromise = this.resolve(value);
81 %_Call(deferred.resolve, UNDEFINED, valuesArray);
110 var throwawayPromise = this.resolve(value).then(deferred.resolve,
/external/curl/docs/cmdline-opts/
H A Dipv4.d11 This option tells curl to resolve names to IPv4 addresses only, and not for
H A Dipv6.d11 This option tells curl to resolve names to IPv6 addresses only, and not for
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
H A DSmalideaTryBlock.java49 int endOffset = catchStatement.getEndLabel().resolve().getOffset() / 2;
55 return catchStatement.getStartLabel().resolve().getOffset() / 2;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DHttpUrlTest.java42 assertEquals(expected, HttpUrl.parse("http://host/").resolve(" "));
43 assertEquals(expected, HttpUrl.parse("http://host/").resolve(" . "));
113 assertEquals(HttpUrl.parse("http://host2/"), base.resolve("//host2"));
114 assertEquals(HttpUrl.parse("http://host/path"), base.resolve("/path"));
115 assertEquals(HttpUrl.parse("http://host/a/path"), base.resolve("path"));
116 assertEquals(HttpUrl.parse("http://host/a/b?query"), base.resolve("?query"));
117 assertEquals(HttpUrl.parse("http://host/a/b#fragment"), base.resolve("#fragment"));
118 assertEquals(HttpUrl.parse("http://host/a/b"), base.resolve(""));
119 assertEquals(HttpUrl.parse("http://host/path"), base.resolve("\\path"));
124 assertEquals(null, base.resolve("ft
[all...]

Completed in 599 milliseconds

1234567891011>>