Searched refs:file_type (Results 1 - 25 of 102) sorted by relevance

12345

/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.status_known/
H A Dstatus_known.pass.cpp38 file_type type;
42 {file_type::none, false},
43 {file_type::not_found, true},
44 {file_type::regular, true},
45 {file_type::directory, true},
46 {file_type::symlink, true},
47 {file_type::block, true},
48 {file_type::character, true},
49 {file_type::fifo, true},
50 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_block_file/
H A Dis_block_file.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, false},
50 {file_type::directory, false},
51 {file_type::symlink, false},
52 {file_type::block, true},
53 {file_type::character, false},
54 {file_type::fifo, false},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_char_file/
H A Dis_character_file.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, false},
50 {file_type::directory, false},
51 {file_type::symlink, false},
52 {file_type::block, false},
53 {file_type::character, true},
54 {file_type::fifo, false},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_directory/
H A Dis_directory.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, false},
50 {file_type::directory, true},
51 {file_type::symlink, false},
52 {file_type::block, false},
53 {file_type::character, false},
54 {file_type::fifo, false},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_fifo/
H A Dis_fifo.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, false},
50 {file_type::directory, false},
51 {file_type::symlink, false},
52 {file_type::block, false},
53 {file_type::character, false},
54 {file_type::fifo, true},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_other/
H A Dis_other.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, false},
50 {file_type::directory, false},
51 {file_type::symlink, false},
52 {file_type::block, true},
53 {file_type::character, true},
54 {file_type::fifo, true},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_regular_file/
H A Dis_regular_file.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, true},
50 {file_type::directory, false},
51 {file_type::symlink, false},
52 {file_type::block, false},
53 {file_type::character, false},
54 {file_type::fifo, false},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_socket/
H A Dis_socket.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, false},
50 {file_type::directory, false},
51 {file_type::symlink, false},
52 {file_type::block, false},
53 {file_type::character, false},
54 {file_type::fifo, false},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/class.file_status/
H A Dfile_status.cons.pass.cpp17 // explicit file_status(file_type, perms prms = perms::unknown) noexcept;
36 assert(f.type() == file_type::none);
42 static_assert(std::is_nothrow_constructible<file_status, file_type>::value,
44 static_assert(!test_convertible<file_status, file_type>(),
47 const file_status f(file_type::not_found);
48 assert(f.type() == file_type::not_found);
53 static_assert(std::is_nothrow_constructible<file_status, file_type, perms>::value,
55 static_assert(!test_convertible<file_status, file_type, perms>(),
57 const file_status f(file_type::regular, perms::owner_read);
58 assert(f.type() == file_type
[all...]
H A Dfile_status.mods.pass.cpp16 // void type(file_type) noexcept;
32 static_assert(noexcept(st.type(file_type::regular)),
34 static_assert(std::is_same<decltype(st.type(file_type::regular)), void>::value,
36 assert(st.type() != file_type::regular);
37 st.type(file_type::regular);
38 assert(st.type() == file_type::regular);
H A Dfile_status.obs.pass.cpp16 // file_type type() const noexcept;
28 const file_status st(file_type::regular, perms::owner_read);
34 static_assert(std::is_same<decltype(st.type()), file_type>::value,
35 "operation must return file_type");
36 assert(st.type() == file_type::regular);
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.exists/
H A Dexists.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, true},
50 {file_type::directory, true},
51 {file_type::symlink, true},
52 {file_type::block, true},
53 {file_type::character, true},
54 {file_type::fifo, true},
55 {file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_symlink/
H A Dis_symlink.pass.cpp43 file_type type;
47 {file_type::none, false},
48 {file_type::not_found, false},
49 {file_type::regular, false},
50 {file_type::directory, false},
51 {file_type::symlink, true},
52 {file_type::block, false},
53 {file_type::character, false},
54 {file_type::fifo, false},
55 {file_type
[all...]
/external/icu/icu4c/source/tools/
H A Dicu-svnprops-check.py110 file_type, string_proplist = propline.split("=", 1)
114 file_type = file_type.strip()
115 file_type = file_type.replace(".", "\.")
116 file_type = file_type.replace("*", ".*")
117 file_type = file_type + "$"
138 file_types.append((file_type, proplis
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.enum/
H A Denum.file_type.pass.cpp14 // enum class file_type;
24 constexpr fs::file_type ME(int val) { return static_cast<fs::file_type>(val); }
27 typedef fs::file_type E;
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.symlink_status/
H A Dsymlink_status.pass.cpp47 TEST_CHECK(st.type() == file_type::not_found);
52 TEST_CHECK(st.type() == file_type::not_found);
80 TEST_CHECK(st.type() == file_type::none);
101 TEST_CHECK(st.type() == file_type::symlink);
105 TEST_CHECK(st.type() == file_type::symlink);
116 file_type expect_type;
118 {StaticEnv::BadSymlink, file_type::symlink},
119 {StaticEnv::File, file_type::regular},
120 {StaticEnv::SymlinkToFile, file_type::symlink},
121 {StaticEnv::Dir, file_type
[all...]
/external/f2fs-tools/fsck/
H A Dsload.c58 if (de[i].file_type == F2FS_FT_DIR)
60 else if (de[i].file_type == F2FS_FT_REG_FILE)
62 else if (de[i].file_type == F2FS_FT_SYMLINK)
126 dentries[i].file_type = F2FS_FT_REG_FILE;
128 dentries[i].file_type = F2FS_FT_DIR;
130 dentries[i].file_type = F2FS_FT_CHRDEV;
132 dentries[i].file_type = F2FS_FT_BLKDEV;
134 dentries[i].file_type = F2FS_FT_FIFO;
136 dentries[i].file_type = F2FS_FT_SOCK;
138 dentries[i].file_type
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.status/
H A Dstatus.pass.cpp48 TEST_CHECK(st.type() == file_type::not_found);
53 TEST_CHECK(st.type() == file_type::not_found);
87 TEST_CHECK(st.type() == file_type::none);
109 file_type expect_type;
111 {StaticEnv::File, file_type::regular},
112 {StaticEnv::SymlinkToFile, file_type::regular},
113 {StaticEnv::Dir, file_type::directory},
114 {StaticEnv::SymlinkToDir, file_type::directory},
116 {StaticEnv::CharFile, file_type::character},
118 {env.create_socket("socket"), file_type
[all...]
/external/autotest/client/cros/audio/
H A Daudio_test_data.py29 file_type, sample_format, channel, and rate.
30 file_type: file type e.g. 'raw' or 'wav'.
67 data_format = dict(file_type='raw', sample_format='S32_LE',
83 new_ext = '.' + data_format['file_type']
93 if self.data_format['file_type'] != 'raw':
107 use_dst_header = data_format['file_type'] != 'raw'
160 file_type, sample_format, channel, and rate.
161 file_type: file type e.g. 'raw' or 'wav'.
190 raw=(self.data_format['file_type'] == 'raw'))
207 data_format=dict(file_type
[all...]
/external/libchrome/base/files/
H A Dfile_enumerator.h95 // |file_type|, a bit mask of FileType, specifies whether the enumerator
109 int file_type);
112 int file_type,
H A Dfile_enumerator_posix.cc44 int file_type)
48 file_type_(file_type) {
56 int file_type,
61 file_type_(file_type),
42 FileEnumerator(const FilePath& root_path, bool recursive, int file_type) argument
54 FileEnumerator(const FilePath& root_path, bool recursive, int file_type, const FilePath::StringType& pattern) argument
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DFileSystem.h43 /// file_type - An "enum class" enumeration for the file system's view of the
45 struct file_type { struct in namespace:llvm::sys::fs
59 file_type(_ v) : v_(v) {} function in struct:llvm::sys::fs::file_type
60 explicit file_type(int v) : v_(_(v)) {} function in struct:llvm::sys::fs::file_type
95 file_type Type;
97 explicit file_status(file_type v=file_type::status_error)
100 file_type type() const { return Type; }
101 void type(file_type v) { Type = v; }
263 /// @results status.type() == file_type
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
H A DPathV2.inc323 result = file_status(file_type::file_not_found);
325 result = file_status(file_type::status_error);
330 result = file_status(file_type::directory_file);
332 result = file_status(file_type::regular_file);
334 result = file_status(file_type::block_file);
336 result = file_status(file_type::character_file);
338 result = file_status(file_type::fifo_file);
340 result = file_status(file_type::socket_file);
342 result = file_status(file_type::type_unknown);
/external/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h34 typedef typename Info::file_type file_type; typedef in class:clang::serialization::MultiOnDiskHashTable
49 file_type File;
52 OnDiskTable(file_type File, unsigned NumBuckets, unsigned NumEntries,
60 std::vector<file_type> Files;
76 llvm::TinyPtrVector<file_type> PendingOverrides;
113 llvm::DenseSet<file_type> Files;
182 void add(file_type File, storage_type Data, Info InfoObj = Info()) {
192 llvm::SmallVector<file_type, 16> OverriddenFiles;
/external/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp132 case sys::fs::file_type::regular_file:
133 case sys::fs::file_type::symlink_file:
134 case sys::fs::file_type::type_unknown:

Completed in 490 milliseconds

12345