Searched defs:TmpFile (Results 1 - 3 of 3) sorted by relevance

/external/parameter-framework/upstream/test/tmpfile/
H A DTmpFile.hpp46 class TmpFile class in namespace:parameterFramework::utility
49 TmpFile(std::string content) : mPath(mktmp()) function in class:parameterFramework::utility::TmpFile
58 TmpFile(TmpFile &&right) : mPath(std::move(right.mPath)) { right.mPath.clear(); } function in class:parameterFramework::utility::TmpFile
62 TmpFile(const TmpFile &right) = delete;
63 TmpFile &operator=(const TmpFile &right) = delete;
66 TmpFile &operator=(TmpFile
[all...]
/external/parameter-framework/upstream/bindings/c/
H A DTest.cpp33 #include "TmpFile.hpp"
76 /** Wrap utility::TmpFile to add an implicit convertion to the temporary file.
79 class TmpFile : private parameterFramework::utility::TmpFile class in struct:Test
82 using Base = parameterFramework::utility::TmpFile;
85 using Base::TmpFile;
128 TmpFile system("<?xml version='1.0' encoding='UTF-8'?>\
136 TmpFile libraries("<?xml version='1.0' encoding='UTF-8'?>\
141 TmpFile config("<?xml version='1.0' encoding='UTF-8'?>\
/external/clang/lib/Frontend/
H A DASTUnit.cpp1176 const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE"); local
1177 if (TmpFile)
1178 return TmpFile;

Completed in 130 milliseconds