HomeSort by relevance Sort by last modified time
    Searched refs:dirs (Results 51 - 75 of 922) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/curl/lib/
ftp.h 121 char **dirs; /* realloc()ed array for path components */ member in struct:ftp_conn
122 int dirdepth; /* number of entries used in the 'dirs' array */
123 int diralloc; /* number of entries allocated for the 'dirs' array */
  /external/ltp/utils/ffsb-6.0-rc2/
filelist.h 56 struct red_black_tree *dirs; member in struct:benchfiles
  /external/selinux/libselinux/src/
selinuxswig_python.i 44 for root, dirs, files in os.walk(path):
45 for name in files + dirs:
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
DirectoryListBot.java 287 public void assertOrder(String[] dirs, String[] files) throws UiObjectNotFoundException {
288 for (int i = 0; i < dirs.length - 1; ++i) {
289 assertOrder(dirs[i], dirs[i + 1]);
292 if (dirs.length > 0 && files.length > 0) {
293 assertOrder(dirs[dirs.length - 1], files[0]);
  /build/soong/ui/build/
util.go 52 func ensureDirectoriesExist(ctx Context, dirs ...string) {
53 for _, dir := range dirs {
62 func ensureEmptyDirectoriesExist(ctx Context, dirs ...string) {
64 for _, dir := range dirs {
71 ensureDirectoriesExist(ctx, dirs...)
  /external/webrtc/webrtc/modules/audio_processing/test/
apmtest.m 179 dirs = dir(inpath);
182 for i=3:length(dirs) % skip . and ..
183 nDirs = nDirs + dirs(i).isdir;
303 for i=3:length(dirs)
304 if dirs(i).isdir
305 [nErr, nCases] = recurseDir([inpath dirs(i).name '/'], outpath, ...
306 refpath,[outfile '_' dirs(i).name], progname, opt, ...
  /external/freetype/src/tools/ftrandom/
ftrandom.c 602 char **dirs, **exts; local
609 dirs = calloc( (size_t)( argc + 1 ), sizeof ( char ** ) );
626 dirs[dcnt++] = argv[++i];
700 free( dirs );
701 dirs = default_dir_list;
710 FindFonts( dirs, exts );
  /packages/apps/DocumentsUI/src/com/android/documentsui/
ScopedAccessProvider.java 295 Set<String> dirs = grantedDirsByUuid.get(p.uuid); local
296 if (dirs == null) {
298 dirs = new HashSet<>(1);
299 grantedDirsByUuid.put(p.uuid, dirs);
301 dirs.add(p.directory);
315 grantedDirsByUuid.forEach((uuid, dirs) -> {
317 Log.w(TAG, "Ignoring individual grants to " + uuid + ": " + dirs);
319 dirs.forEach((dir) -> permissions.add(new Object[] {packageName, uuid, dir, 1}));
  /prebuilts/go/darwin-x86/src/cmd/go/internal/load/
flag_test.go 87 // ppfDirTest(pattern, n, dirs...) says the first n dirs should match and the others should not.
97 func ppfDirTest(pattern string, nmatch int, dirs ...string) ppfTest {
99 for i, d := range dirs {
  /prebuilts/go/linux-x86/src/cmd/go/internal/load/
flag_test.go 87 // ppfDirTest(pattern, n, dirs...) says the first n dirs should match and the others should not.
97 func ppfDirTest(pattern string, nmatch int, dirs ...string) ppfTest {
99 for i, d := range dirs {
  /build/blueprint/pathtools/
glob.go 88 func glob(fs FileSystem, pattern string, hasRecursive bool) (matches, dirs []string, err error) {
95 return matches, dirs, err
106 return matches, dirs, err
109 dirs = append(dirs, matchDirs...)
111 return matches, dirs, err
118 return matches, dirs, GlobMultipleRecursiveErr
123 dirMatches, dirs, err := glob(fs, dir, hasRecursive)
139 dirs = append(dirs, m
    [all...]
  /external/ltp/testcases/kernel/fs/mongo/
mongo.pl 325 $dirs = 0;
333 $dirs ++;
342 print "Total dirs: $dirs\n";
344 print LOG "Total dirs: $dirs\n";
430 print LOG2 " parameters: files=$files, base_size=$median_file_size bytes, dirs=$dirs\n";
452 print LOG3 "dirs=$dirs \n"
    [all...]
  /development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/
RmTypeDefs.java 71 List<File> dirs = new ArrayList<File>(); local
91 dirs.add(file);
105 for (File dir : dirs) {
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipProfileDb.java 135 String[] dirs = root.list(); local
136 if (dirs == null) return sipProfileList;
137 for (String dir : dirs) {
  /frameworks/base/core/java/android/text/
Layout.java 931 Directions dirs = getLineDirections(line); local
961 Directions dirs = getLineDirections(line); local
990 Directions dirs = getLineDirections(line); local
1472 Directions dirs = getLineDirections(line); local
1576 final Directions dirs = getLineDirections(mLine); local
1870 Directions dirs = getLineDirections(line); local
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 658 final File[] dirs = getExternalFilesDirs(type); local
659 return (dirs != null && dirs.length > 0) ? dirs[0] : null;
665 File[] dirs = Environment.buildExternalStorageAppFilesDirs(getPackageName()); local
667 dirs = Environment.buildPaths(dirs, type);
669 return ensureExternalDirsExistOrFilter(dirs);
676 final File[] dirs = getObbDirs(); local
677 return (dirs != null && dirs.length > 0) ? dirs[0] : null
683 File[] dirs = Environment.buildExternalStorageAppObbDirs(getPackageName()); local
711 final File[] dirs = getExternalCacheDirs(); local
718 File[] dirs = Environment.buildExternalStorageAppCacheDirs(getPackageName()); local
726 File[] dirs = Environment.buildExternalStorageAppMediaDirs(getPackageName()); local
    [all...]
  /build/soong/java/
aapt2.go 97 func aapt2CompileDirs(ctx android.ModuleContext, flata android.WritablePath, dirs android.Paths, deps android.Paths) {
100 Description: "aapt2 compile dirs",
107 "cFlags": "--pseudo-localize " + android.JoinWithPrefix(dirs.Strings(), "--dir "),
  /external/annotation-tools/asmx/config/
ow_util_ant_tasks.jar 
  /build/soong/cc/
makevars.go 340 extract := func(flags string, dirs []string, prefix string) (string, []string, bool) {
345 dirs = append(dirs, s[0])
347 return strings.TrimLeft(s[1], " "), dirs, true
349 return "", dirs, true
351 return flags, dirs, false
  /developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/
DeviceDetailFragment.java 236 File dirs = new File(f.getParent()); local
237 if (!dirs.exists())
238 dirs.mkdirs();
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 235 File dirs = new File(f.getParent()); local
236 if (!dirs.exists())
237 dirs.mkdirs();
  /external/clang/include/clang/Lex/
HeaderSearch.h 263 void SetSearchPaths(const std::vector<DirectoryLookup> &dirs,
266 assert(angledDirIdx <= systemDirIdx && systemDirIdx <= dirs.size() &&
268 SearchDirs = dirs;
  /external/testng/src/main/java/org/testng/internal/
PackageUtils.java 61 Vector<URL> dirs = new Vector<>(); local
81 dirs.add(dir);
85 Iterator<URL> dirIterator = dirs.iterator();
  /frameworks/base/libs/androidfw/
ApkAssets.cpp 222 std::set<std::string> dirs; local
234 dirs.insert(std::move(dir));
243 for (const std::string& dir : dirs) {
  /frameworks/support/samples/SupportMediaDemos/src/main/java/com/example/androidx/media/
VideoSelector.java 260 TreeMap<String, VideoItem> dirs = new TreeMap<String, VideoItem>(); local
287 dirs.put(newItem.getName(), newItem);
293 for (VideoItem vi : dirs.values()) {

Completed in 841 milliseconds

1 23 4 5 6 7 8 91011>>