Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:_config_vars
(Results
1 - 9
of
9
) sorted by relevance
/third_party/python/Lib/
H
A
D
_osx_support.py
136
def _remove_original_values(
_config_vars
):
139
for k in list(
_config_vars
):
141
del
_config_vars
[k]
143
def _save_modified_value(
_config_vars
, cv, newvalue):
146
oldvalue =
_config_vars
.get(cv, '')
147
if (oldvalue != newvalue) and (_INITPRE + cv not in
_config_vars
):
148
_config_vars
[_INITPRE + cv] = oldvalue
149
_config_vars
[cv] = newvalue
198
def _find_appropriate_compiler(
_config_vars
):
216
return
_config_vars
[all...]
/third_party/python/Lib/distutils/
H
A
D
sysconfig.py
48
# from sysconfig import _CONFIG_VARS as
_config_vars
51
_config_vars
= get_config_vars()
variable
66
_init_posix = partial(sysconfig_init_posix,
_config_vars
)
67
_init_nt = partial(_init_non_posix,
_config_vars
)
209
if not
_config_vars
.get('CUSTOMIZED_OSX_COMPILER'):
211
_osx_support.customize_compiler(
_config_vars
)
212
_config_vars
['CUSTOMIZED_OSX_COMPILER'] = 'True'
/third_party/python/Lib/distutils/tests/
H
A
D
test_unixccompiler.py
15
self._backup_config_vars = dict(sysconfig.
_config_vars
)
24
sysconfig.
_config_vars
.clear()
25
sysconfig.
_config_vars
.update(self._backup_config_vars)
H
A
D
test_util.py
32
self.
_config_vars
= copy(sysconfig.
_config_vars
)
57
sysconfig.
_config_vars
.clear()
58
sysconfig.
_config_vars
.update(self.
_config_vars
)
H
A
D
test_build_ext.py
39
self.old_config_vars = dict(sysconfig.
_config_vars
)
51
sysconfig.
_config_vars
.clear()
52
sysconfig.
_config_vars
.update(self.old_config_vars)
124
from distutils.sysconfig import
_config_vars
namespace
125
old_var =
_config_vars
.get('Py_ENABLE_SHARED')
126
_config_vars
['Py_ENABLE_SHARED'] = 1
132
del
_config_vars
['Py_ENABLE_SHARED']
134
_config_vars
['Py_ENABLE_SHARED'] = old_var
H
A
D
test_build_scripts.py
97
sysconfig.
_config_vars
['VERSION'] = 4
102
sysconfig.
_config_vars
['VERSION'] = old
H
A
D
test_install.py
34
self._backup_config_vars = dict(sysconfig.
_config_vars
)
38
sysconfig.
_config_vars
.clear()
39
sysconfig.
_config_vars
.update(self._backup_config_vars)
H
A
D
test_sysconfig.py
112
cm.enter_context(swap_item(sysconfig.
_config_vars
, key, value))
120
# Make sure that sysconfig.
_config_vars
is initialized
/third_party/python/Lib/test/
H
A
D
test_sysconfig.py
48
self.
_config_vars
= sysconfig._CONFIG_VARS, copy(sysconfig._CONFIG_VARS)
71
sysconfig._CONFIG_VARS = self.
_config_vars
[0]
73
sysconfig._CONFIG_VARS.update(self.
_config_vars
[1])
Completed in 5 milliseconds