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

  /external/webkit/Source/WebKit/win/
MemoryStream.h 92 virtual HRESULT STDMETHODCALLTYPE Stat(
MemoryStream.cpp 237 HRESULT STDMETHODCALLTYPE MemoryStream::Stat(
WebHTMLRepresentation.cpp 283 STATSTG stat;
284 hr = data->Stat(&stat, STATFLAG_NONAME);
288 if (stat.cbSize.HighPart || !stat.cbSize.LowPart)
291 Vector<char> dataBuffer(stat.cbSize.LowPart);
WebFrame.cpp 588 STATSTG stat; local
589 if (SUCCEEDED(data->Stat(&stat, STATFLAG_NONAME))) {
590 if (!stat.cbSize.HighPart && stat.cbSize.LowPart) {
591 Vector<char> dataBuffer(stat.cbSize.LowPart);
    [all...]
  /external/chromium/testing/gtest/src/
gtest-filepath.cc 210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
237 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
  /external/llvm/utils/unittest/googletest/
gtest-filepath.cc 210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
237 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
  /external/protobuf/gtest/src/
gtest-filepath.cc 179 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
206 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 165 #include <sys/stat.h>
863 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
867 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
876 typedef struct stat StatStruct;
880 inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
    [all...]
  /external/libvpx/examples/includes/geshi/geshi/
ruby.php 80 'File::Constants', 'File::Stat', 'FileTest', 'FileUtils',
rails.php 73 'File::Constants', 'File::Stat', 'FileTest', 'FileUtils',
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 190 # include <sys/stat.h>
243 // namespace (read, write, close, chdir, isatty, stat). We do not currently
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
pseudotcp.cc 177 enum Stat {
195 inline void Incr(Stat s) { ++g_stats[s]; }
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 194 # include <sys/stat.h>
251 // namespace (read, write, close, chdir, isatty, stat). We do not currently
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 848 milliseconds