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

123456789

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/
H A DResolvable.java25 T resolve(); method in interface:Resolvable
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DClassNameResolver.java5 public static <T> Class<T> resolve(String packageName, String className) throws ClassNotFoundException { method in class:ClassNameResolver
/external/skia/infra/bots/
H A Dwin_toolchain_utils.py56 def resolve(win_toolchain_json, new_path): function
/external/skqp/infra/bots/
H A Dwin_toolchain_utils.py56 def resolve(win_toolchain_json, new_path): function
/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/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
H A DInstrumentingLoader.java52 protected synchronized Class<?> loadClass(String name, boolean resolve) argument
69 if (resolve) {
74 return super.loadClass(name, resolve);
H A DTargetLoader.java80 protected synchronized Class<?> loadClass(String name, boolean resolve) argument
85 if (resolve) {
90 return super.loadClass(name, resolve);
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/utils/
H A DSymbolSolverQuickSetupTest.java17 * Try to resolve all the ClassOrInterfaceDeclaration and MethodCallExpr in some resources folder. If it fails to do
37 // try to resolve, this will fail
39 compilationUnit.findAll(ClassOrInterfaceDeclaration.class).forEach(ClassOrInterfaceDeclaration::resolve));
43 public void resolve() throws IOException { method in class:SymbolSolverQuickSetupTest
46 // try to resolve, this should succeed
48 compilationUnit.findAll(ClassOrInterfaceDeclaration.class).forEach(ClassOrInterfaceDeclaration::resolve));
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyEnum.java61 * Enum.resolve(name) => number
67 public static IRubyObject resolve(ThreadContext context, IRubyObject recv, IRubyObject name) { method in class:RubyEnum
/external/python/cpython2/Tools/world/
H A Dworld103 def resolve(rawaddr):
254 args = filter(None, map(resolve, args))
101 def resolve(rawaddr): function
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
H A DClassNameResolver.java12 public Class<? extends T> resolve() { method in class:ClassNameResolver
/external/tensorflow/tensorflow/contrib/py2tf/pyct/static_analysis/
H A Dlive_values.py111 def resolve(node, context, literals): function
/external/turbine/java/com/google/turbine/binder/lookup/
H A DCanonicalSymbolResolver.java29 ClassSymbol resolve(SourceFile source, int position, LookupResult result); method in interface:CanonicalSymbolResolver
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 DMemberImportIndex.java41 CanonicalSymbolResolver resolve,
56 return result != null ? resolve.resolve(source, i.position(), result) : null;
72 sym = resolve.resolveOne(sym, result1.remaining().get(i));
39 MemberImportIndex( SourceFile source, CanonicalSymbolResolver resolve, TopLevelIndex tli, ImmutableList<ImportDecl> imports) argument
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java176 public static URI resolve(final URI baseURI, final String reference) { method in class:URIUtils
177 return URIUtils.resolve(baseURI, URI.create(reference));
188 public static URI resolve(final URI baseURI, URI reference){ method in class:URIUtils
199 URI resolved = baseURI.resolve(reference);
/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/scapy/scapy/
H A Das_resolvers.py55 def resolve(self, *ips): member in class:AS_resolver
78 def resolve(self, *ips): member in class:AS_resolver_cymru
112 def resolve(self, *ips): member in class:AS_resolver_multi
117 res = ASres.resolve(*todo)
/external/skia/experimental/svg/model/
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 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()));
/external/skqp/experimental/svg/model/
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 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()));
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliLabelReference.java71 @Nullable @Override public SmaliLabel resolve() { method in class:SmaliLabelReference
84 return resolve() == element;
/external/tensorflow/tensorflow/contrib/py2tf/pyct/
H A Dqual_names.py103 def resolve(node): function

Completed in 755 milliseconds

123456789