HomeSort by relevance Sort by last modified time
    Searched full:base_dir (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/e2fsprogs/lib/ext2fs/tdb/
build-tdb 6 #BASE_DIR=/usr/projects/samba/samba-4.0.0tp4/source/lib/tdb
7 BASE_DIR=/usr/projects/samba/tdb
14 (cd $BASE_DIR/common; svn info ) > .svninfo
21 cat $BASE_DIR/common/tdb_private.h >> tdb.c
27 sed -e '1,/#include "tdb_private.h"/d' < $BASE_DIR/common/$i >> tdb.c
30 cp $BASE_DIR/include/tdb.h .
31 cp $BASE_DIR/tools/tdbtool.c .
  /external/chromium_org/tools/telemetry/telemetry/page/
page_measurement_runner.py 10 def Main(base_dir, page_set_filenames):
14 base_dir: Path to directory containing tests and ProfileCreators.
17 sys.exit(runner.Run(base_dir, page_set_filenames))
page_test_runner.py 15 def Main(base_dir, page_set_filenames):
19 base_dir: Path to directory containing tests and ProfileCreators.
22 sys.exit(runner.Run(base_dir, page_set_filenames))
38 def Run(self, base_dir, page_set_filenames):
39 test, ps, expectations = self.ParseCommandLine(sys.argv, base_dir,
45 def FindTestConstructors(self, base_dir):
48 base_dir, base_dir, self.test_class)
50 base_dir, base_dir, test_module.Test, index_by_class_name=True)
    [all...]
page_measurement_unittest_base.py 22 base_dir = os.path.dirname(__file__)
23 ps = page_set.PageSet(file_path=os.path.join(base_dir, 'foo.json'))
24 page = page_module.Page(test_filename, ps, base_dir=base_dir)
page.py 42 def __init__(self, url, page_set, attributes=None, base_dir=None):
45 abspath = os.path.abspath(os.path.join(base_dir, parsed_url.path))
47 url = 'file://%s' % os.path.abspath(os.path.join(base_dir, url))
52 self.base_dir = base_dir
82 path = _UrlPathJoin(self.base_dir, parsed_url.netloc, parsed_url.path)
86 base_path = _UrlPathJoin(self.base_dir, url_base_dir)
87 return ([_UrlPathJoin(self.base_dir, d)
  /sdk/eclipse/scripts/
setup_eclipse.sh 43 BASE_DIR="$1"
53 BIN="$BASE_DIR/eclipse/eclipse" # path to installed binary
54 TARGZ="$BASE_DIR/${DOWNLOAD_URL##*/}" # base dir + filename of the download URL
55 CDTZIP="$BASE_DIR/${CDT_DOWNLOAD_URL##*/}"
58 echo "Downloading and installing Eclipse in $BASE_DIR."
59 mkdir -p "$BASE_DIR"
63 (cd "$BASE_DIR" && tar xzf "$TARGZ")
67 (cd "$BASE_DIR/eclipse" && unzip -o "$CDTZIP")
78 echo "$ECLIPSE_PID" > "$BASE_DIR"/eclipse.pid
build_plugins.sh 86 BASE_DIR=/buildbot/eclipse-android
88 echo "ECLIPSE_HOME not set, using $BASE_DIR as default"
90 if [ ! -d "$BASE_DIR" ]; then
91 mkdir -p "$BASE_DIR" || die "Please create a directory $BASE_DIR where Eclipse will be installed, i.e. execute 'mkdir -p $BASE_DIR && chown $USER $BASE_DIR'."
96 BASE_DIR="$BASE_DIR/$VERSION"
97 scripts/setup_eclipse.sh -p "$BASE_DIR"
    [all...]
  /external/chromium_org/third_party/ots/test/
test_malicious_fonts.sh 9 BASE_DIR=~/malicious/
19 # BASE_DIR.
20 if [ ! -d $BASE_DIR ] ; then
21 echo "$BASE_DIR does not exist."
26 find $BASE_DIR -type f -name '*tf' -exec "$0" {} \;
test_unmalicious_fonts.sh 24 # BASE_DIR below.
29 BASE_DIR=/usr/share/fonts/truetype/
30 if [ ! -d $BASE_DIR ] ; then
32 BASE_DIR="/Library/Fonts/ /System/Library/Fonts/"
37 find $BASE_DIR -type f -name '*tf' -exec "$0" {} \;
  /external/chromium_org/chrome/installer/util/
self_cleaning_temp_dir.cc 15 // Populates |base_dir| with the topmost directory in the hierarchy of
17 // |base_dir| is cleared.
21 base::FilePath* base_dir) {
22 DCHECK(base_dir);
25 // Empty base_dir means that we didn't create any extra directories.
26 base_dir->clear();
30 *base_dir = parent_dir;
32 } while (parent_dir != *base_dir && !base::PathExists(parent_dir));
58 base::FilePath base_dir; local
59 GetTopDirToCreate(parent_dir, &base_dir);
    [all...]
  /external/chromium_org/build/android/
adb_logcat_printer.py 9 To test, call './adb_logcat_printer.py <base_dir>' where
10 <base_dir> contains 'adb logcat -v threadtime' files named as
16 Additionally, if a <base_dir>/LOGCAT_MONITOR_PID exists, the script
70 def FindLogFiles(base_dir):
74 base_dir: directory to search
82 for cur_file in os.listdir(base_dir):
86 os.path.join(base_dir, cur_file))]
125 def ShutdownLogcatMonitor(base_dir, logger):
128 monitor_pid_path = os.path.join(base_dir, 'LOGCAT_MONITOR_PID')
152 def main(base_dir, output_file)
    [all...]
