/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ofstream.cons/ |
D | pointer.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 25 std::ofstream fs(temp); in main() 29 std::ifstream fs(temp); in main() 34 remove(temp); in main() 36 std::wofstream fs(temp); in main() 40 std::wifstream fs(temp); in main() 45 remove(temp); in main()
|
D | string.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 25 std::ofstream fs((std::string(temp))); in main() 29 std::ifstream fs((std::string(temp))); in main() 34 remove(temp); in main() 36 std::wofstream fs((std::string(temp))); in main() 40 std::wifstream fs((std::string(temp))); in main() 45 remove(temp); in main()
|
D | move.pass.cpp | 23 char temp[L_tmpnam]; in main() local 24 tmpnam(temp); in main() 26 std::ofstream fso(temp); in main() 31 std::ifstream fs(temp); in main() 36 remove(temp); in main() 38 std::wofstream fso(temp); in main() 43 std::wifstream fs(temp); in main() 48 remove(temp); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ofstream.assign/ |
D | move_assign.pass.cpp | 23 char temp[L_tmpnam]; in main() local 24 tmpnam(temp); in main() 26 std::ofstream fso(temp); in main() 32 std::ifstream fs(temp); in main() 37 remove(temp); in main() 39 std::wofstream fso(temp); in main() 45 std::wifstream fs(temp); in main() 50 remove(temp); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ofstream.members/ |
D | open_pointer.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 30 fs.open(temp); in main() 35 std::ifstream fs(temp); in main() 40 remove(temp); in main() 47 fs.open(temp); in main() 52 std::wifstream fs(temp); in main() 57 remove(temp); in main()
|
D | open_string.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 30 fs.open(std::string(temp)); in main() 35 std::ifstream fs(temp); in main() 40 remove(temp); in main() 47 fs.open(std::string(temp)); in main() 52 std::wifstream fs(temp); in main() 57 remove(temp); in main()
|
D | rdbuf.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 25 std::ofstream fs(temp); in main() 29 remove(temp); in main() 31 std::wofstream fs(temp); in main() 35 remove(temp); in main()
|
D | close.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 27 fs.open(temp); in main() 32 remove(temp); in main() 36 fs.open(temp); in main() 41 remove(temp); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.members/ |
D | open_pointer.pass.cpp | 19 char temp[L_tmpnam]; in main() local 20 tmpnam(temp); in main() 23 assert(f.open(temp, std::ios_base::out) != 0); in main() 29 assert(f.open(temp, std::ios_base::in) != 0); in main() 35 remove(temp); in main() 38 assert(f.open(temp, std::ios_base::out) != 0); in main() 44 assert(f.open(temp, std::ios_base::in) != 0); in main() 50 remove(temp); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.members/ |
D | close.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 27 fs.open(temp, std::ios_base::out); in main() 32 remove(temp); in main() 36 fs.open(temp, std::ios_base::out); in main() 41 remove(temp); in main()
|
D | open_pointer.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 27 fs.open(temp, std::ios_base::in | std::ios_base::out in main() 36 std::remove(temp); in main() 40 fs.open(temp, std::ios_base::in | std::ios_base::out in main() 49 std::remove(temp); in main()
|
D | open_string.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 27 fs.open(std::string(temp), std::ios_base::in | std::ios_base::out in main() 36 std::remove(temp); in main() 40 fs.open(std::string(temp), std::ios_base::in | std::ios_base::out in main() 49 std::remove(temp); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.cons/ |
D | pointer.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 25 std::fstream fs(temp, std::ios_base::in | std::ios_base::out in main() 33 std::remove(temp); in main() 35 std::wfstream fs(temp, std::ios_base::in | std::ios_base::out in main() 43 std::remove(temp); in main()
|
D | string.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 25 std::fstream fs(std::string(temp), in main() 34 std::remove(temp); in main() 36 std::wfstream fs(std::string(temp), in main() 45 std::remove(temp); in main()
|
D | move.pass.cpp | 23 char temp[L_tmpnam]; in main() local 24 tmpnam(temp); in main() 26 std::fstream fso(temp, std::ios_base::in | std::ios_base::out in main() 37 std::wfstream fso(temp, std::ios_base::in | std::ios_base::out in main() 46 std::remove(temp); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.assign/ |
D | move_assign.pass.cpp | 23 char temp[L_tmpnam]; in main() local 24 tmpnam(temp); in main() 26 std::fstream fso(temp, std::ios_base::in | std::ios_base::out in main() 36 std::remove(temp); in main() 38 std::wfstream fso(temp, std::ios_base::in | std::ios_base::out in main() 48 std::remove(temp); in main()
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | obstack.h | 160 } temp; /* Temporary for some macros. */ member 429 ( (h)->temp.tempint = (length), \ 430 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \ 431 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0)) 434 ( (h)->temp.tempint = (length), \ 435 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \ 436 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \ 437 memcpy ((h)->next_free, where, (h)->temp.tempint), \ 438 (h)->next_free += (h)->temp.tempint) 441 ( (h)->temp.tempint = (length), \ [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.assign/ |
D | nonmember_swap.pass.cpp | 24 char temp[L_tmpnam]; in main() local 25 tmpnam(temp); in main() 28 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 40 remove(temp); in main() 43 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 55 remove(temp); in main()
|
D | move_assign.pass.cpp | 23 char temp[L_tmpnam]; in main() local 24 tmpnam(temp); in main() 27 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 39 remove(temp); in main() 42 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 54 remove(temp); in main()
|
D | member_swap.pass.cpp | 22 char temp[L_tmpnam]; in main() local 23 tmpnam(temp); in main() 26 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 38 remove(temp); in main() 41 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 53 remove(temp); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.cons/ |
D | move.pass.cpp | 23 char temp[L_tmpnam]; in main() local 24 tmpnam(temp); in main() 27 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 38 remove(temp); in main() 41 assert(f.open(temp, std::ios_base::out | std::ios_base::in in main() 52 remove(temp); in main()
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | helper_func_internal.cc | 266 const uint8_t* temp = action; in scanEHTable() local 267 int64_t actionOffset = readSLEB128(&temp); in scanEHTable() 329 const uint32_t* temp = reinterpret_cast<const uint32_t*>(classInfo) + specIndex; in canExceptionSpecCatch() local 332 uint32_t ttypeIndex = *temp; in canExceptionSpecCatch() 336 ttypeIndex = decodeRelocTarget2((uint32_t)temp); in canExceptionSpecCatch() 337 temp += 1; in canExceptionSpecCatch() 463 const uint8_t* temp = classInfo + specIndex; in canExceptionSpecCatch() local 466 uint64_t ttypeIndex = readULEB128(&temp); in canExceptionSpecCatch()
|
/ndk/sources/host-tools/make-3.81/ |
D | getopt.c | 756 char *temp = my_index (optstring, c); in _getopt_internal() local 762 if (temp == NULL || c == ':') in _getopt_internal() 778 if (temp[0] == 'W' && temp[1] == ';') in _getopt_internal() 901 if (temp[1] == ':') in _getopt_internal() 903 if (temp[2] == ':') in _getopt_internal()
|
/ndk/sources/host-tools/nawk-20071023/ |
D | tran.c | 104 char temp[50]; in arginit() local 111 sprintf(temp, "%d", i); in arginit() 113 setsymtab(temp, *av, atof(*av), STR|NUM, ARGVtab); in arginit() 115 setsymtab(temp, *av, 0.0, STR, ARGVtab); in arginit() 159 Cell *cp, *temp; in freesymtab() local 169 for (cp = tp->tab[i]; cp != NULL; cp = temp) { in freesymtab() 173 temp = cp->cnext; /* avoids freeing then using */ in freesymtab()
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | utils.c | 57 unsigned temp : 1; member 87 if (open_files->temp) in panic() 125 register_open_file (fp, name, temp) in register_open_file() argument 128 int temp; 147 p->temp = false;
|