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:PYTHON
(Results
1 - 25
of
36
) sorted by relevance
1
2
/third_party/PyYAML/
H
A
D
Makefile
4
PYTHON
=/usr/bin/python3
macro
9
${
PYTHON
} setup.py build ${PARAMETERS}
12
${
PYTHON
} setup.py --with-libyaml build ${PARAMETERS}
15
${
PYTHON
} setup.py build -f ${PARAMETERS}
18
${
PYTHON
} setup.py --with-libyaml build -f ${PARAMETERS}
21
${
PYTHON
} setup.py install ${PARAMETERS}
24
${
PYTHON
} setup.py --with-libyaml install ${PARAMETERS}
27
${
PYTHON
} tests/lib/test_build.py ${TEST}
30
${
PYTHON
} tests/lib/test_build_ext.py ${TEST}
33
${
PYTHON
} setu
[all...]
/third_party/protobuf/kokoro/release/python/windows/
H
A
D
build_single_artifact.bat
3
if %
PYTHON
%==C:\python35_32bit set generator=Visual Studio 14
4
if %
PYTHON
%==C:\python35_32bit set vcplatform=Win32
6
if %
PYTHON
%==C:\python35 set generator=Visual Studio 14 Win64
7
if %
PYTHON
%==C:\python35 set vcplatform=x64
9
if %
PYTHON
%==C:\python36_32bit set generator=Visual Studio 14
10
if %
PYTHON
%==C:\python36_32bit set vcplatform=Win32
12
if %
PYTHON
%==C:\python36 set generator=Visual Studio 14 Win64
13
if %
PYTHON
%==C:\python36 set vcplatform=x64
15
if %
PYTHON
%==C:\python37_32bit set generator=Visual Studio 14
16
if %
PYTHON
[all...]
H
A
D
build_artifacts.bat
35
SET
PYTHON
=C:\python35_32bit
40
SET
PYTHON
=C:\python35
45
SET
PYTHON
=C:\python36_32bit
50
SET
PYTHON
=C:\python36
55
SET
PYTHON
=C:\python37_32bit
60
SET
PYTHON
=C:\python37
65
SET
PYTHON
=C:\python38_32bit
70
SET
PYTHON
=C:\python38
/third_party/python/Tools/peg_generator/
H
A
D
Makefile
3
PYTHON
?= ../../python
macro
6
PYTHON
?= ../../python.exe
macro
21
$(
PYTHON
) -m zipfile -e data/xxl.zip data
26
$(
PYTHON
) -m pegen -q c $(GRAMMAR) $(TOKENS) -o peg_extension/parse.c --compile-extension
35
$(
PYTHON
) -c "from peg_extension import parse; import ast; t = parse.parse_file('$(TESTFILE)', mode=1); print(ast.dump(t))"
38
$(
PYTHON
) -m pegen -q python pegen/metagrammar.gram -o pegen/grammar_parser.py
47
$(
PYTHON
) -m venv $(VENVDIR)
55
$(
PYTHON
) -c "from peg_extension import parse; t = parse.parse_file('$(TESTFILE)'); exec(t)"
58
$(
PYTHON
) -c "from peg_extension import parse; t = parse.parse_file('$(TESTFILE)', mode=2)"
61
$(
PYTHON
)
[all...]
/third_party/python/PCbuild/
H
A
D
blurb.bat
8
call "%~dp0find_python.bat" %
PYTHON
%
9
if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as
PYTHON
variable & exit /b 3)
11
if "%1" EQU "--update" (%
PYTHON
% -m pip install -U blurb && shift)
12
if "%1" EQU "-U" (%
PYTHON
% -m pip install -U blurb && shift)
14
%
PYTHON
% -m blurb %1 %2 %3 %4 %5 %6 %7 %8 %9
22
%
PYTHON
% -c "import blurb"
25
%
PYTHON
% -m pip install blurb
27
%
PYTHON
% -m blurb %*
H
A
D
find_python.bat
23
@if exist "%*" (set
PYTHON
="%*") & (set _Py_Python_Source=from environment) & goto :found
variable
27
@if exist "%~1" (set
PYTHON
="%~1") & (set _Py_Python_Source=from environment) & goto :found
variable
30
@set
PYTHON
=
variable
33
@if NOT "%VIRTUAL_ENV%"=="" (set
PYTHON
="%VIRTUAL_ENV%\Scripts\python.exe") & (set _Py_Python_Source=found in virtual env) & goto :found
variable
39
@if exist "%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe" ("%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe" -Ec "import sys; assert sys.version_info[:2] >= (3, 8)" >nul 2>nul) && (set
PYTHON
="%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe") && (set _Py_Python_Source=found in externals directory) && goto :found || rmdir /Q /S "%_Py_EXTERNALS_DIR%\pythonx86"
variable
42
@if NOT "%HOST_PYTHON%"=="" @%HOST_PYTHON% -Ec "import sys; assert sys.version_info[:2] >= (3, 9)" >nul 2>nul && (set
PYTHON
="%HOST_PYTHON%") && (set _Py_Python_Source=found as HOST_PYTHON) && goto :found
variable
45
@for %%p in (3.10 3.9) do @py -%%p -EV >nul 2>&1 && (set
PYTHON
=py -%%p) && (set _Py_Python_Source=found %%p with py.exe) && goto :found
variable
68
@if not errorlevel 1 (set
PYTHON
="%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe") & (set _Py_Python_Source=found on nuget.org) & goto :found
variable
81
@if "%_Py_Quiet%"=="1" (@echo %
PYTHON
%) else @echo Using %
PYTHON
[all...]
H
A
D
get_externals.bat
21
if "%~1"=="--python" (set
PYTHON
=%2) & shift & shift & goto CheckOpts
variable
45
call "%PCBUILD%\find_python.bat" "%
PYTHON
%"
47
if NOT DEFINED
PYTHON
(
67
) else if NOT DEFINED
PYTHON
(
72
%
PYTHON
% -E "%PCBUILD%\get_external.py" -O %ORG% -e "%EXTERNALS_DIR%" %%e
87
) else if NOT DEFINED
PYTHON
(
92
%
PYTHON
% -E "%PCBUILD%\get_external.py" -b -O %ORG% -e "%EXTERNALS_DIR%" %%b
/third_party/skia/third_party/externals/brotli/python/
H
A
D
Makefile
23
PYTHON
?= python
macro
26
EXT_SUFFIX=$(shell $(
PYTHON
) -c 'import sysconfig; print(sysconfig.get_config_var("EXT_SUFFIX"))')
36
@cd .. && $(
PYTHON
) setup.py build_ext --inplace
39
@cd .. && $(
PYTHON
) setup.py develop
42
@cd .. && $(
PYTHON
) setup.py install
46
@$(
PYTHON
) -m unittest discover -v -p '*_test.py'
49
@cd .. && $(
PYTHON
) setup.py clean
/third_party/python/Doc/
H
A
D
make.bat
8
call ..\PCbuild\find_python.bat %
PYTHON
%
10
if not defined
PYTHON
set
PYTHON
=py
variable
13
%
PYTHON
% -c "import sphinx" > nul 2> nul
15
echo Installing sphinx with %
PYTHON
%
16
%
PYTHON
% -m pip install -r requirements.txt
19
set SPHINXBUILD=%
PYTHON
% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"
22
%
PYTHON
% -c "import python_docs_theme" > nul 2> nul
24
echo Installing python-docs-theme with %
PYTHON
%
25
%
PYTHON
[all...]
H
A
D
Makefile
7
PYTHON
= python3
macro
15
DISTVERSION = $(shell $(
PYTHON
) tools/extensions/patchlevel.py)
144
$(
PYTHON
) -c "import os, webbrowser; webbrowser.open('file://' + os.path.realpath('build/html/index.html'))"
157
$(
PYTHON
) -m venv $(VENVDIR); \
/third_party/python/Tools/unicode/
H
A
D
Makefile
9
PYTHON
= python
macro
31
$(
PYTHON
) gencodec.py MAPPINGS/VENDORS/MISC/ build/
39
$(
PYTHON
) gencodec.py python-mappings/ build/
42
$(
PYTHON
) gencodec.py MAPPINGS/VENDORS/MICSFT/WINDOWS/ build/
47
$(
PYTHON
) gencodec.py MAPPINGS/ISO8859/ build/ iso
51
$(
PYTHON
) gencodec.py MAPPINGS/VENDORS/APPLE/ build/ mac_
72
$(
PYTHON
) gencodec.py MAPPINGS/VENDORS/MICSFT/EBCDIC/ build/
76
$(
PYTHON
) gencjkcodecs.py build/
/third_party/openGLES/extensions/
H
A
D
Makefile
9
PYTHON
= python3
macro
16
$(
PYTHON
) makeindex.py arbnumber >$@
19
$(
PYTHON
) makeindex.py esnumber >$@
22
$(
PYTHON
) makeindex.py number >$@
25
$(
PYTHON
) makeindex.py scnumber >$@
/third_party/mbedtls/tests/scripts/
H
A
D
check-python-files.sh
14
PYTHON
=python3
16
PYTHON
=python
20
$
PYTHON
- "$2" <<EOF
58
$
PYTHON
-m pylint scripts/mbedtls_dev/*.py scripts/*.py tests/scripts/*.py || {
65
$
PYTHON
-m mypy scripts/*.py tests/scripts/*.py ||
/third_party/skia/third_party/externals/opengl-registry/extensions/
H
A
D
Makefile
20
PYTHON
= python3
macro
26
$(
PYTHON
) makeindex.py arbnumber >$@
29
$(
PYTHON
) makeindex.py esnumber >$@
32
$(
PYTHON
) makeindex.py number >$@
/third_party/vk-gl-cts/external/vulkan-docs/src/
H
A
D
Makefile
89
PYTHON
?= python3
macro
418
$(
PYTHON
) $(REFLOW) $(REFLOWOPTS) $(SPECSRC) $(SPECFILES) $(STYLESRC) $(STYLEFILES)
464
$(
PYTHON
) $(SCRIPTS)/reflow.py -nowrite -noflow -check FAIL -checkVUID FAIL $(SPECFILES)
480
$(
PYTHON
) $(SCRIPTS)/check_spec_links.py -Werror --ignore_count 0
485
$(
PYTHON
) $(SCRIPTS)/xml_consistency.py
562
$(
PYTHON
) $(GENREF) -genpath $(GENERATED) -basedir $(REFPATH) \
644
$(
PYTHON
) $(MAKEMANALIASES) -genpath $(GENERATED) -refdir $(MANHTMLDIR)
675
$(QUIET)$(
PYTHON
) $(GENVK) $(GENVKOPTS) -o $(GENERATED) apimap.cjs
679
$(QUIET)$(
PYTHON
) $(GENVK) $(GENVKOPTS) -o $(GENERATED) apimap.py
683
$(QUIET)$(
PYTHON
)
[all...]
/third_party/node/
H
A
D
Makefile
4
PYTHON
?= python3
macro
55
$(
PYTHON
) tools/v8-json-to-junit.py < $(1) > $(1:.json=.xml)
76
EXEEXT := $(shell $(
PYTHON
) -c \
176
$(
PYTHON
) tools/gyp_node.py -f make
190
$(
PYTHON
) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
194
$(
PYTHON
) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
252
if [ ! -d gcovr ]; then $(
PYTHON
) -m pip install -t gcovr gcovr==4.2; fi
268
-(cd out && PYTHONPATH=../gcovr $(
PYTHON
) -m gcovr \
308
$(
PYTHON
) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) \
316
@$(
PYTHON
)
[all...]
/third_party/mbedtls/tests/
H
A
D
Makefile
21
$(
PYTHON
) scripts/generate_bignum_tests.py --list || \
25
$(error "$(
PYTHON
) scripts/generate_bignum_tests.py --list" failed)
28
$(
PYTHON
) scripts/generate_ecp_tests.py --list || \
32
$(error "$(
PYTHON
) scripts/generate_ecp_tests.py --list" failed)
35
$(
PYTHON
) scripts/generate_psa_tests.py --list || \
39
$(error "$(
PYTHON
) scripts/generate_psa_tests.py --list" failed)
61
$(
PYTHON
) scripts/generate_bignum_tests.py
71
$(
PYTHON
) scripts/generate_ecp_tests.py
93
$(
PYTHON
) scripts/generate_psa_tests.py
156
$(
PYTHON
) script
[all...]
/third_party/python/Tools/msi/
H
A
D
get_externals.bat
15
if "%~1"=="--python" (set
PYTHON
=%2) & shift & shift & goto CheckOpts
variable
35
call "%PCBUILD%\find_python.bat" "%
PYTHON
%"
46
%
PYTHON
% "%PCBUILD%get_external.py" -e "%EXTERNALS_DIR%" -O %ORG% %%e
66
%
PYTHON
% "%PCBUILD%get_external.py" -e "%EXTERNALS_DIR%" -b -O %ORG% %%b
/third_party/python/Tools/freeze/test/
H
A
D
Makefile
2
# set
PYTHON
to path of Python interpreter to test
3
PYTHON
=python
macro
8
$(
PYTHON
) ../freeze.py -o $(OUTDIR) ok.py
/third_party/vk-gl-cts/external/vulkan-docs/src/xml/
H
A
D
Makefile
19
PYTHON
?= python3
macro
134
$(
PYTHON
) $(GENSCRIPT) $(MISRACOPTS) $(GENOPTS) -registry $(VKXML) \
139
$(
PYTHON
) $(GENSCRIPT) $(MISRACPPOPTS) $(GENOPTS) -registry $(VKXML) \
166
$(QUIET)$(
PYTHON
) $(GENSCRIPT) $(GENOPTS) -registry $(CODECXML) -o $(VIDEO_INCLUDE) $(notdir $@)
171
$(
PYTHON
) $(XML_CONSISTENCY) $(VKXML)
213
$(
PYTHON
) $(GENSCRIPT) $(GENOPTS) -registry $(VKXML) \
218
$(
PYTHON
) $(GENSCRIPT) $(GENOPTS) -registry $(VKXML) --iscts \
/third_party/selinux/libselinux/src/
H
A
D
Makefile
4
PYTHON
?= python3
macro
5
PYPREFIX ?= $(shell $(
PYTHON
) -c 'import sys;print("python-%d.%d" % sys.version_info[:2])')
17
PYTHONLIBDIR ?= $(shell $(
PYTHON
) -c "import sysconfig; print(sysconfig.get_path('platlib', vars={'platbase': '$(PREFIX)', 'base': '$(PREFIX)'}))")
18
PYCEXT ?= $(shell $(
PYTHON
) -c 'import importlib.machinery;print(importlib.machinery.EXTENSION_SUFFIXES[0])')
147
CFLAGS="$(CFLAGS) $(SWIG_CFLAGS)" $(
PYTHON
) setup.py build_ext
190
$(
PYTHON
) -m pip install --prefix=$(PREFIX) `test -n "$(DESTDIR)" && echo --root $(DESTDIR) --ignore-installed --no-deps` $(PYTHON_SETUP_ARGS) .
203
$(
PYTHON
) setup.py clean
/third_party/skia/third_party/externals/freetype/builds/
H
A
D
freetype.mk
289
PYTHON
?= python
macro
293
$(
PYTHON
) -m docwriter \
313
ENV_PYTHON := $(VENV_DIR)$(SEP)$(BIN)$(SEP)$(
PYTHON
)
317
virtualenv --python=$(
PYTHON
) $(VENV_DIR)
/third_party/EGL/api/
H
A
D
Makefile
8
PYTHON
= python3
macro
12
GENHEADERS = $(
PYTHON
) -B genheaders.py $(GENOPTS) -registry $(REGISTRY)
/third_party/skia/third_party/externals/egl-registry/api/
H
A
D
Makefile
19
PYTHON
= python
macro
23
GENHEADERS = $(
PYTHON
) -B genheaders.py $(GENOPTS) -registry $(REGISTRY)
/third_party/protobuf/python/
H
A
D
release.sh
11
local
PYTHON
=$2
17
virtualenv -p `which $
PYTHON
` --no-setuptools test-venv
Completed in 8 milliseconds
1
2