Searched defs:filenames (Results 1 - 25 of 64) sorted by relevance

123

/external/syslinux/core/fs/lib/
H A Dloadconfig.c23 static const char *filenames[] = { local
33 return search_dirs(filedata, search_directories, filenames, ConfigName);
H A Dsearchconfig.c12 * This searches for a specified set of filenames in a specified set
18 const char *filenames[],
26 for (sfp = filenames; (sf = *sfp); sfp++) {
16 search_dirs(struct com32_filedata *filedata, const char *search_directories[], const char *filenames[], char *realname) argument
/external/v8/tools/clang/rewrite_to_chrome_style/
H A DEditTracker.h22 llvm::StringSet<> filenames; member in struct:EditInfo
/external/libxml2/xstc/
H A Dfixup-tests.py9 filenames = os.listdir(baseDir) variable
15 for file in filenames:
21 for sub in filenames:
/external/tensorflow/tensorflow/core/grappler/inputs/
H A Dfile_input_yielder.cc35 FileInputYielder::FileInputYielder(const std::vector<string>& filenames, argument
37 : filenames_(filenames),
42 CHECK_GT(filenames.size(), 0) << "List of filenames is empty.";
/external/ltp/testcases/kernel/syscalls/chdir/
H A Dchdir01.c74 char *filenames[3]; local
93 filenames[0] = ".";
94 filenames[1] = "..";
95 filenames[2] = filname;
96 checknames(filenames, sizeof(filenames) / sizeof(filenames[0]),
/external/ltp/testcases/kernel/syscalls/faccessat/
H A Dfaccessat01.c62 static char *filenames[TEST_CASES]; variable
90 TEST(myfaccessat(fds[i], filenames[i], R_OK));
140 filenames[0] = filenames[2] = filenames[3] = filenames[4] = testfile;
141 filenames[1] = testfile2;
142 filenames[5] = testfile3;
/external/ltp/testcases/kernel/syscalls/fchmodat/
H A Dfchmodat01.c62 char *filenames[TEST_CASES]; variable
90 TEST(myfchmodat(fds[i], filenames[i], 0600));
137 filenames[0] = filenames[2] = filenames[3] = filenames[4] = testfile;
138 filenames[1] = testfile2;
139 filenames[5] = testfile3;
/external/ltp/testcases/kernel/syscalls/fchownat/
H A Dfchownat01.c56 char *filenames; member in struct:test_case_t
108 TEST(fchownat(*(test->fds), test->filenames, geteuid(),
/external/ltp/testcases/kernel/syscalls/fstatat/
H A Dfstatat01.c57 static const char *filenames[TEST_CASES]; variable
100 TEST(fstatat(fds[i], filenames[i], &statbuf, flags[i]));
139 filenames[0] = filenames[2] = filenames[3] = filenames[4] =
140 filenames[5] = testfile;
141 filenames[1] = testfile3;
/external/ltp/testcases/kernel/syscalls/futimesat/
H A Dfutimesat01.c56 static const char *filenames[TEST_CASES]; variable
82 TEST(myfutimesat(fds[i], filenames[i], times));
122 filenames[0] = filenames[2] = filenames[3] = filenames[4] = testfile;
123 filenames[1] = testfile3;
/external/ltp/testcases/kernel/syscalls/unlinkat/
H A Dunlinkat01.c62 static const char *filenames[TEST_CASES]; variable
87 TEST(myunlinkat(fds[i], filenames[i], flags[i]));
129 filenames[0] = filenames[2] = filenames[3] = filenames[4] =
130 filenames[5] = testfile;
131 filenames[1] = testfile3;
132 filenames[6] = subpathname;
/external/python/cpython2/Lib/test/
H A Dtest_pep277.py7 filenames = [ variable
28 filenames.extend([
49 for name in filenames:
68 files = set(filenames)
107 # Pass non-existing Unicode filenames all over the place.
146 # than Python NFD normalization: filenames are different even if we use
/external/python/cpython3/Lib/test/
H A Dtest_unicode_file_functions.py10 filenames = [ variable
31 filenames.extend([
52 for name in filenames:
60 files = set(filenames)
96 # Pass non-existing Unicode filenames all over the place.
140 # than Python NFD normalization: filenames are different even if we use
/external/syslinux/core/elflink/
H A Dload_env32.c117 static const char *filenames[] = { local
151 if (!search_dirs(&fp->i.fd, search_directories, filenames, realname)) {
/external/e2fsprogs/lib/support/
H A Dprofile_helpers.c275 char **filenames; local
285 filenames = (char **) malloc((n_entries+1) * sizeof(char*));
286 if (filenames == 0)
292 filenames[i] = (char*) malloc(ent_len + 1);
293 if (filenames[i] == 0) {
295 while(--i >= 0) free(filenames[i]);
296 free(filenames);
299 strncpy(filenames[i], s, ent_len);
300 filenames[i][ent_len] = 0;
307 filenames[
[all...]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCodeMangler.java265 public int process(String path, String[] filenames) { argument
268 for (int i = 0; i < filenames.length; ++i) {
269 if (verbose) System.out.println("name " + i + " of " + filenames.length + ": '" + filenames[i] + "'");
270 String name = path + filenames[i];
/external/ltp/testcases/realtime/func/gtod_latency/
H A Dgtod_latency.c78 char *filenames[] = { "scatter", variable
127 filenames[SCATTER_FILENAME] = argv[++i];
136 filenames[HIST_FILENAME] = argv[++i];
336 stats_container_save(filenames[SCATTER_FILENAME], titles[SCATTER_TITLE],
339 stats_container_save(filenames[HIST_FILENAME], titles[HIST_TITLE],
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_cmdline.c150 char *filenames[2]; local
280 if (num_files >= ARRAY_SIZE(filenames))
286 if (num_files >= ARRAY_SIZE(filenames))
294 filenames[num_files++] = filename;
304 ret = read_file(filenames[0], &ptr, &size);
314 errx(1, "could not parse `%s'", filenames[0]);
321 nir = load_glsl(num_files, filenames, stage);
/external/tensorflow/tensorflow/core/kernels/data/
H A Dreader_dataset_ops.cc38 OP_REQUIRES_OK(ctx, ctx->input("filenames", &filenames_tensor));
41 errors::InvalidArgument("`filenames` must be a scalar or a vector."));
70 std::vector<string> filenames; variable
71 filenames.reserve(filenames_tensor->NumElements());
73 filenames.push_back(filenames_tensor->flat<string>()(i));
76 *output = new Dataset(ctx, std::move(filenames), compression_type,
83 Dataset(OpKernelContext* ctx, std::vector<string> filenames, argument
87 filenames_(std::move(filenames)),
114 Node* filenames = nullptr; variable
117 TF_RETURN_IF_ERROR(b->AddVector(filenames_, &filenames));
276 std::vector<string> filenames; variable
316 Dataset(OpKernelContext* ctx, std::vector<string> filenames, int64 header_bytes, int64 record_bytes, int64 footer_bytes, int64 buffer_size) argument
350 Node* filenames = nullptr; variable
510 std::vector<string> filenames; variable
534 Dataset(OpKernelContext* ctx, std::vector<string> filenames, const string& compression_type, int64 buffer_size) argument
568 Node* filenames = nullptr; variable
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Drecord_yielder.cc73 std::vector<string> filenames; // File names given to this shard. member in struct:tensorflow::RecordYielder::Shard
85 std::vector<string>* filenames) {
90 filenames->insert(filenames->end(),
104 std::vector<string> filenames; local
105 Status s = MatchFiles(opts_.file_pattern, &filenames);
107 if (filenames.empty()) {
120 std::shuffle(filenames.begin(), filenames.end(), shuffle_rnd);
123 const std::vector<string>::size_type num = filenames
84 MatchFiles(const string& patterns, std::vector<string>* filenames) argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fTextureWrapTests.cpp61 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames);
107 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames) argument
119 , m_filenames (filenames)
/external/flatbuffers/src/
H A Dflatc.cpp139 std::vector<std::string> filenames; local
150 if (filenames.size() && arg[1] != '-')
235 binary_files_from = filenames.size();
272 filenames.push_back(flatbuffers::PosixPath(argv[argi]));
276 if (!filenames.size()) Error("missing input files", false, true);
296 for (auto file_it = filenames.begin();
297 file_it != filenames.end();
304 bool is_binary = static_cast<size_t>(file_it - filenames.begin()) >=
/external/syslinux/core/fs/iso9660/
H A Diso9660.c268 static const char *filenames[] = { local
274 return search_dirs(filedata, search_directories, filenames, ConfigName);
/external/tensorflow/tensorflow/core/debug/
H A Dgrpc_session_debug_test.cc126 std::vector<string> filenames; local
127 TF_ASSERT_OK(Env::Default()->GetChildren(dirpath, &filenames));
129 for (const string& filename : filenames) {

Completed in 565 milliseconds

123