HomeSort by relevance Sort by last modified time
    Searched refs:file_type (Results 1 - 25 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.status_known/
status_known.pass.cpp 38 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::socket, true}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_block_file/
is_block_file.pass.cpp 43 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::socket, false}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_char_file/
is_character_file.pass.cpp 43 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::socket, false}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_directory/
is_directory.pass.cpp 43 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::socket, false}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_fifo/
is_fifo.pass.cpp 43 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::socket, false}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_other/
is_other.pass.cpp 43 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::socket, true}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_regular_file/
is_regular_file.pass.cpp 43 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::socket, false}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_socket/
is_socket.pass.cpp 43 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::socket, true}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.file_status/
file_status.cons.pass.cpp 17 // 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::regular)
    [all...]
file_status.mods.pass.cpp 16 // 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);
file_status.obs.pass.cpp 16 // 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/
exists.pass.cpp 43 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::socket, true}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_symlink/
is_symlink.pass.cpp 43 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::socket, false}
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.enum/
enum.file_type.pass.cpp 14 // 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/
symlink_status.pass.cpp 47 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::directory}
    [all...]
  /test/vts/compilation_tools/vtsc/code_gen/
CodeGenBase.cpp 75 VtsCompileFileType file_type) {
119 if (file_type == kHeader) {
121 } else if (file_type == kSource){
124 cerr << __func__ << " doesn't support file_type = kBoth." << endl;
140 if (file_type == kHeader) {
142 } else if (file_type == kSource){
145 cerr << __func__ << " doesn't support file_type = kBoth." << endl;
159 if (file_type == kHeader) {
161 } else if (file_type == kSource){
164 cerr << __func__ << " doesn't support file_type = kBoth." << endl
    [all...]
  /external/icu/icu4c/source/tools/
icu-svnprops-check.py 110 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, proplist)
    [all...]
  /external/f2fs-tools/fsck/
sload.c 58 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 = F2FS_FT_SYMLINK
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.status/
status.pass.cpp 48 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::socket}
    [all...]
  /system/sepolicy/tools/fc_sort/
fc_sort.c 39 char *file_type; member in struct:file_context_node
50 free(x->file_type);
112 if (!a->file_type && b->file_type)
114 if (!b->file_type && a->file_type)
424 temp->file_type = (char *)malloc(sizeof(char) * 3);
425 if (!(temp->file_type)) {
438 temp->file_type[0] = line_buf[i];
439 temp->file_type[1] = line_buf[i + 1]
    [all...]
  /test/vts/compilation_tools/vtsc/test/
test_vtsc.py 98 file_type="HEADER")
103 file_type="SOURCE")
138 file_type="HEADER")
143 file_type="SOURCE")
154 file_type="SOURCE")
198 file_type="BOTH"):
206 file_type: type of file e.g. HEADER / SOURCE / BOTH.
208 if (file_type == "BOTH"):
216 self._vtsc_path, "-m" + mode, "-t" + file_type, vts_file_path,
223 if (file_type == "HEADER" or file_type == "BOTH")
    [all...]
  /external/autotest/client/cros/audio/
audio_test_data.py 29 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='raw'
    [all...]
  /external/libchrome/base/files/
file_enumerator.h 95 // |file_type|, a bit mask of FileType, specifies whether the enumerator
109 int file_type);
112 int file_type,
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
FileSystem.h 43 /// 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::directory_file
    [all...]
  /system/sepolicy/vendor/
tee.te 4 type tee_exec, exec_type, vendor_file_type, file_type;

Completed in 2040 milliseconds

1 2 3 4 5 6 7 8 91011>>