Home
last modified time | relevance | path

Searched refs:resolve (Results 1 – 25 of 628) sorted by relevance

12345678910>>...26

/external/r8/src/test/java/com/android/tools/r8/
DR8EntryPointTests.java44 Assert.assertTrue(Files.isRegularFile(out.resolve(FileUtils.DEFAULT_DEX_FILENAME))); in testRun1Dir()
45 Assert.assertTrue(Files.isRegularFile(testFlags.getParent().resolve(MAPPING))); in testRun1Dir()
46 Assert.assertTrue(Files.isRegularFile(testFlags.getParent().resolve(SEEDS))); in testRun1Dir()
51 Path out = temp.newFolder("outdex").toPath().resolve("dex.zip"); in testRun1Zip()
54 Assert.assertTrue(Files.isRegularFile(testFlags.getParent().resolve(MAPPING))); in testRun1Zip()
55 Assert.assertTrue(Files.isRegularFile(testFlags.getParent().resolve(SEEDS))); in testRun1Zip()
67 Assert.assertTrue(Files.isRegularFile(out.resolve(FileUtils.DEFAULT_DEX_FILENAME))); in testRun2Dir()
68 Assert.assertTrue(Files.isRegularFile(testFlags.getParent().resolve(MAPPING))); in testRun2Dir()
69 Assert.assertTrue(Files.isRegularFile(testFlags.getParent().resolve(SEEDS))); in testRun2Dir()
74 Path out = temp.newFolder("outdex").toPath().resolve("dex.zip"); in testRun2Zip()
[all …]
/external/r8/src/test/java/com/android/tools/r8/utils/
DD8CommandTest.java65 Path output = working.resolve("classes.dex"); in defaultOutIsCwd()
74 Path nonExistingZip = existingDir.resolve("a-non-existing-archive.zip"); in validOutputPath()
92 Path nonExistingDir = temp.getRoot().toPath().resolve("a/path/that/does/not/exist"); in nonExistingOutputDir()
100 existingDir.resolve("classes.dex"), in existingOutputDirWithDexFiles()
101 existingDir.resolve("classes2.dex"), in existingOutputDirWithDexFiles()
102 existingDir.resolve("Classes3.dex"), // ignore case. in existingOutputDirWithDexFiles()
103 existingDir.resolve("classes10.dex"), in existingOutputDirWithDexFiles()
104 existingDir.resolve("classes999.dex")); in existingOutputDirWithDexFiles()
106 existingDir.resolve("classes0.dex"), in existingOutputDirWithDexFiles()
107 existingDir.resolve("classes1.dex"), in existingOutputDirWithDexFiles()
[all …]
DR8CommandTest.java68 Path output = working.resolve("classes.dex"); in defaultOutIsCwd()
78 Path nonExistingZip = existingDir.resolve("a-non-existing-archive.zip"); in validOutputPath()
97 existingDir.resolve("classes.dex"), in existingOutputDirWithDexFiles()
98 existingDir.resolve("classes2.dex"), in existingOutputDirWithDexFiles()
99 existingDir.resolve("Classes3.dex"), // ignore case. in existingOutputDirWithDexFiles()
100 existingDir.resolve("classes10.dex"), in existingOutputDirWithDexFiles()
101 existingDir.resolve("classes999.dex")); in existingOutputDirWithDexFiles()
103 existingDir.resolve("classes0.dex"), in existingOutputDirWithDexFiles()
104 existingDir.resolve("classes1.dex"), in existingOutputDirWithDexFiles()
105 existingDir.resolve("classes010.dex"), in existingOutputDirWithDexFiles()
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DHttpUrlTest.java42 assertEquals(expected, HttpUrl.parse("http://host/").resolve(" ")); in parseTrimsAsciiWhitespace()
43 assertEquals(expected, HttpUrl.parse("http://host/").resolve(" . ")); in parseTrimsAsciiWhitespace()
113 assertEquals(HttpUrl.parse("http://host2/"), base.resolve("//host2")); in resolveNoScheme()
114 assertEquals(HttpUrl.parse("http://host/path"), base.resolve("/path")); in resolveNoScheme()
115 assertEquals(HttpUrl.parse("http://host/a/path"), base.resolve("path")); in resolveNoScheme()
116 assertEquals(HttpUrl.parse("http://host/a/b?query"), base.resolve("?query")); in resolveNoScheme()
117 assertEquals(HttpUrl.parse("http://host/a/b#fragment"), base.resolve("#fragment")); in resolveNoScheme()
118 assertEquals(HttpUrl.parse("http://host/a/b"), base.resolve("")); in resolveNoScheme()
119 assertEquals(HttpUrl.parse("http://host/path"), base.resolve("\\path")); in resolveNoScheme()
124 assertEquals(null, base.resolve("ftp://b")); in resolveUnsupportedScheme()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
Dbasic_resolver.hpp95 iterator resolve(const query& q) in resolve() function in asio::ip::basic_resolver
98 iterator i = this->service.resolve(this->implementation, q, ec); in resolve()
120 iterator resolve(const query& q, asio::error_code& ec) in resolve() function in asio::ip::basic_resolver
122 return this->service.resolve(this->implementation, q, ec); in resolve()
184 iterator resolve(const endpoint_type& e) in resolve() function in asio::ip::basic_resolver
187 iterator i = this->service.resolve(this->implementation, e, ec); in resolve()
211 iterator resolve(const endpoint_type& e, asio::error_code& ec) in resolve() function in asio::ip::basic_resolver
213 return this->service.resolve(this->implementation, e, ec); in resolve()
Dresolver_service.hpp85 iterator_type resolve(implementation_type& impl, const query_type& query, in resolve() function in asio::ip::resolver_service
88 return service_impl_.resolve(impl, query, ec); in resolve()
108 iterator_type resolve(implementation_type& impl, in resolve() function in asio::ip::resolver_service
111 return service_impl_.resolve(impl, endpoint, ec); in resolve()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DBidiTransform.java298 private void resolve(byte level, int options) { in resolve() method in BidiTransform
389 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
401 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform()
415 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
428 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform()
443 transform.resolve(Bidi.RTL, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
457 transform.resolve(Bidi.RTL, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
469 transform.resolve(Bidi.LTR, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
483 transform.resolve(Bidi.LTR, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
497 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidiTransform.java305 private void resolve(byte level, int options) { in resolve() method in BidiTransform
396 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
408 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform()
422 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
435 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform()
450 transform.resolve(Bidi.RTL, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
464 transform.resolve(Bidi.RTL, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
476 transform.resolve(Bidi.LTR, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
490 transform.resolve(Bidi.LTR, Bidi.REORDER_INVERSE_LIKE_DIRECT); in doTransform()
504 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
[all …]
/external/skia/experimental/svg/model/
DSkSVGEllipse.cpp58 SkRect SkSVGEllipse::resolve(const SkSVGLengthContext& lctx) const { in resolve() function in SkSVGEllipse
59 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
60 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical); in resolve()
61 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
62 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve()
71 canvas->drawOval(this->resolve(lctx), paint); in onDraw()
76 path.addOval(this->resolve(ctx.lengthContext())); in onAsPath()
DSkSVGLine.cpp58 std::tuple<SkPoint, SkPoint> SkSVGLine::resolve(const SkSVGLengthContext& lctx) const { in resolve() function in SkSVGLine
60 SkPoint::Make(lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizontal), in resolve()
61 lctx.resolve(fY1, SkSVGLengthContext::LengthType::kVertical)), in resolve()
62 SkPoint::Make(lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal), in resolve()
63 lctx.resolve(fY2, SkSVGLengthContext::LengthType::kVertical))); in resolve()
69 std::tie(p0, p1) = this->resolve(lctx); in onDraw()
76 std::tie(p0, p1) = this->resolve(ctx.lengthContext()); in onAsPath()
DSkSVGCircle.cpp49 std::tuple<SkPoint, SkScalar> SkSVGCircle::resolve(const SkSVGLengthContext& lctx) const { in resolve() function in SkSVGCircle
50 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
51 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical); in resolve()
52 const auto r = lctx.resolve(fR , SkSVGLengthContext::LengthType::kOther); in resolve()
60 std::tie(pos, r) = this->resolve(lctx); in onDraw()
70 std::tie(pos, r) = this->resolve(ctx.lengthContext()); in onAsPath()
DSkSVGRect.cpp77 SkRRect SkSVGRect::resolve(const SkSVGLengthContext& lctx) const { in resolve() function in SkSVGRect
79 const SkScalar rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
80 const SkScalar ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical); in resolve()
87 canvas->drawRRect(this->resolve(lctx), paint); in onDraw()
92 path.addRRect(this->resolve(ctx.lengthContext())); in onAsPath()
DSkSVGLinearGradient.cpp101 pos->push_back(SkTPin(ltx.resolve(stop.offset(), SkSVGLengthContext::LengthType::kOther), in collectColorStops()
117 const auto x1 = lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizontal); in onAsPaint()
118 const auto y1 = lctx.resolve(fY1, SkSVGLengthContext::LengthType::kVertical); in onAsPaint()
119 const auto x2 = lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal); in onAsPaint()
120 const auto y2 = lctx.resolve(fY2, SkSVGLengthContext::LengthType::kVertical); in onAsPaint()
/external/skia/tests/
DPathOpsBuilderTest.cpp16 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
20 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
24 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
31 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
44 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
51 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
60 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
77 REPORTER_ASSERT(reporter, builder.resolve(&result)); in DEF_TEST()
99 builder.resolve(&path2); in DEF_TEST()
113 builder.resolve(&result); in DEF_TEST()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/internal/
DClassNameResolverTest.java12 …ss, new ClassNameResolver<Application>("com.xtremelabs.robolectric", "TestApplication").resolve()); in shouldResolveClassesBySimpleName()
17 …s, new ClassNameResolver<Application>("com.xtremelabs.robolectric", ".TestApplication").resolve()); in shouldResolveClassesByDottedSimpleName()
22 …pplication>("com.xtremelabs.robolectric", "com.xtremelabs.robolectric.TestApplication").resolve()); in shouldResolveClassesByFullyQualifiedName()
27 …s, new ClassNameResolver<Application>("com.xtremelabs", ".robolectric.TestApplication").resolve()); in shouldResolveClassesByPartiallyQualifiedName()
32 … new ClassNameResolver<Application>("com.xtremelabs", "robolectric.TestApplication").resolve(); in shouldNotResolveClassesByUndottedPartiallyQualifiedNameBecauseAndroidDoesnt()
/external/llvm/lib/IR/
DDebugInfo.cpp59 processType(DIG->getType().resolve()); in processModule()
70 auto *Entity = Import->getEntity().resolve(); in processModule()
96 processScope(DT->getScope().resolve()); in processType()
99 processType(Ref.resolve()); in processType()
103 processType(DCT->getBaseType().resolve()); in processType()
113 processType(DDT->getBaseType().resolve()); in processType()
146 processScope(SP->getScope().resolve()); in processSubprogram()
150 processType(TType->getType().resolve()); in processSubprogram()
152 processType(TVal->getType().resolve()); in processSubprogram()
170 processType(DV->getType().resolve()); in processDeclare()
[all …]
/external/autotest/client/site_tests/video_WebRtcMediaRecorder/
Dmediarecorder_test_utils.js9 return new Promise(function(resolve, reject) { argument
14 resolve();
20 return new Promise(function(resolve, reject) { argument
31 resolve();
/external/v8/src/js/
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/libmojo/mojo/edk/js/tests/
Dconnection_tests.js46 return Promise.resolve({result: 42});
70 return Promise.resolve();
102 return Promise.resolve();
121 return Promise.resolve({a: a});
125 return Promise.resolve({a: a, b: b});
152 return Promise.resolve();
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
DSmaliClassType.java56 public PsiClass resolve() { in resolve() method in SmaliClassType
61 PsiElement resolved = reference.resolve(); in resolve()
70 PsiClass resolved = resolve(); in getClassName()
91 return resolve(); in resolveGenerics()
142 PsiClass psiClass = resolve();
DSmaliClassTypeElement.java89 @Nullable @Override public PsiClass resolve() { in resolve() method in SmaliClassTypeElement
122 return element.getManager().areElementsEquivalent(element, resolve()); in isReferenceTo()
162 PsiClass psiClass = resolve(); in getQualifiedName()
170 PsiClass element = resolve(); in advancedResolve()
178 PsiClass element = resolve(); in multiResolve()
/external/r8/src/test/java/com/android/tools/r8/maindexlist/
DMainDexListTests.java113 return generatedApplicationsFolder.getRoot().toPath().resolve("two-large-classes.zip"); in getTwoLargeClassesAppPath()
117 return generatedApplicationsFolder.getRoot().toPath().resolve("many-classes-mono.zip"); in getManyClassesSingleDexAppPath()
121 return generatedApplicationsFolder.getRoot().toPath().resolve("many-classes-stereo.zip"); in getManyClassesMultiDexAppPath()
194 Path mainDexList = temp.getRoot().toPath().resolve("valid.txt"); in validEntries()
206 Path mainDexList = temp.getRoot().toPath().resolve("invalid.txt"); in invalidQualifiedEntry()
243 Path input = temp.newFolder().toPath().resolve("input.zip"); in checkDeterminism()
288 Path out = tmp.resolve(String.valueOf(i)); in checkDeterminism()
300 assertFalse(Files.exists(tmp.resolve(String.valueOf(0)).resolve("classes2.dex"))); in checkDeterminism()
302 tmp.resolve(String.valueOf(0)).resolve(FileUtils.DEFAULT_DEX_FILENAME)); in checkDeterminism()
304 assertFalse(Files.exists(tmp.resolve(String.valueOf(i)).resolve("classes2.dex"))); in checkDeterminism()
[all …]
/external/guice/core/src/com/google/inject/internal/
DBytecodeGen.java301 @Override protected Class<?> loadClass(String name, boolean resolve) in loadClass() argument
306 return SystemBridgeHolder.SYSTEM_BRIDGE.classicLoadClass(name, resolve); in loadClass()
312 return SystemBridgeHolder.SYSTEM_BRIDGE.classicLoadClass(name, resolve); in loadClass()
316 if (resolve) { in loadClass()
325 return classicLoadClass(name, resolve); in loadClass()
329 Class<?> classicLoadClass(String name, boolean resolve) in classicLoadClass() argument
331 return super.loadClass(name, resolve); in classicLoadClass()
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliImplementsExtendsTest.java64 PsiClass resolvedSuper = extendsList.getReferencedTypes()[0].resolve(); in testNormalClass()
79 PsiClass resolvedInterface = implementsList.getReferencedTypes()[0].resolve(); in testNormalClass()
83 resolvedInterface = implementsList.getReferencedTypes()[1].resolve(); in testNormalClass()
111 PsiClass resolvedInterface = extendsList.getReferencedTypes()[0].resolve(); in testInterface()
115 resolvedInterface = extendsList.getReferencedTypes()[1].resolve(); in testInterface()
/external/apache-http/src/org/apache/http/client/utils/
DURIUtils.java176 public static URI resolve(final URI baseURI, final String reference) { in resolve() method in URIUtils
177 return URIUtils.resolve(baseURI, URI.create(reference)); in resolve()
188 public static URI resolve(final URI baseURI, URI reference){ in resolve() method in URIUtils
199 URI resolved = baseURI.resolve(reference); in resolve()

12345678910>>...26