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

1 2 3 4 5 6

  /external/chromium-trace/trace-viewer/build/
fixjsstyle 5 src_dir = os.path.join(os.path.dirname(__file__), '..') variable
7 sys.path.append(os.path.join(src_dir, 'third_party/python_gflags'))
8 sys.path.append(os.path.join(src_dir, 'third_party/closure_linter'))
13 os.chdir(src_dir)
gjslint 5 src_dir = os.path.join(os.path.dirname(__file__), '..') variable
7 sys.path.append(os.path.join(src_dir, 'third_party/python_gflags'))
8 sys.path.append(os.path.join(src_dir, 'third_party/closure_linter'))
13 os.chdir(src_dir)
  /external/chromium_org/third_party/zlib/google/
zip.h 15 // Zip the contents of src_dir into dest_file. src_path must be a directory.
17 // of src_dir will be at the root level of the created zip. For each file in
18 // src_dir, include it only if the callback |filter_cb| returns true. Otherwise
21 bool ZipWithFilterCallback(const base::FilePath& src_dir,
28 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
34 // to the |src_dir| and will be used as the file names in the created zip file.
35 // All source paths must be under |src_dir| in the file system hierarchy.
36 bool ZipFiles(const base::FilePath& src_dir,
zip.cc 29 bool AddFileToZip(zipFile zip_file, const base::FilePath& src_dir) {
30 base::File file(src_dir, base::File::FLAG_OPEN | base::File::FLAG_READ);
32 DLOG(ERROR) << "Could not open file for path " << src_dir.value();
43 << src_dir.value();
124 bool ZipWithFilterCallback(const base::FilePath& src_dir,
127 DCHECK(base::DirectoryExists(src_dir));
138 base::FileEnumerator file_enumerator(src_dir, true /* recursive */,
146 if (!AddEntryToZip(zip_file, path, src_dir)) {
160 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
164 src_dir, dest_file, base::Bind(&ExcludeNoFilesFilter))
    [all...]
zip_unittest.cc 122 base::FilePath src_dir = temp_dir.path().AppendASCII("input"); local
125 base::FilePath src_file = src_dir.AppendASCII("test.txt");
128 EXPECT_TRUE(base::CreateDirectory(src_dir));
146 EXPECT_TRUE(zip::Zip(src_dir, zip_file, true));
212 base::FilePath src_dir; local
213 ASSERT_TRUE(GetTestDataDirectory(&src_dir));
214 src_dir = src_dir.AppendASCII("test");
220 EXPECT_TRUE(zip::Zip(src_dir, zip_file, true));
225 base::FilePath src_dir; local
238 base::FilePath src_dir; local
279 base::FilePath src_dir; local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/
jasmine.yml 3 # Return an array of filepaths relative to src_dir to include before jasmine specs.
18 # Return an array of stylesheet filepaths relative to src_dir to include before jasmine specs.
53 # src_dir
60 # src_dir: public
62 src_dir:
  /external/qemu/distrib/ext4_utils/src/
mkuserimg.sh 8 mkuserimg.sh [-s] SRC_DIR OUTPUT_FILE EXT_VARIANT MOUNT_POINT SIZE [FILE_CONTEXTS]
25 SRC_DIR=$1
26 if [ ! -d $SRC_DIR ]; then
27 echo "Can not find directory $SRC_DIR!"
56 MAKE_EXT4FS_CMD="make_ext4fs $ENABLE_SPARSE_IMAGE $FCOPT -l $SIZE -a $MOUNT_POINT $OUTPUT_FILE $SRC_DIR"
  /external/chromium_org/tools/
check_grd_for_unused_strings.py 81 for src_dir in src_dirs:
82 for root, dirs, files in os.walk(src_dir):
116 src_dir = os.path.dirname(tools_dir)
129 ash_base_dir = os.path.join(src_dir, 'ash')
130 athena_strings_dir = os.path.join(src_dir, 'athena', 'strings')
131 chrome_dir = os.path.join(src_dir, 'chrome')
134 device_base_dir = os.path.join(src_dir, 'device')
135 ui_dir = os.path.join(src_dir, 'ui')
157 os.path.join(src_dir, 'extensions', 'extensions_strings.grd'),
158 os.path.join(src_dir, 'ui', 'resources', 'ui_resources.grd')
    [all...]
  /bionic/libc/kernel/tools/
generate_uapi_headers.sh 59 local src_dir=$1
68 for file in $(ls -d ${src_dir}/* 2> /dev/null); do
85 local src_dir=$2
91 for file in $(ls -d ${src_dir}/* 2> /dev/null); do
152 src_dir="linux-stable"
154 src_dir="common"
168 elif [[ ! -d "${KERNEL_DIR}" ]] || [[ ! -d "${KERNEL_DIR}/${src_dir}" ]]; then
169 echo "The kernel directory $KERNEL_DIR or $KERNEL_DIR/${src_dir} does not exist."
172 cd "${KERNEL_DIR}/${src_dir}"
184 copy_hdrs "${KERNEL_DIR}/${src_dir}/include/uapi" "${ANDROID_KERNEL_DIR}/uapi
    [all...]
  /external/chromium_org/components/cronet/tools/
jar_src.py 19 def JarSources(src_dir, jar_path):
22 # options.src_dir so the .java file paths in the jar are correct.
23 jar_cwd = src_dir
37 JarSources(options.src_dir, options.jar_path)
  /external/chromium_org/content/browser/gpu/
test_support_gpu.gypi 9 'src_dir': '../../..',
15 '<(src_dir)',
56 '<(src_dir)/build/linux/system.gyp:ssl',
61 '<(src_dir)/ui/views/views.gyp:views',
  /external/chromium_org/native_client_sdk/src/build_tools/
build_paths.py 14 SRC_DIR = os.path.dirname(SDK_DIR)
15 NACL_DIR = os.path.join(SRC_DIR, 'native_client')
16 OUT_DIR = os.path.join(SRC_DIR, 'out')
17 PPAPI_DIR = os.path.join(SRC_DIR, 'ppapi')
  /system/extras/ext4_utils/
mkuserimg.sh 8 mkuserimg.sh [-s] SRC_DIR OUTPUT_FILE EXT_VARIANT MOUNT_POINT SIZE [-j <journal_size>]
24 SRC_DIR=$1
25 if [ ! -d $SRC_DIR ]; then
26 echo "Can not find directory $SRC_DIR!"
92 MAKE_EXT4FS_CMD="make_ext4fs $ENABLE_SPARSE_IMAGE -T $TIMESTAMP $OPT -l $SIZE $JOURNAL_FLAGS -a $MOUNT_POINT $OUTPUT_FILE $SRC_DIR"
  /ndk/build/tools/
patch-sources.sh 37 SRC_DIR=$1
38 if [ -z "$SRC_DIR" ] ; then
43 if [ ! -d "$SRC_DIR" ] ; then
44 echo "ERROR: Invalid target source directory: $SRC_DIR"
78 log "Applying $PATCHNAME into $SRC_DIR/$PATCHDIR"
79 cd $SRC_DIR/$PATCHDIR && patch $REVERSE -p1 < $PATCHES_DIR/$PATCH
build-analyzer.sh 42 SRC_DIR="$1"
48 if [ -z "$SRC_DIR" ] ; then
53 SCAN_BUILD_SRC_DIR=$SRC_DIR/$TOOLCHAIN/clang/tools/scan-build
59 SCAN_VIEW_SRC_DIR=$SRC_DIR/$TOOLCHAIN/clang/tools/scan-view
65 LICENSE_FILE=$SRC_DIR/$TOOLCHAIN/clang/LICENSE.TXT
71 log "Using source directory: $SRC_DIR"
build-llvm.sh 72 SRC_DIR="$1"
78 if [ -z "$SRC_DIR" ] ; then
83 if [ ! -d "$SRC_DIR/$TOOLCHAIN/llvm" ] ; then
84 echo "ERROR: Source directory does not contain llvm sources: $SRC_DIR/$TOOLCHAIN/llvm"
88 if [ -e "$SRC_DIR/$TOOLCHAIN/llvm/tools/polly" -a ! -h "$SRC_DIR/$TOOLCHAIN/llvm/tools/polly" ] ; then
89 echo "ERROR: polly, if exist, needs to be a symbolic link: $SRC_DIR/$TOOLCHAIN/llvm/tools/polly"
93 GMP_SOURCE=$SRC_DIR/gmp/gmp-$GMP_VERSION.tar.bz2
98 SRC_DIR=`cd $SRC_DIR; pwd
    [all...]
build-host-yasm.sh 42 SRC_DIR="$1"
47 if [ -z "$SRC_DIR" ] ; then
52 if [ ! -d "$SRC_DIR/yasm" ] ; then
53 echo "ERROR: Source directory does not contain llvm sources: $SRC_DIR/yasm"
57 SRC_DIR=`cd $SRC_DIR; pwd`
58 log "Using source directory: $SRC_DIR"
90 mkdir -p "$BUILD_OUT/src" && copy_directory "$SRC_DIR/yasm" "$BUILD_OUT/src"
  /external/chromium_org/webkit/tools/layout_tests/
run_webkit_tests.py 13 src_dir = os.path.abspath(os.path.join(sys.path[0], '..', '..', '..'))
14 script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
  /external/chromium_org/tools/clang/scripts/
blink_gc_plugin_flags.sh 8 SRC_DIR=$(cd $(dirname $0)/../../.. && echo $PWD)
9 CLANG_LIB_PATH=$SRC_DIR/third_party/llvm-build/Release+Asserts/lib
17 $(grep 'set(LIBRARYNAME' "$SRC_DIR"/tools/clang/blink_gc_plugin/CMakeLists.txt \
  /external/chromium_org/remoting/host/installer/linux/
Makefile 8 SRC_DIR = ../../../..
9 BUILD_DIR = $(SRC_DIR)/out/Release
32 install "$(SRC_DIR)/remoting/host/linux/linux_me2me_host.py" \
34 install "$(SRC_DIR)/remoting/host/installer/linux/is-remoting-session" \
  /external/chromium_org/remoting/tools/
register_local_nm_hosts.sh 11 SRC_DIR="$(readlink -f "$(dirname "$0")/../..")"
36 "${SRC_DIR}/remoting/host/setup/${ME2ME_HOST_NAME}.json.jinja2" \
41 "${SRC_DIR}/remoting/host/it2me/${IT2ME_HOST_NAME}.json.jinja2" \
114 register_hosts_for_all_channels "${SRC_DIR}/out/${build_dir}"
  /external/chromium_org/tools/gyp/test/subdirectory/
gyptest-subdir2-deep.py 8 Verifies building a project rooted several layers under src_dir works.
  /external/chromium_org/tools/ipc_fuzzer/mutate/
cf_package_builder.py 37 src_dir = os.path.join(self.mutate_dir, os.pardir, os.pardir, os.pardir)
38 src_dir = os.path.abspath(src_dir)
39 out_dir = os.path.join(src_dir, self.args.out_dir)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shutil.py 154 src_dir = tempfile.mkdtemp()
157 write_data(os.path.join(src_dir, 'test.txt'), '123')
159 os.mkdir(os.path.join(src_dir, 'test_dir'))
160 write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456')
163 shutil.copytree(src_dir, dst_dir)
174 os.path.join(src_dir, 'test.txt'),
176 os.path.join(src_dir, 'test_dir', 'test.txt'),
181 for path in (src_dir,
203 src_dir = tempfile.mkdtemp()
206 write_data(join(src_dir, 'test.txt'), '123'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shutil.py 154 src_dir = tempfile.mkdtemp()
157 write_data(os.path.join(src_dir, 'test.txt'), '123')
159 os.mkdir(os.path.join(src_dir, 'test_dir'))
160 write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456')
163 shutil.copytree(src_dir, dst_dir)
174 os.path.join(src_dir, 'test.txt'),
176 os.path.join(src_dir, 'test_dir', 'test.txt'),
181 for path in (src_dir,
203 src_dir = tempfile.mkdtemp()
206 write_data(join(src_dir, 'test.txt'), '123'
    [all...]

Completed in 7580 milliseconds

1 2 3 4 5 6