Searched refs:os (Results 251 - 275 of 1045) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cfpreferences.py2 import os
41 prefsFn = os.path.expanduser('~/Library/Preferences/PyObjCTest.plist')
42 if os.path.exists(prefsFn):
43 os.unlink(prefsFn)
55 listing = os.listdir(os.path.dirname(prefsFn))
56 self.assertTrue([fn for fn in listing if fn.startswith(os.path.basename(prefsFn))])
74 if os.path.exists(prefsFn):
75 os.unlink(prefsFn)
79 listing = os
[all...]
/macosx-10.10/python-89/fix/
H A Ddummy.py3 import sys, os
17 dir, base = os.path.split(sys.argv[0])
23 g = glob.glob(os.path.join(dir, pat))
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Dselfref.py15 import os
16 try: os.remove("_selfref.mk")
48 os.remove("_selfref.mk")
/macosx-10.10/xnu-2782.1.97/tools/lldbmacros/core/
H A Dxnu_lldb_init.py1 import os
19 if "DEBUG_XNU_LLDBMACROS" in os.environ and len(os.environ['DEBUG_XNU_LLDBMACROS']) > 0:
21 prev_os_plugin = "".join(GetSettingsValues(debugger, 'target.process.python-os-plugin-path'))
27 osplugin_cmd = "settings set target.process.python-os-plugin-path \"%s\"" % core_os_plugin
/macosx-10.10/bash-94.1.2/bash-3.2/lib/intl/
H A Dconfig.charset117 os=`echo "$host" | sed -e 's/^[^-]*-[^-]*-\(.*\)$/\1/'`
119 echo "# suitable for operating system '${os}'."
123 case "$os" in
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/Scripts/
H A DwmEnable.py8 import os
33 bPath = os.path.split(os.path.split(os.path.split(sys.executable)[0])[0])[0]
71 if WMEnable(os.path.basename(os.path.splitext(sys.argv[0])[0])):
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/Scripts/
H A DwmEnable.py8 import os
33 bPath = os.path.split(os.path.split(os.path.split(sys.executable)[0])[0])[0]
71 if WMEnable(os.path.basename(os.path.splitext(sys.argv[0])[0])):
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/Scripts/
H A DwmEnable.py8 import os
33 bPath = os.path.split(os.path.split(os.path.split(sys.executable)[0])[0])[0]
71 if WMEnable(os.path.basename(os.path.splitext(sys.argv[0])[0])):
/macosx-10.10/CommonCrypto-60061/libcn/
H A Dcn_globals.h38 #if __has_include(<os/alloc_once_private.h>)
39 #include <os/alloc_once_private.h>
/macosx-10.10/ICU-531.30/icuSources/tools/
H A Dicu-svnprops-check.py25 import os
26 import os.path
140 output_file = os.popen(cmd);
213 if os.path.isdir(f):
216 if not os.path.isfile(f):
232 os.system("svn propset %s '%s' %s" % (propname, propval, f))
234 if os.system("grep -q -v \r " + f):
237 os.system("sed -i s/\r// " + f);
/macosx-10.10/libdispatch-442.1.4/
H A DMakefile.am10 os \
/macosx-10.10/llvmCore-3425.0.34/include/llvm/TableGen/
H A DStringMatcher.h41 const std::vector<StringPair> &matches, raw_ostream &os)
42 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
40 StringMatcher(StringRef strVariableName, const std::vector<StringPair> &matches, raw_ostream &os) argument
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-CFNetwork/
H A Dsetup.py25 import os
26 if os.uname()[2] >= '9.':
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-CoreText/
H A Dsetup.py21 import os
22 if os.uname()[2] > '9.':
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-FSEvents/
H A Dsetup.py21 import os
22 if os.uname()[2] >= '9.':
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-SystemConfiguration/
H A Dsetup.py19 import os
20 if os.uname()[2] >= '9.':
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-CFNetwork-2.5.1/Lib/CFNetwork/
H A D__init__.py10 import os
22 if not os.path.exists(frameworkPath):
/macosx-10.10/llvmCore-3425.0.34/utils/lit/lit/
H A DTestingConfig.py1 import os
14 'LIBRARY_PATH' : os.environ.get('LIBRARY_PATH',''),
15 'LD_LIBRARY_PATH' : os.environ.get('LD_LIBRARY_PATH',''),
16 'PATH' : os.pathsep.join(litConfig.path +
17 [os.environ.get('PATH','')]),
18 'SYSTEMROOT' : os.environ.get('SYSTEMROOT',''),
24 'INCLUDE' : os.environ.get('INCLUDE',''),
25 'PATHEXT' : os.environ.get('PATHEXT',''),
27 'TEMP' : os.environ.get('TEMP',''),
28 'TMP' : os
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/gke/
H A Dgkhandmake8 import os
32 path=os.path.abspath(sys.argv[1])
41 if os.path.exists(outputfile):
48 sigpath = "/tmp/%s.dsig" % os.path.basename(path.strip('/'))
/macosx-10.10/WebCore-7600.1.25/Scripts/
H A Dmake-js-file-arrays.py25 import os
60 print >> sourceFile, '#include "{0:s}"'.format(os.path.basename(headerPath))
76 variableName = os.path.splitext(os.path.basename(inputFileName))[0]
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A Dcreate-http-header-name-table30 import os
33 program_name = os.path.basename(__file__)
241 gperf = os.getenv('GPERF') or 'gperf'
243 if os.system('%s --key-positions="*" -D -n -s 2 HTTPHeaderNames.gperf --output-file=HTTPHeaderNames.cpp' % gperf):
/macosx-10.10/bind9-45.101/bind9/bin/confgen/win32/
H A Dos.c17 /* $Id: os.c,v 1.3 2009/06/11 23:47:55 tbox Exp $ */
21 #include <confgen/os.h>
/macosx-10.10/bind9-45.101/bind9/lib/isc/win32/
H A Dos.c18 /* $Id: os.c,v 1.8 2007/06/19 23:47:19 tbox Exp $ */
22 #include <isc/os.h>
/macosx-10.10/llvmCore-3425.0.34/tools/opt/
H A DGraphPrinters.cpp34 WriteGraph(F.os(), GT);
35 F.os().close();
36 if (!F.os().has_error()) {
43 F.os().clear_error();
/macosx-10.10/ntp-92/lib/isc/win32/
H A Dos.c18 /* $Id: os.c,v 1.8 2007/06/19 23:47:19 tbox Exp $ */
22 #include <isc/os.h>

Completed in 177 milliseconds

<<11121314151617181920>>