Home
last modified time | relevance | path

Searched refs:resolved (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/native/
Dcanonicalize_md.c192 canonicalize(char *original, char *resolved, int len) in canonicalize() argument
205 if (realpath(original, resolved)) { in canonicalize()
207 collapse(resolved); in canonicalize()
231 r = realpath(path, resolved); in canonicalize()
274 strcpy(resolved, path); in canonicalize()
275 collapse(resolved); in canonicalize()
DUnixNativeDispatcher.c910 char resolved[PATH_MAX+1]; in Java_sun_nio_fs_UnixNativeDispatcher_realpath0() local
914 if (realpath(path, resolved) == NULL) { in Java_sun_nio_fs_UnixNativeDispatcher_realpath0()
917 jsize len = (jsize)strlen(resolved); in Java_sun_nio_fs_UnixNativeDispatcher_realpath0()
920 (*env)->SetByteArrayRegion(env, result, 0, len, (jbyte*)resolved); in Java_sun_nio_fs_UnixNativeDispatcher_realpath0()
/libcore/luni/src/test/java/libcore/java/net/
DOldAndroidURITest.java46 URI resolved = b.resolve(uri); in resolve() local
47 assertEquals(expected, resolved.toString()); in resolve()
/libcore/ojluni/src/main/java/java/time/temporal/
DIsoFields.java546 … LocalDate resolved = LocalDate.of(newWby, 1, 4); // 4th is guaranteed to be in week one in adjustInto() local
547 int days = (dow - resolved.get(DAY_OF_WEEK)) + ((week - 1) * 7); in adjustInto()
548 resolved = resolved.plusDays(days); in adjustInto()
549 return (R) temporal.with(resolved); in adjustInto()
/libcore/ojluni/src/main/java/java/time/format/
DDateTimeFormatter.java1897 TemporalAccessor resolved = parseResolved0(text, null); in parseBest() local
1900 return (TemporalAccessor) resolved.query(query); in parseBest()
2153 … TemporalAccessor resolved = context.toResolved(formatter.resolverStyle, formatter.resolverFields); in parseObject() local
2155 return resolved; in parseObject()
2157 return resolved.query(parseType); in parseObject()
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderImpl.java246 String resolved = resolvePredefinedOrCharacterEntity(entity); in parse() local
247 if (resolved != null) { in parse()
248 appendText(document, node, token, resolved); in parse()
/libcore/ojluni/src/main/java/java/time/chrono/
DAbstractChronology.java463 ChronoLocalDate resolved = resolveYearOfEra(fieldValues, resolverStyle); in resolveDate() local
464 if (resolved != null) { in resolveDate()
465 return resolved; in resolveDate()
/libcore/xml/src/main/java/com/android/org/kxml2/io/
DKXmlParser.java1259 char[] resolved; in readEntity() local
1260 if (documentEntities != null && (resolved = documentEntities.get(code)) != null) { in readEntity()
1264 pushContentSource(resolved); // parse the entity as XML in readEntity()
1266 out.append(resolved); // include the entity value as text in readEntity()