HomeSort by relevance Sort by last modified time
    Searched full:_config_vars (Results 1 - 16 of 16) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_osx_support.py 113 def _remove_original_values(_config_vars):
116 for k in list(_config_vars):
118 del _config_vars[k]
120 def _save_modified_value(_config_vars, cv, newvalue):
123 oldvalue = _config_vars.get(cv, '')
124 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):
125 _config_vars[_INITPRE + cv] = oldvalue
126 _config_vars[cv] = newvalue
144 def _find_appropriate_compiler(_config_vars):
162 return _config_vars
    [all...]
sysconfig.py 94 _CONFIG_VARS = None
456 global _CONFIG_VARS
457 if _CONFIG_VARS is None:
458 _CONFIG_VARS = {}
462 _CONFIG_VARS['prefix'] = _PREFIX
463 _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX
464 _CONFIG_VARS['py_version'] = _PY_VERSION
465 _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT
466 _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2]
467 _CONFIG_VARS['base'] = _PREFI
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_osx_support.py 113 def _remove_original_values(_config_vars):
116 for k in list(_config_vars):
118 del _config_vars[k]
120 def _save_modified_value(_config_vars, cv, newvalue):
123 oldvalue = _config_vars.get(cv, '')
124 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):
125 _config_vars[_INITPRE + cv] = oldvalue
126 _config_vars[cv] = newvalue
144 def _find_appropriate_compiler(_config_vars):
162 return _config_vars
    [all...]
sysconfig.py 94 _CONFIG_VARS = None
456 global _CONFIG_VARS
457 if _CONFIG_VARS is None:
458 _CONFIG_VARS = {}
462 _CONFIG_VARS['prefix'] = _PREFIX
463 _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX
464 _CONFIG_VARS['py_version'] = _PY_VERSION
465 _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT
466 _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2]
467 _CONFIG_VARS['base'] = _PREFI
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
sysconfig.py 179 global _config_vars
180 if not _config_vars.get('CUSTOMIZED_OSX_COMPILER', ''):
182 _osx_support.customize_compiler(_config_vars)
183 _config_vars['CUSTOMIZED_OSX_COMPILER'] = 'True'
399 _config_vars = None variable
405 global _config_vars
406 _config_vars = {}
407 _config_vars.update(build_time_vars)
430 global _config_vars
431 _config_vars =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
sysconfig.py 179 global _config_vars
180 if not _config_vars.get('CUSTOMIZED_OSX_COMPILER', ''):
182 _osx_support.customize_compiler(_config_vars)
183 _config_vars['CUSTOMIZED_OSX_COMPILER'] = 'True'
399 _config_vars = None variable
405 global _config_vars
406 _config_vars = {}
407 _config_vars.update(build_time_vars)
430 global _config_vars
431 _config_vars =
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_build_ext.py 15 get_config_var("LDSHARED") # make sure _config_vars is initialized
16 from distutils.sysconfig import _config_vars namespace
131 tmp = _config_vars.copy()
134 _config_vars['LDSHARED'] = "gcc -Wl,-x -dynamiclib -undefined dynamic_lookup"
135 _config_vars['CCSHARED'] = " -dynamiclib"
136 _config_vars['SO'] = ".dylib"
139 _config_vars.clear()
140 _config_vars.update(tmp)
test_build_scripts.py 97 sysconfig._CONFIG_VARS['VERSION'] = 4
102 sysconfig._CONFIG_VARS['VERSION'] = old
test_build_ext.py 97 from distutils.sysconfig import _config_vars namespace
98 old_var = _config_vars.get('Py_ENABLE_SHARED')
99 _config_vars['Py_ENABLE_SHARED'] = 1
105 del _config_vars['Py_ENABLE_SHARED']
107 _config_vars['Py_ENABLE_SHARED'] = old_var