HomeSort by relevance Sort by last modified time
    Searched refs:shortPath (Results 1 - 11 of 11) sorted by null

  /sdk/find_java2/src/
JavaPath.cpp 60 TCHAR *shortPath = (TCHAR *)malloc(lenShort * sizeof(TCHAR));
62 DWORD length = GetShortPathName(longPath, shortPath, lenShort);
65 free(shortPath);
67 shortPath = (TCHAR *)malloc(length);
68 length = GetShortPathName(longPath, shortPath, lenShort);
72 mPath = CPath(shortPath);
75 free(shortPath);
  /sdk/find_java/src/source/
utils.h 334 char * shortPath = (char *)malloc(lenShort);
336 DWORD length = GetShortPathName(longPath, shortPath, lenShort);
339 free(shortPath);
341 shortPath = (char *)malloc(length);
342 length = GetShortPathName(longPath, shortPath, lenShort);
345 if (length != 0) dest->set(shortPath);
347 free(shortPath);
  /external/ImageMagick/MagickCore/
utility-private.h 64 shortPath[MAX_PATH],
74 count=GetShortPathNameW(longPath,shortPath,MAX_PATH);
79 wcscpy(wideChar,shortPath+4);
  /prebuilts/go/darwin-x86/src/cmd/go/
generate.go 204 fmt.Fprintf(os.Stderr, "%s\n", shortPath(g.path))
267 g.errorf("error reading %s: %s", shortPath(g.path), err)
357 fmt.Fprintf(os.Stderr, "%s:%d: %s\n", shortPath(g.path), g.lineNum,
pkg.go 423 pos.Filename = shortPath(pos.Filename)
799 e.Pos.Filename = shortPath(e.Pos.Filename)
    [all...]
build.go     [all...]
go_test.go 627 shortPath := path
629 shortPath = rel
631 tg.grepStderr("^"+regexp.QuoteMeta(shortPath)+":", "missing file:line in error message")
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
generate.go 204 fmt.Fprintf(os.Stderr, "%s\n", shortPath(g.path))
267 g.errorf("error reading %s: %s", shortPath(g.path), err)
357 fmt.Fprintf(os.Stderr, "%s:%d: %s\n", shortPath(g.path), g.lineNum,
pkg.go 423 pos.Filename = shortPath(pos.Filename)
799 e.Pos.Filename = shortPath(e.Pos.Filename)
    [all...]
build.go     [all...]
go_test.go 627 shortPath := path
629 shortPath = rel
631 tg.grepStderr("^"+regexp.QuoteMeta(shortPath)+":", "missing file:line in error message")
    [all...]

Completed in 291 milliseconds