/external/parameter-framework/upstream/test/tmpfile/ |
TmpFile.hpp | 46 class TmpFile 49 TmpFile(std::string content) : mPath(mktmp()) 58 TmpFile(TmpFile &&right) : mPath(std::move(right.mPath)) { right.mPath.clear(); } 62 TmpFile(const TmpFile &right) = delete; 63 TmpFile &operator=(const TmpFile &right) = delete; 66 TmpFile &operator=(TmpFile &&right [all...] |
/external/parameter-framework/upstream/test/tmpfile/posix/ |
TmpFile.cpp | 31 #include "TmpFile.hpp" 41 std::string TmpFile::mktmp()
|
/external/swiftshader/third_party/subzero/pydir/ |
build-runtime.py | 47 def TmpFile(template): 58 TmpFile('{dir}/szrt_native_{target}.tmp.o'), 67 '-o', TmpFile('{dir}/szrt_native_profiler_{target}.o') 73 '-o', TmpFile('{dir}/szrt_native_asm_{target}.o'), 78 PartialLink([TmpFile('{dir}/szrt_native_{target}.tmp.o'), 79 TmpFile('{dir}/szrt_native_asm_{target}.o'), 80 TmpFile('{dir}/szrt_native_profiler_{target}.o')], 105 TmpFile('{dir}/szrt_sb_{target}.tmp.o'), 112 '-o', TmpFile('{dir}/szrt_sb_asm_{target}.o'), 116 PartialLink([TmpFile('{dir}/szrt_sb_{target}.tmp.o') [all...] |
/external/parameter-framework/upstream/test/functional-tests/include/ |
ConfigFiles.hpp | 32 #include "TmpFile.hpp" 122 utility::TmpFile mStructureFile; 123 utility::TmpFile mDomainsFile; 124 utility::TmpFile mConfigFile;
|
/external/parameter-framework/upstream/bindings/c/ |
Test.cpp | 33 #include "TmpFile.hpp" 76 /** Wrap utility::TmpFile to add an implicit convertion to the temporary file. 79 class TmpFile : private parameterFramework::utility::TmpFile 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/parameter-framework/upstream/test/tmpfile/windows/ |
TmpFile.cpp | 31 #include "TmpFile.hpp" 71 std::string TmpFile::mktmp()
|
/external/u-boot/scripts/ |
fill_scrapyard.py | 105 class TmpFile: 136 tmpfile = TmpFile() 159 tmpfile.file.write(line) 162 os.rename(tmpfile.filename, DOC)
|
/external/llvm/tools/dsymutil/ |
dsymutil.cpp | 179 llvm::SmallString<128> TmpFile; 180 llvm::sys::path::system_temp_directory(true, TmpFile); 183 llvm::sys::path::append(TmpFile, llvm::sys::path::filename(Basename)); 187 if (auto EC = getUniqueFile(TmpFile + ".tmp%%%%%.dwarf", FD, UniqueFile)) { 189 << TmpFile << "': " << EC.message() << '\n';
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/UnitTest/ |
DecParserUnitTest.py | 376 class TmpFile:
399 self.File = TmpFile('test.dec')
445 self.File = TmpFile('test.dec')
502 File = TmpFile('test.dec')
516 File = TmpFile('test.dec')
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
dwarf2yaml.cpp | 280 DWARFYAML::File TmpFile; 281 if (dumpFileEntry(LineData, Offset, TmpFile)) 282 DebugLines.Files.push_back(TmpFile);
|
/external/clang/tools/scan-build/libexec/ |
ccc-analyzer | 35 my ($TmpFH, $TmpFile) = tempfile("temp_buf_XXXXXX", 38 open(STDOUT, ">$TmpFile");
|
/external/parameter-framework/upstream/test/functional-tests/ |
Handle.cpp | 34 #include "TmpFile.hpp" 161 utility::TmpFile resultFile(result); 162 utility::TmpFile expectedFile(expected);
|
/external/gflags/test/ |
gflags_unittest.cc | 241 static string TmpFile(const string& basename) { [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
GenC.py | [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | [all...] |