Searched refs:resolved (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/native/
H A Dcanonicalize_path.cpp48 bool canonicalize_path(const char* path, std::string& resolved) { argument
55 resolved = "/";
78 if (resolved.size() > 1) {
79 resolved.erase(resolved.rfind('/'));
85 if (resolved[resolved.size() - 1] != '/') {
86 resolved += '/';
88 resolved += nextPathComponent;
92 if (lstat(resolved
[all...]
/libcore/luni/src/test/java/libcore/java/net/
H A DOldAndroidURITest.java46 URI resolved = b.resolve(uri);
47 assertEquals(expected, resolved.toString());
/libcore/ojluni/src/main/native/
H A Dcanonicalize_md.c190 canonicalize(char *original, char *resolved, int len) argument
203 if (realpath(original, resolved)) {
205 collapse(resolved);
229 r = realpath(path, resolved);
254 /* Append unresolved subpath to resolved subpath */
270 /* Nothing resolved, so just return the original path */
271 strcpy(resolved, path);
272 collapse(resolved);
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderImpl.java245 String resolved = resolvePredefinedOrCharacterEntity(entity);
246 if (resolved != null) {
247 appendText(document, node, token, resolved);

Completed in 142 milliseconds