Home
last modified time | relevance | path

Searched full:jinja2 (Results 1 – 25 of 117) sorted by relevance

12345

/third_party/jinja2/
Djinja2.gni2 "//third_party/jinja2/__init__.py",
3 "//third_party/jinja2/_compat.py",
4 "//third_party/jinja2/_identifier.py",
5 "//third_party/jinja2/asyncfilters.py",
6 "//third_party/jinja2/asyncsupport.py",
7 "//third_party/jinja2/bccache.py",
8 "//third_party/jinja2/compiler.py",
9 "//third_party/jinja2/constants.py",
10 "//third_party/jinja2/debug.py",
11 "//third_party/jinja2/defaults.py",
[all …]
Dsetup.cfg2 name = Jinja2
3 version = attr: jinja2.__version__
44 jinja2 = jinja2.ext:babel_extract[i18n]
56 jinja2
85 src/jinja2/__init__.py: F401
88 files = src/jinja2
105 [mypy-jinja2.defaults]
DREADME.modification1 Name: Jinja2
8 Jinja2 is a full-featured template engine for Python. It has full unicode
14 …rg/packages/d8/03/e491f423379ea14bb3a02a5238507f7d446de639b623187bccc111fbecdf/Jinja2-2.11.1.tar.gz
18 Only includes the jinja2 directory from the tarball and the LICENSE and
Dbundle.json2 "name": "@ohos/jinja2",
3 …"description": "Jinja2 is a template engine written in pure Python. It provides a Django inspired …
8 "destPath": "third_party/jinja2"
17 "name": "jinja2",
DREADME.OpenSource3 "Name": "Jinja2",
9 …"Description": "Jinja2 is a template engine written in pure Python. It provides a Django inspired …
/third_party/skia/third_party/externals/jinja2/
Djinja2.gni2 "${skia_third_party_dir}/jinja2/__init__.py",
3 "${skia_third_party_dir}/jinja2/_compat.py",
4 "${skia_third_party_dir}/jinja2/_identifier.py",
5 "${skia_third_party_dir}/jinja2/asyncfilters.py",
6 "${skia_third_party_dir}/jinja2/asyncsupport.py",
7 "${skia_third_party_dir}/jinja2/bccache.py",
8 "${skia_third_party_dir}/jinja2/compiler.py",
9 "${skia_third_party_dir}/jinja2/constants.py",
10 "${skia_third_party_dir}/jinja2/debug.py",
11 "${skia_third_party_dir}/jinja2/defaults.py",
[all …]
DREADME.chromium1 Name: Jinja2 Python Template Engine
2 Short Name: jinja2
5 CPEPrefix: cpe:/a:pocoo:jinja2:2.11.3
13 …rg/packages/4f/e7/65300e6b32e69768ded990494809106f87da1d436418d5f1367ed3966fd7/Jinja2-2.11.3.tar.gz
18 This only includes the src/jinja2/ directory from the tarball and the
23 * jinja2.gni
/third_party/node/tools/inspector_protocol/jinja2/
Djinja2.gni4 "//third_party/jinja2/__init__.py",
5 "//third_party/jinja2/_compat.py",
6 "//third_party/jinja2/_identifier.py",
7 "//third_party/jinja2/asyncfilters.py",
8 "//third_party/jinja2/asyncsupport.py",
9 "//third_party/jinja2/bccache.py",
10 "//third_party/jinja2/compiler.py",
11 "//third_party/jinja2/constants.py",
12 "//third_party/jinja2/debug.py",
13 "//third_party/jinja2/defaults.py",
[all …]
D__init__.py3 jinja2
6 Jinja2 is a template engine written in pure Python. It provides a
13 Here a small example of a Jinja2 template::
33 from jinja2.environment import Environment, Template
36 from jinja2.loaders import BaseLoader, FileSystemLoader, PackageLoader, \
41 from jinja2.bccache import BytecodeCache, FileSystemBytecodeCache, \
45 from jinja2.runtime import Undefined, DebugUndefined, StrictUndefined, \
49 from jinja2.exceptions import TemplateError, UndefinedError, \
54 from jinja2.filters import environmentfilter, contextfilter, \
56 from jinja2.utils import Markup, escape, clear_caches, \
[all …]
Dget_jinja2.sh2 # Download and extract Jinja2
8 # https://pypi.python.org/pypi/Jinja2
9 PACKAGE='Jinja2'
11 …org/packages/56/e6/332789f295cf22308386cf5bbd1f4e00ed11484299c5d7383378cf48ba47/Jinja2-2.10.tar.gz'
12 PACKAGE_DIR='jinja2'
31 # FILENAME=Jinja2-2.8.tar.gz
124 # Generating jinja2.gni
125 cat > jinja2.gni <<EOF
133 echo " \"//third_party/jinja2/${i}\"," >> jinja2.gni
136 echo "]" >> jinja2.gni
DREADME.chromium1 Name: Jinja2 Python Template Engine
2 Short Name: jinja2
12 ….org/packages/56/e6/332789f295cf22308386cf5bbd1f4e00ed11484299c5d7383378cf48ba47/Jinja2-2.10.tar.gz
17 This only includes the jinja2 directory from the tarball and the LICENSE and
23 * jinja2.gni (generated by get_jinja2.sh)
26 Retrieve or update by executing jinja2/get_jinja2.sh from third_party.
Ddefaults.py3 jinja2.defaults
11 from jinja2._compat import range_type
12 from jinja2.utils import generate_lorem_ipsum, Cycler, Joiner, Namespace
31 from jinja2.filters import FILTERS as DEFAULT_FILTERS
32 from jinja2.tests import TESTS as DEFAULT_TESTS
Dmeta.py3 jinja2.meta
12 from jinja2 import nodes
13 from jinja2.compiler import CodeGenerator
14 from jinja2._compat import string_types, iteritems
42 >>> from jinja2 import Environment, meta
66 >>> from jinja2 import Environment, meta
Dasyncsupport.py3 jinja2.asyncsupport
17 from jinja2.utils import concat, internalcode, Markup
18 from jinja2.environment import TemplateModule
19 from jinja2.runtime import LoopContextBase, _last_iteration
142 from jinja2 import Template
157 from jinja2.runtime import BlockReference, Macro
164 from jinja2.filters import FILTERS
165 from jinja2.asyncfilters import ASYNC_FILTERS
Dext.py3 jinja2.ext
15 from jinja2 import nodes
16 from jinja2.defaults import BLOCK_START_STRING, \
21 from jinja2.environment import Environment
22 from jinja2.runtime import concat
23 from jinja2.exceptions import TemplateAssertionError, TemplateSyntaxError
24 from jinja2.utils import contextfunction, import_string, Markup
25 from jinja2._compat import with_metaclass, string_types, iteritems
90 """It's passed a :class:`~jinja2.lexer.TokenStream` that can be used
92 :class:`~jinja2.lexer.Token`\\s, but it doesn't have to return a
[all …]
Doptimizer.py3 jinja2.optimizer
19 from jinja2 import nodes
20 from jinja2.visitor import NodeTransformer
Dnativetypes.py4 from jinja2 import nodes
5 from jinja2._compat import text_type
6 from jinja2.compiler import CodeGenerator, has_safe_repr
7 from jinja2.environment import Environment, Template
8 from jinja2.utils import concat, escape
Denvironment.py3 jinja2.environment
15 from jinja2 import nodes
16 from jinja2.defaults import BLOCK_START_STRING, \
22 from jinja2.lexer import get_lexer, TokenStream
23 from jinja2.parser import Parser
24 from jinja2.nodes import EvalContext
25 from jinja2.compiler import generate, CodeGenerator
26 from jinja2.runtime import Undefined, new_context, Context
27 from jinja2.exceptions import TemplateSyntaxError, TemplateNotFound, \
29 from jinja2.utils import import_string, LRUCache, Markup, missing, \
[all …]
Druntime.py3 jinja2.runtime
16 from jinja2.nodes import EvalContext, _context_function_types
17 from jinja2.utils import Markup, soft_unicode, escape, missing, concat, \
19 from jinja2.exceptions import UndefinedError, TemplateRuntimeError, \
21 from jinja2._compat import imap, text_type, iteritems, \
594 iterated over, but every other access will raise an :exc:`jinja2.exceptions.UndefinedError`:
604 jinja2.exceptions.UndefinedError: 'foo' is undefined
618 `jinja2.exceptions.UndefinedError` on call.
770 jinja2.exceptions.UndefinedError: 'foo' is undefined
795 jinja2.exceptions.UndefinedError: 'foo' is undefined
[all …]
Dbccache.py3 jinja2.bccache
26 from jinja2.utils import open_if_exists
27 from jinja2._compat import BytesIO, pickle, PY2, text_type
120 these methods are passed a :class:`~jinja2.bccache.Bucket`.
143 Jinja2.
161 """Clears the cache. This method is not used by Jinja2 but should be
337 def __init__(self, client, prefix='jinja2/bytecode/', timeout=None,
Dutils.py3 jinja2.utils
16 from jinja2._compat import text_type, string_types, implements_iterator, \
101 from jinja2.runtime import Undefined
112 """Jinja2 keeps internal caches for environments and lexers. These are
113 used so that Jinja2 doesn't have to recreate environments and lexers all
117 from jinja2.environment import _spontaneous_environments
118 from jinja2.lexer import _lexer_cache
240 from jinja2.constants import LOREM_IPSUM_WORDS
502 from jinja2 import Environment, select_autoescape
511 from jinja2 import Environment, select_autoescape
/third_party/flutter/skia/third_party/externals/dawn/generator/
Dgenerator_lib.py16 """Module to create generators that render multiple Jinja2 templates for GN.
19 that expand one or more Jinja2 templates, without outputs usable from
26 output a file into a temporary output directory through Jinja2 expansion.
42 # A FileRender represents a single Jinja2 template render operation:
44 # template: Jinja2 template name, relative to --template-dir path.
49 # All of them will be merged before being sent as Jinja2 template
75 # Allow custom Jinja2 installation path through an additional python
77 # argparse because PreprocessingLoader uses jinja2 in the global scope before
82 kJinja2Path = '--jinja2-path'
89 import jinja2
[all …]
/third_party/skia/third_party/externals/dawn/generator/
Dgenerator_lib.py15 """Module to create generators that render multiple Jinja2 templates for GN.
18 that expand one or more Jinja2 templates, without outputs usable from
25 output a file into a temporary output directory through Jinja2 expansion.
41 # A FileRender represents a single Jinja2 template render operation:
43 # template: Jinja2 template name, relative to --template-dir path.
48 # All of them will be merged before being sent as Jinja2 template
76 # Allow custom Jinja2 installation path through an additional python
78 # argparse because PreprocessingLoader uses jinja2 in the global scope before
83 kJinja2Path = '--jinja2-path'
90 # --jinja2-path isn't passed, ignore the exception and just import Jinja2
[all …]
DCMakeLists.txt18 # Check for Jinja2
20 message(STATUS "Dawn: Using system jinja2")
22 COMMAND ${PYTHON_EXECUTABLE} -c "import jinja2"
26 … "Dawn: Missing dependencies for code generation, please ensure you have python-jinja2 installed.")
29 message(STATUS "Dawn: Using jinja2 at ${DAWN_JINJA2_DIR}")
55 list(APPEND BASE_ARGS --jinja2-path ${DAWN_JINJA2_DIR})
/third_party/mbedtls/scripts/
Ddriver.requirements.txt7 Jinja2 >= 2.10.1
8 # Jinja2 >=2.10, <<3.0 needs a separate package for type annotations
9 types-Jinja2

12345