adb_logcat_monitor.py 9 Usage: adb_logcat_monitor.py <base_dir> [<adb_binary_path>]
12 inside the <base_dir> directory, which it attempts to create. The
42 def StartLogcatIfNecessary(device_id, adb_cmd, base_dir):
59 logcat_file = open(os.path.join(base_dir, logcat_filename), 'w')
97 def main(base_dir, adb_cmd='adb'):
100 if os.path.exists(base_dir):
101 print 'adb_logcat_monitor: %s already exists? Cleaning' % base_dir
102 shutil.rmtree(base_dir, ignore_errors=True)
104 os.makedirs(base_dir)
105 logging.basicConfig(filename=os.path.join(base_dir, 'eventlog')
    [all...]
  /development/scripts/
combine_sdks.sh 53 BASE_DIR="$TMP"/base
55 OUTPUT_TMP_ZIP="$BASE_DIR/$TMP_ZIP"
57 unzip $Q "$BASE" -d "$BASE_DIR"
60 UNZIPPED_BASE_DIR=$(echo "$BASE_DIR"/*)
88 pushd "$BASE_DIR" &> /dev/null
100 mv $V "$BASE_DIR"/* "$OUT_DIR"
  /external/oprofile/libutil/
op_file.h 76 * @param base_dir directory from where lookup starts
79 * NO_RECURSION: Find matching files from passed base_dir and call
81 * MATCH_ANY_ENTRY_RECURSION: Starting at base_dir, for each entry in the
85 * MATCH_DIR_ONLY_RECURSION: Starting at base_dir, if an entry in the
92 * Return a list of pathnames under base_dir, filtered by filter and optionally
101 char const * base_dir, char const * filter,
  /external/chromium_org/tools/telemetry/telemetry/core/
profile_types_unittest.py 23 base_dir = util.GetUnittestDataDir()
25 profile_types.FindProfileCreators(profile_creators_dir, base_dir)
profile_types.py 19 def _DiscoverCreateableProfiles(profile_creators_dir, base_dir):
27 profile_creators_dir, base_dir, profile_creator.ProfileCreator)
42 def FindProfileCreators(profile_creators_dir, base_dir):
46 profile_creators_dir, base_dir))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
54 'base_dir'.
63 The output tar file will be named 'base_dir' + ".tar", possibly plus
103 tar.add(base_dir, filter=_set_uid_gid)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
122 """Create a zip file from all the files under 'base_dir'.
147 spawn(["zip", zipoptions, zip_filename, base_dir],
159 zip_filename, base_dir)
165 for dirpath, dirnames, filenames in os.walk(base_dir):
193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
54 'base_dir'.
63 The output tar file will be named 'base_dir' + ".tar", possibly plus
103 tar.add(base_dir, filter=_set_uid_gid)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
122 """Create a zip file from all the files under 'base_dir'.
147 spawn(["zip", zipoptions, zip_filename, base_dir],
159 zip_filename, base_dir)
165 for dirpath, dirnames, filenames in os.walk(base_dir):
193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_testserver.py 11 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
13 sys.path.append(os.path.join(BASE_DIR, '..', '..', '..', 'net',
22 sys.path.append(os.path.join(BASE_DIR, '..', '..', '..', 'third_party',
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
find_files.py 49 def find(filesystem, base_dir, paths=None, skipped_directories=None, file_filter=None, directory_sort_key=None):
53 paths: a list of path expressions relative to base_dir
56 everything under the base_dir.
61 return _normalized_find(filesystem, _normalize(filesystem, base_dir, paths), skipped_directories, file_filter, directory_sort_key)
64 def _normalize(filesystem, base_dir, paths):
65 return [filesystem.normpath(filesystem.join(base_dir, path)) for path in paths]
  /external/chromium_org/tools/perf/
run_measurement 14 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
22 sys.path.append(os.path.join(BASE_DIR, BOOTSTRAPPED_FILES_DIR, module_path))
32 bootstrap.DownloadDepsURL(os.path.join(BASE_DIR, BOOTSTRAPPED_FILES_DIR),
42 telemetry_tools_path = os.path.join(BASE_DIR, os.pardir, 'telemetry_tools')
56 telemetry_path = os.path.join(BASE_DIR, os.pardir, 'telemetry')
99 sys.exit(runner.Run(BASE_DIR, page_set_filenames))
  /external/chromium_org/chrome/common/extensions/docs/server2/
example_zipper.py 17 def _MakeZipFile(self, base_dir, files):
24 file_path = '%s%s' % (base_dir, file_name)
32 redundant_prefix = '%s/' % base_dir.rstrip('/').rsplit('/', 1)[0]
  /external/zlib/
update_zlib.sh 9 base_dir=$(realpath $(dirname $0))
24 src_dir=$base_dir/src
28 cd $base_dir
  /external/chromium_org/chrome/browser/extensions/api/developer_private/
developer_private_apitest.cc 21 base::FilePath base_dir = test_data_dir_.AppendASCII("developer"); local
22 LoadNamedExtension(base_dir, "hosted_app");
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
inspector_timeline_unittest.py 12 base_dir = os.path.dirname(__file__)
13 self._browser.SetHTTPServerDirectories(os.path.join(base_dir, '..', '..',

Completed in 627 milliseconds

1 2 3 4 5 6 7 8