Searched defs:subdir (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/tools/gyp/test/additional-targets/
H A Dgyptest-additional.py54 subdir='dir1') variable
/external/chromium/net/tools/dump_cache/
H A Dcache_dumper.cc55 std::wstring subdir = path.substr(0, pos); local
56 CreateDirectoryW(subdir.c_str(), NULL);
/external/chromium_org/net/tools/dump_cache/
H A Dcache_dumper.cc60 base::FilePath::StringType subdir = path.value().substr(0, pos); local
61 CreateDirectoryW(subdir.c_str(), NULL);
/external/elfutils/libdwfl/
H A Dfind-debuginfo.c59 try_open (const char *dir, const char *subdir, const char *debuglink, argument
63 if (dir == NULL && subdir == NULL)
69 else if ((subdir == NULL ? asprintf (&fname, "%s/%s", dir, debuglink)
70 : dir == NULL ? asprintf (&fname, "%s/%s", subdir, debuglink)
71 : asprintf (&fname, "%s/%s/%s", dir, subdir, debuglink)) < 0)
183 const char *dir, *subdir; local
189 subdir = NULL;
198 subdir = file_dirname + 1;
204 subdir = p;
211 int fd = try_open (dir, subdir, debuglink_fil
[all...]
/external/chromium/base/files/
H A Dfile_path_watcher_linux.cc124 WatchEntry(InotifyReader::Watch watch, const FilePath::StringType& subdir) argument
126 subdir_(subdir) {}
H A Dfile_path_watcher_mac.cc65 EventData(const FilePath& path, const FilePath::StringType& subdir) argument
66 : path_(path), subdir_(subdir) { }
176 FilePath::StringType subdir = (i != (components.end() - 1)) ? *(i + 1) : ""; local
177 EventData* data = new EventData(built_path, subdir);
384 // If the subdir is empty, this is the last item on the path and is the
/external/chromium/chrome/common/extensions/
H A Dextension_l10n_util.cc302 std::string subdir = relative_path.MaybeAsASCII(); local
303 if (subdir.empty())
306 if (std::find(subdir.begin(), subdir.end(), '.') != subdir.end())
309 if (all_locales.find(subdir) == all_locales.end())
/external/chromium/third_party/libjingle/source/talk/base/
H A Dfileutils.cc202 Pathname subdir; local
203 subdir.SetFolder(folder.pathname());
205 subdir.AppendFolder(di->Name());
206 if (!DeleteFolderAndContents(subdir)) {
210 subdir.SetFilename(di->Name());
211 if (!DeleteFile(subdir)) {
/external/chromium_org/base/files/
H A Dfile_path_watcher_kqueue.cc77 EventData(const FilePath& path, const FilePath::StringType& subdir) argument
78 : path_(path), subdir_(subdir) { }
190 FilePath::StringType subdir = (i != (components.end() - 1)) ? *(i + 1) : ""; local
191 EventData* data = new EventData(built_path, subdir);
400 // If the subdir is empty, this is the last item on the path and is the
H A Dfile_path_watcher_linux.cc125 WatchEntry(InotifyReader::Watch watch, const FilePath::StringType& subdir) argument
127 subdir_(subdir) {}
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app_win.cc287 // This matches the subdir name set by CreateApplicationShortcutView::Accept
489 const wchar_t* subdir; member in struct:web_app::internals::__anon6636
523 if (locations[i].subdir != NULL)
524 path = path.Append(locations[i].subdir);
/external/chromium_org/chrome/common/extensions/
H A Dextension_l10n_util.cc351 std::string subdir = relative_path.MaybeAsASCII(); local
352 if (subdir.empty())
355 if (std::find(subdir.begin(), subdir.end(), '.') != subdir.end())
358 if (all_locales.find(subdir) == all_locales.end())
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dfileutils.cc214 Pathname subdir; local
215 subdir.SetFolder(folder.pathname());
217 subdir.AppendFolder(di->Name());
218 if (!DeleteFolderAndContents(subdir)) {
222 subdir.SetFilename(di->Name());
223 if (!DeleteFile(subdir)) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DScenarioData.java76 private File createFile(File outputDir, String subdir, String name, String extension) { argument
78 if (subdir != null) {
79 dir = new File(outputDir, subdir);
/external/elfutils/libelf-po/
H A DMakefile64 subdir = po macro
265 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
320 && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
/external/doclava/src/com/google/doclava/
H A DSampleCode.java57 String subdir = mDest;
58 String mOut = subdir + name;
113 String subdir = relative;
271 Data setParentDirs(Data hdf, String subdir, String name, Boolean isFile) { argument
277 String s = subdir;
281 //System.out.println("setParentDirs for " + subdir + name);
286 hdf.setValue("parentdirs." + n + ".Link", subdir + "index" + Doclava.htmlExtension);
294 public void writePage(File f, String out, String subdir) { argument
304 String relative = subdir.replaceFirst("samples/", "");
306 setParentDirs(hdf, subdir, nam
323 writeImagePage(File f, String out, String subdir) argument
[all...]
/external/kernel-headers/original/linux/
H A Dproc_fs.h36 * while parent/subdir create the directory structure (every
37 * /proc file has a parent, but "subdir" is NULL for all
63 struct proc_dir_entry *next, *parent, *subdir; member in struct:proc_dir_entry
/external/chromium/base/
H A Dmime_util_xdg.cc129 // Returns the path to an icon with the name |icon_name| in |subdir|.
131 const std::string& subdir);
244 const std::string& subdir) {
251 icon_path = dir_iter->Append(subdir);
279 std::string subdir = entry.substr(1, entry.length() - 2); local
280 if (subdirs_.find(subdir) != subdirs_.end())
281 current_info = &info_array_[subdirs_[subdir]];
376 LOG(WARNING) << "Invalid index.theme: blank subdir";
384 LOG(WARNING) << "Invalid index.theme: blank subdir";
243 GetIconPathUnderSubdir(const std::string& icon_name, const std::string& subdir) argument
/external/chromium_org/base/nix/
H A Dmime_util_xdg.cc128 // Returns the path to an icon with the name |icon_name| in |subdir|.
130 const std::string& subdir);
242 const std::string& subdir) {
249 icon_path = dir_iter->Append(subdir);
277 std::string subdir = entry.substr(1, entry.length() - 2); local
278 if (subdirs_.find(subdir) != subdirs_.end())
279 current_info = &info_array_[subdirs_[subdir]];
372 DLOG(WARNING) << "Invalid index.theme: blank subdir";
380 DLOG(WARNING) << "Invalid index.theme: blank subdir";
241 GetIconPathUnderSubdir(const std::string& icon_name, const std::string& subdir) argument
/external/chromium_org/tools/gyp/test/lib/
H A DTestCmd.py25 subdir = 'subdir',
46 test.workpath('subdir', 'file')
48 test.subdir('subdir', ...)
50 test.rmdir('subdir', ...)
53 test.write(['subdir', 'file'], "contents\n")
56 test.read(['subdir', 'file'])
58 test.read(['subdir', 'file'], mode)
135 test.unlink('subdir', 'fil
1306 def subdir(self, *subdirs): member in class:TestCmd
[all...]
/external/libogg/win32/
H A DMakefile114 subdir = win32 macro
127 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
/external/qemu/android/
H A Dmain-common.c855 const char* subdir; local
858 subdir = dirScanner_next(scanner);
859 if (!subdir) break;
861 q = bufprint(p, end, "/%s/images/%s", subdir, fileName);
866 p = bufprint(p, end, "/%s/images", subdir);
/external/chromium_org/third_party/libxml/src/
H A Druntest.c3790 const char *subdir) {
3806 snprintf(buf, 499, "result/c14n/%s/%s", subdir,prefix);
3812 snprintf(buf, 499, "test/c14n/%s/%s.xpath", subdir,prefix);
3816 snprintf(buf, 499, "test/c14n/%s/%s.ns", subdir,prefix);
3789 c14nCommonTest(const char *filename, int with_comments, int mode, const char *subdir) argument
/external/chromium_org/third_party/yasm/source/config/android/
H A DMakefile334 subdir = . macro
3163 list='$(SUBDIRS)'; for subdir in $$list; do \
3164 echo "Making $$target in $$subdir"; \
3165 if test "$$subdir" = "."; then \
3171 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
3191 rev=''; for subdir in $$list; do \
3192 if test "$$subdir" = "."; then :; else \
3193 rev="$$subdir $$rev"; \
3198 for subdir in $$rev; do \
3199 echo "Making $$target in $$subdir"; \
[all...]
/external/chromium_org/third_party/yasm/source/config/ios/
H A DMakefile334 subdir = . macro
3163 list='$(SUBDIRS)'; for subdir in $$list; do \
3164 echo "Making $$target in $$subdir"; \
3165 if test "$$subdir" = "."; then \
3171 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
3191 rev=''; for subdir in $$list; do \
3192 if test "$$subdir" = "."; then :; else \
3193 rev="$$subdir $$rev"; \
3198 for subdir in $$rev; do \
3199 echo "Making $$target in $$subdir"; \
[all...]

Completed in 807 milliseconds

12