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

  /frameworks/base/tools/aapt/
FileFinder.cpp 24 struct stat fileStat;
25 if (stat(filename, &fileStat) == -1) {
28 return(S_ISDIR(fileStat.st_mode));
34 struct stat fileStat;
35 if (stat(filename, &fileStat) == -1) {
38 return(S_ISREG(fileStat.st_mode));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
svn-create-patch 188 my $fileStat = substr($stat, 0, 1);
190 if ($fileStat eq "A" || $fileStat eq "R") {
194 return "modification" if ($fileStat eq "M" || $propertyStat eq "M");
195 return "deletion" if ($fileStat eq "D");

Completed in 253 milliseconds