/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/ |
run_tests.js | 1 var fs = require('fs'), variable 10 fs.readdirSync(fixturesDir).forEach(function (file) {
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/tools/ |
named_entity_trie_generator.js | 1 var fs = require('fs'), variable 4 var fileData = fs.readFileSync(path.join(__dirname, 'entities.json')).toString(), 46 fs.writeFileSync(path.join(__dirname, '../lib/tokenization/named_entity_trie.js'), outData);
|
/external/libcxx/test/std/input.output/file.streams/fstreams/fstream.cons/ |
default.pass.cpp | 23 std::fstream fs; local 26 std::wfstream fs; local
|
move.pass.cpp | 28 std::fstream fs = move(fso); local 30 fs << 3.25; 31 fs.seekg(0); 32 fs >> x; 39 std::wfstream fs = move(fso); local 41 fs << 3.25; 42 fs.seekg(0); 43 fs >> x;
|
/external/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/ |
rdbuf.pass.cpp | 23 std::fstream fs; local 24 assert(fs.rdbuf()); 27 std::wfstream fs; local 28 assert(fs.rdbuf());
|
close.pass.cpp | 25 std::fstream fs; local 26 assert(!fs.is_open()); 27 fs.open(temp.c_str(), std::ios_base::out); 28 assert(fs.is_open()); 29 fs.close(); 30 assert(!fs.is_open()); 34 std::wfstream fs; local 35 assert(!fs.is_open()); 36 fs.open(temp.c_str(), std::ios_base::out); 37 assert(fs.is_open()) [all...] |
open_pointer.pass.cpp | 25 std::fstream fs; local 26 assert(!fs.is_open()); 27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out 29 assert(fs.is_open()); 31 fs << 3.25; 32 fs.seekg(0); 33 fs >> x; 38 std::wfstream fs; local 39 assert(!fs.is_open()); 40 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::ou [all...] |
open_string.pass.cpp | 25 std::fstream fs; local 26 assert(!fs.is_open()); 27 fs.open(temp, std::ios_base::in | std::ios_base::out 29 assert(fs.is_open()); 31 fs << 3.25; 32 fs.seekg(0); 33 fs >> x; 38 std::wfstream fs; local 39 assert(!fs.is_open()); 40 fs.open(temp, std::ios_base::in | std::ios_base::ou [all...] |
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.cons/ |
default.pass.cpp | 23 std::ifstream fs; local 26 std::wifstream fs; local
|
move.pass.cpp | 25 std::ifstream fs = move(fso); local 27 fs >> x; 32 std::wifstream fs = move(fso); local 34 fs >> x;
|
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.members/ |
close.pass.cpp | 23 std::ifstream fs; local 24 assert(!fs.is_open()); 25 fs.open("test.dat"); 26 assert(fs.is_open()); 27 fs.close(); 28 assert(!fs.is_open()); 31 std::wifstream fs; local 32 assert(!fs.is_open()); 33 fs.open("test.dat"); 34 assert(fs.is_open()) [all...] |
open_pointer.pass.cpp | 23 std::ifstream fs; local 24 assert(!fs.is_open()); 26 fs >> c; 27 assert(fs.fail()); 29 fs.open("test.dat"); 30 assert(fs.is_open()); 31 fs >> c; 35 std::wifstream fs; local 36 assert(!fs.is_open()); 38 fs >> c [all...] |
open_string.pass.cpp | 23 std::ifstream fs; local 24 assert(!fs.is_open()); 26 fs >> c; 27 assert(fs.fail()); 29 fs.open(std::string("test.dat")); 30 assert(fs.is_open()); 31 fs >> c; 35 std::wifstream fs; local 36 assert(!fs.is_open()); 38 fs >> c [all...] |
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/ |
default.pass.cpp | 23 std::ofstream fs; local 26 std::wofstream fs; local
|
move.pass.cpp | 27 std::ofstream fs = move(fso); local 28 fs << 3.25; 31 std::ifstream fs(temp.c_str()); 33 fs >> x; 39 std::wofstream fs = move(fso); local 40 fs << 3.25; 43 std::wifstream fs(temp.c_str()); 45 fs >> x;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.cons/ |
default.pass.cpp | 23 std::fstream fs; local 26 std::wfstream fs; local
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.members/ |
rdbuf.pass.cpp | 23 std::fstream fs; local 24 assert(fs.rdbuf()); 27 std::wfstream fs; local 28 assert(fs.rdbuf());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/ |
default.pass.cpp | 23 std::ifstream fs; local 26 std::wifstream fs; local
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.members/ |
close.pass.cpp | 23 std::ifstream fs; local 24 assert(!fs.is_open()); 25 fs.open("test.dat"); 26 assert(fs.is_open()); 27 fs.close(); 28 assert(!fs.is_open()); 31 std::wifstream fs; local 32 assert(!fs.is_open()); 33 fs.open("test.dat"); 34 assert(fs.is_open()) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/ |
default.pass.cpp | 23 std::ofstream fs; local 26 std::wofstream fs; local
|
/external/e2fsprogs/lib/ext2fs/ |
dupfs.c | 24 ext2_filsys fs; local 29 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs); 33 *fs = *src; 34 fs->device_name = 0; 35 fs->super = 0; 36 fs->orig_super = 0; 37 fs->group_desc = 0; 38 fs->inode_map = 0; 39 fs->block_map = 0; 40 fs->badblocks = 0 [all...] |
/external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/ |
move_assign.pass.cpp | 28 std::fstream fs; local 29 fs = move(fso); 31 fs << 3.25; 32 fs.seekg(0); 33 fs >> x; 40 std::wfstream fs; local 41 fs = move(fso); 43 fs << 3.25; 44 fs.seekg(0); 45 fs >> x [all...] |
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/ |
move_assign.pass.cpp | 25 std::ifstream fs; local 26 fs = move(fso); 28 fs >> x; 33 std::wifstream fs; local 34 fs = move(fso); 36 fs >> x;
|
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/ |
move_assign.pass.cpp | 27 std::ofstream fs; local 28 fs = move(fso); 29 fs << 3.25; 32 std::ifstream fs(temp.c_str()); 34 fs >> x; 40 std::wofstream fs; local 41 fs = move(fso); 42 fs << 3.25; 45 std::wifstream fs(temp.c_str()); 47 fs >> x [all...] |
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.members/ |
close.pass.cpp | 25 std::ofstream fs; local 26 assert(!fs.is_open()); 27 fs.open(temp.c_str()); 28 assert(fs.is_open()); 29 fs.close(); 30 assert(!fs.is_open()); 34 std::wofstream fs; local 35 assert(!fs.is_open()); 36 fs.open(temp.c_str()); 37 assert(fs.is_open()) [all...] |