/aosp_15_r20/external/trusty/arm-trusted-firmware/ |
D | poetry.lock | 253 MarkupSafe = ">=2.0" 283 name = "markupsafe" 289 …{file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4… 290 …{file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703… 291 …{file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "s… 292 …{file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha… 293 …{file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manyl… 294 …{file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e7990604… 295 …{file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df294… 296 …{file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed… [all …]
|
/aosp_15_r20/external/python/markupsafe/ |
D | README.rst | 1 MarkupSafe title 4 MarkupSafe implements a text object that escapes characters so it is 18 pip install -U MarkupSafe 28 >>> from markupsafe import Markup, escape 51 The Pallets organization develops and supports MarkupSafe and other 62 * Website: https://palletsprojects.com/p/markupsafe/ 63 * Documentation: https://markupsafe.palletsprojects.com/ 64 * Releases: https://pypi.org/project/MarkupSafe/ 65 * Code: https://github.com/pallets/markupsafe 66 * Issue tracker: https://github.com/pallets/markupsafe/issues [all …]
|
D | setup.cfg | 2 name = MarkupSafe 3 version = attr: markupsafe.__version__ 4 url = https://palletsprojects.com/p/markupsafe/ 6 Documentation = https://markupsafe.palletsprojects.com/ 7 Code = https://github.com/pallets/markupsafe 8 Issue tracker = https://github.com/pallets/markupsafe/issues 45 markupsafe
|
D | setup.py | 12 ext_modules = [Extension("markupsafe._speedups", ["src/markupsafe/_speedups.c"])] 42 name="MarkupSafe",
|
/aosp_15_r20/external/python/markupsafe/docs/ |
D | conf.py | 6 project = "MarkupSafe" 9 release, version = get_version("MarkupSafe") 22 issues_github_path = "pallets/markupsafe" 31 ProjectLink("Website", "https://palletsprojects.com/p/markupsafe/"), 32 ProjectLink("PyPI releases", "https://pypi.org/project/MarkupSafe/"), 33 ProjectLink("Source Code", "https://github.com/pallets/markupsafe/"), 34 ProjectLink("Issue Tracker", "https://github.com/pallets/markupsafe/issues/"), 42 html_title = f"MarkupSafe Documentation ({version})" 48 (master_doc, f"MarkupSafe-{version}.tex", html_title, author, "manual")
|
D | index.rst | 1 .. currentmodule:: markupsafe 3 MarkupSafe title 6 MarkupSafe escapes characters so text is safe to use in HTML and XML. 15 >>> from markupsafe import escape 32 pip install -U MarkupSafe
|
/aosp_15_r20/external/libchrome/third_party/markupsafe/ |
H A D | README.chromium | 1 Name: MarkupSafe Python Safe String Class 2 Short Name: markupsafe 3 URL: https://github.com/mitsuhiko/markupsafe 13 https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.18.tar.gz 24 Retrieve or update by executing markupsafe/get_markupsafe.sh from third_party.
|
H A D | get_markupsafe.sh | 2 # Download and extract MarkupSafe 4 # https://github.com/mitsuhiko/markupsafe 6 # https://pypi.python.org/pypi/MarkupSafe 7 PACKAGE='MarkupSafe' 9 PACKAGE_DIR='markupsafe' 30 # FILENAME=MarkupSafe-0.18.tar.gz
|
H A D | __init__.py | 3 markupsafe 12 from markupsafe._compat import text_type, string_types, int_types, \ 130 from markupsafe._constants import HTML_ENTITIES 228 from markupsafe._speedups import escape, escape_silent, soft_unicode 230 from markupsafe._native import escape, escape_silent, soft_unicode
|
H A D | _speedups.c | 2 * markupsafe._speedups 46 module = PyImport_ImportModule("markupsafe"); in init_constants() 213 Py_InitModule3("markupsafe._speedups", module_methods, ""); in init_speedups() 220 "markupsafe._speedups",
|
H A D | _native.py | 3 markupsafe._native 11 from markupsafe import Markup 12 from markupsafe._compat import text_type
|
/aosp_15_r20/external/skia/bazel/external/dawn/ |
H A D | BUILD.bazel | 24 # jinja2 has a dep on MarkupSafe. Declaring MarkupSafe here is not necessary, but it makes 26 requirement("MarkupSafe"), 174 # jinja2 has a dep on MarkupSafe. Declaring MarkupSafe here is not necessary, but it makes 176 requirement("MarkupSafe"), 207 # jinja2 has a dep on MarkupSafe. Declaring MarkupSafe here is not necessary, but it makes 209 requirement("MarkupSafe"),
|
/aosp_15_r20/external/python/markupsafe/src/ |
D | Android.bp | 6 name: "py-markupsafe", 9 "markupsafe/__init__.py", 10 "markupsafe/_native.py",
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/scripts/ |
H A D | driver.requirements.txt | 3 # Jinja2 <3.0 needs an older version of markupsafe, but does not 5 # https://github.com/pallets/markupsafe/issues/282 7 markupsafe < 2.1
|
/aosp_15_r20/external/mbedtls/scripts/ |
H A D | driver.requirements.txt | 3 # Jinja2 <3.0 needs an older version of markupsafe, but does not 5 # https://github.com/pallets/markupsafe/issues/282 7 markupsafe < 2.1
|
/aosp_15_r20/external/python/cpython3/Doc/ |
D | requirements-oldest-sphinx.txt | 10 # pip install "Sphinx~=3.2.0" "docutils<0.17" "Jinja2<3" "MarkupSafe<2" 14 # Docutils<0.17, Jinja2<3, and MarkupSafe<2 are additionally specified as 27 MarkupSafe==1.1.1
|
/aosp_15_r20/external/angle/build/android/gyp/ |
H A D | write_build_config.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
H A D | create_r_java.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
H A D | unused_resources.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
H A D | create_ui_locale_resources.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
H A D | create_r_txt.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
/aosp_15_r20/external/cronet/build/android/gyp/ |
H A D | create_ui_locale_resources.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
H A D | unused_resources.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
H A D | create_r_txt.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|
H A D | write_build_config.pydeps | 22 ../../../third_party/markupsafe/__init__.py 23 ../../../third_party/markupsafe/_compat.py 24 ../../../third_party/markupsafe/_native.py
|