OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TmpFile
(Results
1 - 6
of
6
) sorted by null
/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/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/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';
/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'?>\
/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/clang/lib/Frontend/
ASTUnit.cpp
[
all
...]
Completed in 4128 milliseconds