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

1 2 3 4 5 6 7 8 91011>>

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/
Resolvable.java 25 T resolve(); method in interface:Resolvable
  /cts/hostsidetests/appsecurity/test-apps/OrderedActivityApp/src/android/appsecurity/cts/orderedactivity/
PackageResolutionTest.java 43 final List<ResolveInfo> resolve = pm.queryIntentActivities(intent, 0 /*flags*/); local
45 assertNotNull(resolve);
46 assertEquals(4, resolve.size());
48 resolve.get(0).activityInfo.name);
50 resolve.get(1).activityInfo.name);
52 resolve.get(2).activityInfo.name);
54 resolve.get(3).activityInfo.name);
63 final List<ResolveInfo> resolve = pm.queryIntentServices(intent, 0 /*flags*/); local
65 assertNotNull(resolve);
66 assertEquals(4, resolve.size())
83 final List<ResolveInfo> resolve = pm.queryBroadcastReceivers(intent, 0 \/*flags*\/); local
    [all...]
  /art/test/626-const-class-linking/src/
MisbehavingLoader.java 36 protected Class<?> loadClass(String name, boolean resolve)
40 return super.loadClass(name, resolve);
43 return defining_loader.loadClass("Helper2", resolve);
45 return super.loadClass(name, resolve);
DelegatingLoader.java 37 protected Class<?> loadClass(String name, boolean resolve)
41 return defining_loader.loadClass(name, resolve);
43 return super.loadClass(name, resolve);
RacyMisbehavingLoader.java 58 protected Class<?> loadClass(String name, boolean resolve)
66 result = defining_loaders[my_index & 1].loadClass(name, resolve);
73 result = defining_loaders[my_index & 1].loadClass("Test3", resolve);
77 return super.loadClass(name, resolve);
  /art/test/1003-metadata-section-strings/
run 17 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile -Xcompiler-option --resolve-startup-const-strings=true
  /external/desugar/java/com/google/devtools/build/android/desugar/io/
ThrowingClassLoader.java 19 protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException {
23 return super.loadClass(name, resolve);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/internal/
ClassNameResolverTest.java 15 assertEquals(TestApplication.class, ClassNameResolver.resolve("org.robolectric.shadows.testing", "TestApplication"));
20 assertEquals(TestApplication.class, ClassNameResolver.resolve("org.robolectric.shadows.testing", ".TestApplication"));
25 assertEquals(TestApplication.class, ClassNameResolver.resolve("org.robolectric.shadows.testing", "org.robolectric.shadows.testing.TestApplication"));
30 assertEquals(TestApplication.class, ClassNameResolver.resolve("org", ".robolectric.shadows.testing.TestApplication"));
35 ClassNameResolver.resolve("org", "robolectric.shadows.testing.TestApplication");
  /development/vndk/tools/definition-tool/tests/
test_elf_resolver.py 72 self.assertEqual('a', r.resolve('/system/lib/libreq.so', 'liba.so'))
73 self.assertEqual('c', r.resolve('/system/lib/libreq.so', 'libc.so'))
75 self.assertEqual(None, r.resolve('/system/lib/libreq.so', 'libe.so'))
78 r.resolve('/system/lib/libreq.so', 'libe.so',
82 r.resolve('/system/lib/libreq.so', 'libe.so',
87 r.resolve('/system/lib/libreq.so', 'liba.so',
91 r.resolve('/system/lib/libreq.so', 'liba.so',
  /external/turbine/java/com/google/turbine/binder/lookup/
ImportScope.java 31 * com.google.turbine.binder.Resolve#resolve}.
39 LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve);
45 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) {
46 LookupResult result = next.lookup(lookupKey, resolve);
50 return ImportScope.this.lookup(lookupKey, resolve);
63 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) {
70 default CompoundScope toScope(ResolveFunction resolve) {
75 return ImportScope.this.lookup(lookupKey, resolve);
  /development/tools/winscope/
webpack.config.js 25 path: path.resolve(__dirname, './dist'),
49 path.resolve(__dirname, '../../..'),
50 path.resolve(__dirname, '../../../external/protobuf/src')
63 resolve: {
66 path.resolve(__dirname, '../../..')
72 path.resolve(__dirname, 'loaders')
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
CompilationUnitTest.java 48 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(Paths.get("com", "github", "javaparser", "storage", "PrimaryType.java"))
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver.hpp 31 * 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/wasm-skp-debugger/
ready.js 5 return new Promise(function (resolve, reject) {
8 resolve(Module);
11 resolve(Module);
  /external/skia/modules/canvaskit/
ready.js 5 return new Promise(function (resolve, reject) {
8 resolve(Module);
11 resolve(Module);
  /external/skia/modules/pathkit/
ready.js 5 return new Promise(function (resolve, reject) {
8 resolve(Module);
11 resolve(Module);
  /external/skia/experimental/svg/model/
SkSVGEllipse.cpp 58 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()));
SkSVGLine.cpp 58 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());
SkSVGCircle.cpp 49 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());
  /external/skqp/experimental/svg/model/
SkSVGEllipse.cpp 58 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()));
SkSVGLine.cpp 58 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());
SkSVGCircle.cpp 49 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());
  /external/skqp/experimental/canvaskit/
ready.js 5 return new Promise(function (resolve, reject) {
9 resolve(Module);
12 resolve(Module);
  /external/skqp/modules/pathkit/
ready.js 5 return new Promise(function (resolve, reject) {
9 resolve(Module);
12 resolve(Module);
  /external/python/cpython3/PC/layout/
__main__.py 10 sys.path.insert(0, str(Path(__file__).resolve().parent.parent))

Completed in 1065 milliseconds

1 2 3 4 5 6 7 8 91011>>