HomeSort by relevance Sort by last modified time
    Searched full:apath (Results 1 - 6 of 6) sorted by null

  /ndk/sources/host-tools/make-3.81/
amiga.c 95 struct AnchorPath * apath; local
97 if ( (apath = AllocMem (sizeof (struct AnchorPath) + PATH_SIZE,
101 apath->ap_Strlen = PATH_SIZE;
103 if (MatchFirst (wc, apath) == 0)
107 o = variable_buffer_output (o, apath->ap_Buf,
108 strlen (apath->ap_Buf));
110 } while (MatchNext (apath) == 0);
113 MatchEnd (apath);
114 FreeMem (apath, sizeof (struct AnchorPath) + PATH_SIZE);
function.c     [all...]
  /external/llvm/lib/Support/Windows/
Path.inc 526 Path aPath(path);
527 aPath.appendComponent(&fd.cFileName[0]);
528 result.insert(aPath);
723 Path aPath(path);
724 aPath.appendComponent(&fd.cFileName[0]);
725 list.push_back(aPath);
737 Path &aPath = *I;
738 aPath.eraseFromDisk(true);
  /external/llvm/lib/Support/Unix/
Path.inc 341 StringRef aPath("/proc/self/exe");
342 if (sys::fs::exists(aPath)) {
344 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
573 Path aPath(dirPath + (const char*)de->d_name);
575 if (0 != lstat(aPath.path.c_str(), &st)) {
579 aPath.path + ": can't determine file object type");
581 result.insert(aPath);
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 325 sys::Path aPath;
326 if (!aPath.set(Members[i]))
330 if (sys::fs::exists(aPath.str(), Exists) || !Exists)
333 sys::PathWithStatus PwS(aPath);
339 if (recurseDirectories(aPath, dirpaths, ErrMsg))
343 Paths.insert(aPath);
346 Paths.insert(aPath);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URITest.java 186 "http://[ipv6address]/apath#frag", // malformed ipv6 address
187 "http://[ipv6address/apath#frag", // malformed ipv6 address
188 "http://ipv6address]/apath#frag", // illegal char in host name
189 "http://ipv6[address/apath#frag",
190 "http://ipv6addr]ess/apath#frag",
191 "http://ipv6address[]/apath#frag",
443 // equivalent to = uri = new URI("http", "host", "/apath",
445 uri = new URI("http", "host", "/apath", "\u20ACfrag");
452 uri = new URI("http", ":2:3:4:5:6:7:8", "/apath", "\u20ACfrag");
    [all...]

Completed in 301 milliseconds