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

1 2 3 4

  /external/v8/tools/
find_depot_tools.py 30 root_dir = os.path.dirname(os.path.abspath(__file__))
32 while root_dir and root_dir != previous_dir:
33 if directory_really_is_depot_tools(os.path.join(root_dir, 'depot_tools')):
34 i = os.path.join(root_dir, 'depot_tools')
37 previous_dir = root_dir
38 root_dir = os.path.dirname(root_dir)
  /development/tools/idegen/
index-gen.sh 32 #root_dir=`readlink -f -n $script_dir/../../..`
33 root_dir=$PWD
34 if [ ! -e $root_dir/.repo ]; then
35 root_dir=$PWD/../../..
36 if [ ! -e $root_dir/.repo ]; then
41 tmp_file=${root_dir}/tmp.txt
42 dest_file=${root_dir}/module-index.txt
46 find $root_dir -name '*.mk' \( ! -path "$root_dir/build*" -prune \) \
55 grep -v "^$root_dir/vendor/google" $tmp_file > $dest_fil
    [all...]
intellij-gen.sh 47 root_dir=$PWD
48 if [ ! -e $root_dir/.repo ]; then
49 root_dir=$PWD/../../..
50 if [ ! -e $root_dir/.repo ]; then
55 index_file=$root_dir/module-index.txt
63 idegenjar="$root_dir/out/host/$platform-x86/framework/idegen.jar"
  /external/libweave/examples/
build.sh 10 ROOT_DIR=$(cd -P -- "$(dirname -- "$0")/.." && pwd -P)
12 cd $ROOT_DIR
prerequisites.sh 10 ROOT_DIR=$(cd -P -- "$(dirname -- "$0")/.." && pwd -P)
  /external/autotest/client/site_tests/platform_CrosDisksArchive/
