HomeSort by relevance Sort by last modified time
    Searched refs:source_path (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/libvpx/libvpx/build/make/
version.sh 22 source_path=${1:-.}
27 if [ -d "${source_path}/.git" ]; then
29 export GIT_DIR="${source_path}/.git"
34 for p in "${source_path}" "${source_path}/.."; do
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
version.sh 22 source_path=${1:-.}
27 if [ -d ${source_path}/.git ]; then
29 export GIT_DIR=${source_path}/.git
34 for p in "${source_path}" "${source_path}/.."; do
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_py_compile.py 14 self.source_path = os.path.join(self.directory, '_test.py')
15 self.pyc_path = self.source_path + 'c'
18 # current working directory path and the 'self.source_path' might be
21 drive = os.path.splitdrive(self.source_path)[0]
25 with open(self.source_path, 'w') as file:
34 py_compile.compile(self.source_path, self.pyc_path)
40 py_compile.compile(os.path.basename(self.source_path),
46 py_compile.compile(os.path.relpath(self.source_path),
test_compileall.py 16 self.source_path = os.path.join(self.directory, '_test.py')
17 self.bc_path = self.source_path + ('c' if __debug__ else 'o')
18 with open(self.source_path, 'w') as file:
22 shutil.copyfile(self.source_path, self.source_path2)
30 mtime = int(os.stat(self.source_path).st_mtime)
39 py_compile.compile(self.source_path)
65 compileall.compile_file(self.source_path, force=False, quiet=True)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_py_compile.py 14 self.source_path = os.path.join(self.directory, '_test.py')
15 self.pyc_path = self.source_path + 'c'
18 # current working directory path and the 'self.source_path' might be
21 drive = os.path.splitdrive(self.source_path)[0]
25 with open(self.source_path, 'w') as file:
34 py_compile.compile(self.source_path, self.pyc_path)
40 py_compile.compile(os.path.basename(self.source_path),
46 py_compile.compile(os.path.relpath(self.source_path),
test_compileall.py 16 self.source_path = os.path.join(self.directory, '_test.py')
17 self.bc_path = self.source_path + ('c' if __debug__ else 'o')
18 with open(self.source_path, 'w') as file:
22 shutil.copyfile(self.source_path, self.source_path2)
30 mtime = int(os.stat(self.source_path).st_mtime)
39 py_compile.compile(self.source_path)
65 compileall.compile_file(self.source_path, force=False, quiet=True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 14 self.source_path = os.path.join(self.directory, '_test.py')
15 self.pyc_path = self.source_path + 'c'
18 # current working directory path and the 'self.source_path' might be
21 drive = os.path.splitdrive(self.source_path)[0]
25 with open(self.source_path, 'w') as file:
34 py_compile.compile(self.source_path, self.pyc_path)
40 py_compile.compile(os.path.basename(self.source_path),
46 py_compile.compile(os.path.relpath(self.source_path),
test_compileall.py 16 self.source_path = os.path.join(self.directory, '_test.py')
17 self.bc_path = self.source_path + ('c' if __debug__ else 'o')
18 with open(self.source_path, 'w') as file:
22 shutil.copyfile(self.source_path, self.source_path2)
30 mtime = int(os.stat(self.source_path).st_mtime)
39 py_compile.compile(self.source_path)
65 compileall.compile_file(self.source_path, force=False, quiet=True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 14 self.source_path = os.path.join(self.directory, '_test.py')
15 self.pyc_path = self.source_path + 'c'
18 # current working directory path and the 'self.source_path' might be
21 drive = os.path.splitdrive(self.source_path)[0]
25 with open(self.source_path, 'w') as file:
34 py_compile.compile(self.source_path, self.pyc_path)
40 py_compile.compile(os.path.basename(self.source_path),
46 py_compile.compile(os.path.relpath(self.source_path),
test_compileall.py 16 self.source_path = os.path.join(self.directory, '_test.py')
17 self.bc_path = self.source_path + ('c' if __debug__ else 'o')
18 with open(self.source_path, 'w') as file:
22 shutil.copyfile(self.source_path, self.source_path2)
30 mtime = int(os.stat(self.source_path).st_mtime)
39 py_compile.compile(self.source_path)
65 compileall.compile_file(self.source_path, force=False, quiet=True)
  /external/jsoncpp/devtools/
tarball.py 35 source_path = source
37 os.path.walk(source_path, visit, tar)
39 path_in_tar = archive_name(source_path)
40 tar.add(source_path, path_in_tar ) # filename, arcname
  /external/autotest/scheduler/
site_drone_manager.py 22 def copy_to_results_repository(self, process, source_path,
25 Copy results from the given process at source_path to destination_path
44 special_task = source_path.startswith(HOSTS_JOB_SUBDIR)
45 parse_log = source_path.endswith(PARSE_LOG)
49 source_path, destination_path)
drone_utility.py 392 def copy_file_or_directory(self, source_path, destination_path):
395 (and send_file). That is, if the source_path ends with a slash, the
399 if self._same_file(source_path, destination_path):
402 if source_path.endswith('/'):
404 assert os.path.isdir(source_path)
406 for filename in os.listdir(source_path):
408 os.path.join(source_path, filename),
410 elif os.path.isdir(source_path):
411 shutil.copytree(source_path, destination_path, symlinks=True)
412 elif os.path.islink(source_path)
    [all...]
drones.py 197 def send_file_to(self, drone, source_path, destination_path,
200 self.queue_call('copy_file_or_directory', source_path,
203 self.queue_call('send_file_to', drone.hostname, source_path,
227 def send_file_to(self, drone, source_path, destination_path,
230 self.queue_call('copy_file_or_directory', source_path,
233 drone.queue_call('get_file_from', self.hostname, source_path,
236 self.queue_call('send_file_to', drone.hostname, source_path,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
configure 15 #source_path="`dirname \"$0\"`"
16 source_path=${0%/*}
17 . "${source_path}/build/make/configure.sh"
161 [ -f ${source_path}/${t}.mk ] && enable_feature ${t}
169 if [ "`cd ${source_path} && pwd`" != "`pwd`" ]; then
170 # test to see if source_path already configured
171 if [ -f ${source_path}/vpx_config.h ]; then
204 [ -d ${source_path}/../include ] && enable_feature alt_tree_layout
206 [ -d ${source_path}/${d} ] && disable_feature alt_tree_layout;
211 [ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder
    [all...]
  /external/libyuv/files/
setup_links.py 202 def __init__(self, source_path, link_path):
205 self._source_path = source_path
222 source_path = os.path.abspath(self._source_path)
225 source_path = os.path.relpath(self._source_path,
228 os.symlink(source_path, os.path.abspath(self._link_path))
239 def symlink(source_path, link_path):
240 flag = 1 if os.path.isdir(source_path) else 0
242 unicode(link_path), unicode(source_path), flag):
245 'creating symlinks.' % source_path)
261 for source_path, link_path in FILES.iteritems()
    [all...]
  /external/webrtc/
setup_links.py 223 def __init__(self, source_path, link_path):
226 self._source_path = source_path
243 source_path = os.path.abspath(self._source_path)
246 source_path = os.path.relpath(self._source_path,
249 os.symlink(source_path, os.path.abspath(self._link_path))
260 def symlink(source_path, link_path):
261 flag = 1 if os.path.isdir(source_path) else 0
263 unicode(link_path), unicode(source_path), flag):
266 'creating symlinks.' % source_path)
282 for source_path, link_path in FILES.iteritems()
    [all...]
  /external/jsoncpp/scons-tools/
targz.py 47 source_path = str(source)
49 os.path.walk(source_path, visit, tar)
51 tar.add(source_path, archive_name(source_path) ) # filename, arcname
  /external/libcxx/test/libcxx/test/
format.py 35 source_path = testSuite.getSourcePath(path_in_suite)
36 for filename in os.listdir(source_path):
41 filepath = os.path.join(source_path, filename)
102 source_path = test.getSourcePath()
110 source_path, out=exec_path, object_file=object_path,
118 local_cwd = os.path.dirname(source_path)
143 source_path = test.getSourcePath()
144 with open(source_path, 'r') as f:
154 cmd, out, err, rc = self.cxx.compile(source_path, out=os.devnull,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
format.py 35 source_path = testSuite.getSourcePath(path_in_suite)
36 for filename in os.listdir(source_path):
41 filepath = os.path.join(source_path, filename)
102 source_path = test.getSourcePath()
110 source_path, out=exec_path, object_file=object_path,
118 local_cwd = os.path.dirname(source_path)
143 source_path = test.getSourcePath()
144 with open(source_path, 'r') as f:
154 cmd, out, err, rc = self.cxx.compile(source_path, out=os.devnull,
  /system/update_engine/payload_consumer/
install_plan.cc 92 partition.name, source_slot, &partition.source_path) && result;
94 partition.source_path.clear();
110 source_path == that.source_path &&
  /external/llvm/utils/lit/lit/formats/
base.py 16 source_path = testSuite.getSourcePath(path_in_suite)
17 for filename in os.listdir(source_path):
23 filepath = os.path.join(source_path, filename)
80 test.source_path = path
99 elif hasattr(test, 'source_path'):
100 cmd.append(test.source_path)
  /external/autotest/server/site_tests/power_DeferForFlashrom/
power_DeferForFlashrom.py 45 def create_temp_file(self, base_name, source_path, size):
50 @param source_path: String containing the path to the device from
54 logging.info('Creating %d-byte temp file from %s', size, source_path)
59 (source_path, temp_file, size))
  /external/chromium-trace/catapult/perf_insights/
perf_insights_project.py 48 for source_path in source_paths:
49 for dirpath, _, filenames in os.walk(source_path):
116 for source_path in self.source_paths:
117 candidate = os.path.abspath(os.path.join(source_path, href[1:]))
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
check.py 127 source_path = StringIO()
133 reporter = SilentReporter(source_path,
141 document = nodes.document(settings, reporter, source=source_path)
142 document.note_source(source_path, -1)

Completed in 838 milliseconds

1 2 3