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

  /art/runtime/
common_runtime_test.h 39 class ScratchFile {
41 ScratchFile();
43 explicit ScratchFile(const std::string& filename);
45 ScratchFile(const ScratchFile& other, const char* suffix);
47 explicit ScratchFile(ScratchFile&& other);
49 ScratchFile& operator=(ScratchFile&& other);
51 explicit ScratchFile(File* file)
    [all...]
common_runtime_test.cc 68 ScratchFile::ScratchFile() {
79 ScratchFile::ScratchFile(const ScratchFile& other, const char* suffix)
80 : ScratchFile(other.GetFilename() + suffix) {}
82 ScratchFile::ScratchFile(const std::string& filename) : filename_(filename) {
88 ScratchFile::ScratchFile(File* file)
    [all...]

Completed in 163 milliseconds