platform_CrosDisksArchive.py 25 def _find_all_files(self, root_dir):
32 root_dir: The root directory where the search starts from.
39 for path in os.listdir(os.path.join(root_dir, current_dir)):
40 expanded_path = os.path.join(root_dir, current_dir, path)
47 def _make_tar_archive(self, archive_path, root_dir, compression=None):
56 root_dir: The root directory to archive.
62 for path in self._find_all_files(root_dir):
63 archive.add(os.path.join(root_dir, path), path)
66 def _make_zip_archive(self, archive_path, root_dir,
76 root_dir: The root directory to archive
    [all...]
  /external/chromium-trace/catapult/firefighter/bin/
packaging.py 20 def Modules(root_dir):
21 """Yields module names in root_dir."""
22 for root, _, files in os.walk(root_dir):
29 def Yamls(root_dir):
30 """Yields yaml files in root_dir."""
31 for root, _, files in os.walk(root_dir):
38 def TempAppDir(root_dir, symlinks):
42 root_dir: The root directory of the app.
62 for module in Modules(root_dir):
63 module_source_dir = os.path.join(root_dir, module
    [all...]
deploy 15 root_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
16 with packaging.TempAppDir(root_dir, symlinks=False) as temp_app_dir:
run 17 root_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
18 with packaging.TempAppDir(root_dir, symlinks=True) as temp_app_dir:
  /external/webrtc/tools/sslroots/
generate_sslroots.py 52 root_dir = _SplitCrt(args[0], options)
53 _GenCFiles(root_dir, options)
54 _Cleanup(root_dir)
60 root_dir = os.path.dirname(os.path.abspath(source_file)) + '/'
61 _PrintOutput(root_dir, options)
72 new_file_name = root_dir + _PREFIX + label_name + _EXTENSION
82 return root_dir
85 def _GenCFiles(root_dir, options):
86 output_header_file = open(root_dir + _GENERATED_FILE, 'w')
98 for _, _, files in os.walk(root_dir)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/tests/
AacEncTest.mk 9 CFLAGS += -I$(ROOT_DIR)/system/src/openmax_il/omx_core/src -I$(TOP_DIR)/inc/
  /external/libbrillo/brillo/
osrelease_reader.cc 24 void OsReleaseReader::LoadTestingOnly(const base::FilePath& root_dir) {
25 Load(root_dir);
28 void OsReleaseReader::Load(const base::FilePath& root_dir) {
29 base::FilePath osrelease = root_dir.Append("etc").Append("os-release");
36 base::FilePath osreleased = root_dir.Append("etc").Append("os-release.d");
osrelease_reader.h 34 void LoadTestingOnly(const base::FilePath& root_dir);
46 // Load the data from a given root_dir.
47 BRILLO_PRIVATE void Load(const base::FilePath& root_dir);
  /prebuilts/sdk/
update_current.sh 27 cd $ROOT_DIR/current
37 cp -f $SYSTEM_SDK $ROOT_DIR/system_current/android.jar
45 rm -rf $ROOT_DIR/current/support/
46 cd $ROOT_DIR/current
107 ROOT_DIR=$(realpath $(dirname $0))
  /external/wpa_supplicant_8/hs20/server/
spp_server.h 15 char *root_dir; member in struct:hs20_svc
  /external/libweave/third_party/libuweave/
update.sh 7 ROOT_DIR=$(cd -P -- "$(dirname -- "$0")/../.." && pwd -P)
9 cd $ROOT_DIR
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
archive_util.py 193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
201 'root_dir' is a directory that will be the root directory of the
202 archive; ie. we typically chdir into 'root_dir' before creating the
205 directories in the archive. 'root_dir' and 'base_dir' both default
212 if root_dir is not None:
213 log.debug("changing into '%s'", root_dir)
216 os.chdir(root_dir)
239 if root_dir is not None:
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
archive_util.py 193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
201 'root_dir' is a directory that will be the root directory of the
202 archive; ie. we typically chdir into 'root_dir' before creating the
205 directories in the archive. 'root_dir' and 'base_dir' both default
212 if root_dir is not None:
213 log.debug("changing into '%s'", root_dir)
216 os.chdir(root_dir)
239 if root_dir is not None:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
201 'root_dir' is a directory that will be the root directory of the
202 archive; ie. we typically chdir into 'root_dir' before creating the
205 directories in the archive. 'root_dir' and 'base_dir' both default
212 if root_dir is not None:
213 log.debug("changing into '%s'", root_dir)
216 os.chdir(root_dir)
239 if root_dir is not None:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
201 'root_dir' is a directory that will be the root directory of the
202 archive; ie. we typically chdir into 'root_dir' before creating the
205 directories in the archive. 'root_dir' and 'base_dir' both default
212 if root_dir is not None:
213 log.debug("changing into '%s'", root_dir)
216 os.chdir(root_dir)
239 if root_dir is not None:
  /external/google-benchmark/
mingw.py 233 root_dir = os.path.join(location, slug, 'mingw64')
235 root_dir = os.path.join(location, slug, 'mingw32')
240 if not os.path.exists(root_dir):
242 if downloaded != root_dir:
244 % (downloaded, root_dir))
246 return root_dir
302 root_dir = root(location = args.location, arch = args.arch,
307 sys.stdout.write('%s\n' % os.path.join(root_dir, 'bin'))
  /external/valgrind/
runtest.sh 17 root_dir=`realpath \`dirname $0\`/../../`
34 cd $root_dir
  /external/autotest/utils/modelviz/
generate_schema_diagrams.py 12 ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 240 base_dir, root_dir, base_name = self._create_files()
242 res = make_archive(base_name, 'zip', root_dir, base_dir, owner=owner,
246 res = make_archive(base_name, 'zip', root_dir, base_dir)
249 res = make_archive(base_name, 'tar', root_dir, base_dir,
253 res = make_archive(base_name, 'tar', root_dir, base_dir,
290 make_archive('xxx', 'xxx', root_dir=self.mkdtemp())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 240 base_dir, root_dir, base_name = self._create_files()
242 res = make_archive(base_name, 'zip', root_dir, base_dir, owner=owner,
246 res = make_archive(base_name, 'zip', root_dir, base_dir)
249 res = make_archive(base_name, 'tar', root_dir, base_dir,
253 res = make_archive(base_name, 'tar', root_dir, base_dir,
290 make_archive('xxx', 'xxx', root_dir=self.mkdtemp())

Completed in 988 milliseconds

1 2 3 4