Home
last modified time | relevance | path

Searched refs:_dir (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/plat-mac/
Dappletrawmain.py22 _dir = os.path.split(sys.executable)[0] # removes "python" variable
23 _dir = os.path.split(_dir)[0] # Removes "MacOS" variable
24 _dir = os.path.join(_dir, 'Resources') variable
27 _dir = os.path.split(sys.argv[0])[0] variable
33 sys.path.insert(0, _dir)
41 __file__ = os.path.join(_dir, '__main__.py')
47 del argvemulator, os, sys, _dir
50 __file__ = os.path.join(_dir, '__main__.pyc')
63 del argvemulator, os, sys, marshal, _dir, _fp
Dpimp.py126 self._dir = dir
141 exitstatus = _cmd(output, self._dir,
193 self._dir = dir
212 if _cmd(output, self._dir, cmd):
227 if oldprefix[:len(self._dir)] == self._dir:
228 oldprefix2 = oldprefix[len(self._dir):]
255 tf.extract(member, self._dir)
/external/eigen/bench/btl/cmake/
DMacroOptionalAddSubdirectory.cmake19 MACRO (MACRO_OPTIONAL_ADD_SUBDIRECTORY _dir )
20 GET_FILENAME_COMPONENT(_fullPath ${_dir} ABSOLUTE)
23 OPTION(BUILD_${_dir} "Build directory ${_dir}" ${ARGV1})
25 OPTION(BUILD_${_dir} "Build directory ${_dir}" TRUE)
27 IF(BUILD_${_dir})
28 ADD_SUBDIRECTORY(${_dir})
29 ENDIF(BUILD_${_dir})
/external/python/cpython2/Lib/test/
Dtest_old_mailbox.py29 self._dir = test_support.TESTFN
30 os.mkdir(self._dir)
31 os.mkdir(os.path.join(self._dir, "cur"))
32 os.mkdir(os.path.join(self._dir, "tmp"))
33 os.mkdir(os.path.join(self._dir, "new"))
39 os.rmdir(os.path.join(self._dir, "cur"))
40 os.rmdir(os.path.join(self._dir, "tmp"))
41 os.rmdir(os.path.join(self._dir, "new"))
42 os.rmdir(self._dir)
49 tmpname = os.path.join(self._dir, "tmp", filename)
[all …]
Dtest_mailbox.py1929 self._dir = test_support.TESTFN
1930 if os.path.isdir(self._dir):
1931 test_support.rmtree(self._dir)
1932 if os.path.isfile(self._dir):
1933 test_support.unlink(self._dir)
1934 os.mkdir(self._dir)
1935 os.mkdir(os.path.join(self._dir, "cur"))
1936 os.mkdir(os.path.join(self._dir, "tmp"))
1937 os.mkdir(os.path.join(self._dir, "new"))
1943 test_support.rmdir(os.path.join(self._dir, "cur"))
[all …]
/external/skia/infra/bots/assets/
Dasset_utils.py244 self._dir = os.path.join(ASSETS_DIR, self._name)
249 return os.path.join(self._dir, VERSION_FILENAME)
302 if os.path.isdir(asset._dir):
305 print 'Creating asset in %s' % asset._dir
306 os.mkdir(asset._dir)
309 dst = os.path.join(asset._dir, script)
327 if not os.path.isdir(self._dir):
335 subprocess.check_call([utils.GIT, 'rm', '-rf', self._dir])
336 if os.path.isdir(self._dir):
337 shutil.rmtree(self._dir)
/external/ipsec-tools/src/racoon/
Dpolicy.h112 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, _priority, _created, idx) \ argument
115 (idx)->dir = (_dir); \
125 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, _created, idx) \ argument
128 (idx)->dir = (_dir); \
/external/skia/infra/bots/
Dutils.py63 self._dir = d
68 os.chdir(self._dir)
/external/python/cpython2/Demo/turtle/
DturtleDemo.py171 _dir, entries = entry[0], entry[1:]
176 command = loadexample(os.path.join(_dir,e)))
178 label=_dir[6:], menu = CmdBtn.menu.choices, font=menufont)
/external/linux-kselftest/tools/testing/selftests/x86/
Dmpx-mini-test.c639 unsigned long _dir; in process_specific_init() local
643 _dir = (unsigned long)dir; in process_specific_init()
644 _dir += 0xfffUL; in process_specific_init()
645 _dir &= ~0xfffUL; in process_specific_init()
646 dir = (void *)_dir; in process_specific_init()
/external/vboot_reference/tests/futility/
Dtest_sign_firmware.sh45 loemdir=${TMP}.${base}_dir
/external/curl/
DCMakeLists.txt541 foreach(_dir ${GSS_LINK_DIRECTORIES})
542 set(_LINKER_FLAGS_STR "${_LINKER_FLAGS_STR} -L\"${_dir}\"")