/external/python/jinja/src/jinja2/ |
D | meta.py | 71 for template_name in node.template.items: 74 if isinstance(template_name, nodes.Const): 75 if isinstance(template_name.value, str): 76 yield template_name.value 93 for template_name in node.template.value: 94 if isinstance(template_name, str): 95 yield template_name
|
D | utils.py | 526 def autoescape(template_name): argument 527 if template_name is None: 529 template_name = template_name.lower() 530 if template_name.endswith(enabled_patterns): 532 if template_name.endswith(disabled_patterns):
|
/external/libchrome/third_party/jinja2/ |
D | meta.py | 80 for template_name in node.template.items: 83 if isinstance(template_name, nodes.Const): 84 if isinstance(template_name.value, string_types): 85 yield template_name.value 101 for template_name in node.template.value: 102 if isinstance(template_name, string_types): 103 yield template_name
|
D | utils.py | 533 def autoescape(template_name): argument 534 if template_name is None: 536 template_name = template_name.lower() 537 if template_name.endswith(enabled_patterns): 539 if template_name.endswith(disabled_patterns):
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderPrimitiveCounter.cpp | 707 std::string template_name = "<-MAX-VERTICES->"; in GetGeometryShaderCode() local 708 std::size_t template_position = m_geometry_shader_template.find(template_name); in GetGeometryShaderCode() 713 m_geometry_shader_template.replace(template_position, template_name.length(), max_vertices); in GetGeometryShaderCode() 715 template_position = m_geometry_shader_template.find(template_name); in GetGeometryShaderCode() 719 template_name = "<-LAYOUT-IN->"; in GetGeometryShaderCode() 720 template_position = m_geometry_shader_template.find(template_name); in GetGeometryShaderCode() 725 m_geometry_shader_template.replace(template_position, template_name.length(), layout_in); in GetGeometryShaderCode() 727 template_position = m_geometry_shader_template.find(template_name); in GetGeometryShaderCode() 731 template_name = "<-LAYOUT-OUT->"; in GetGeometryShaderCode() 732 template_position = m_geometry_shader_template.find(template_name); in GetGeometryShaderCode() [all …]
|
/external/deqp/external/openglcts/modules/glesext/gpu_shader5/ |
D | esextcGPUShader5ImagesArrayIndexing.cpp | 344 std::string template_name = "<-MAX-LOCAL-SIZE-X->"; in getComputeShaderCode() local 345 std::size_t template_position = m_compute_shader_template.find(template_name); in getComputeShaderCode() 350 m_compute_shader_template.replace(template_position, template_name.length(), local_size_x); in getComputeShaderCode() 352 template_position = m_compute_shader_template.find(template_name); in getComputeShaderCode() 356 template_name = "<-MAX-LOCAL-SIZE-Y->"; in getComputeShaderCode() 357 template_position = m_compute_shader_template.find(template_name); in getComputeShaderCode() 362 m_compute_shader_template.replace(template_position, template_name.length(), local_size_y); in getComputeShaderCode() 364 template_position = m_compute_shader_template.find(template_name); in getComputeShaderCode()
|
/external/rust/crates/grpcio-sys/grpc/tools/distrib/python/grpc_prefixed/ |
D | generate.py | 74 for template_name in env.list_templates(): 75 template = env.get_template(template_name) 78 template_name.replace('.template', '')), 'w') as f:
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/xds_k8s_test_driver/framework/test_app/ |
D | base_runner.py | 78 def _template_file_from_name(cls, template_name): argument 81 return templates_path.joinpath(template_name).resolve() 83 def _create_from_template(self, template_name, **kwargs): argument 84 template_file = self._template_file_from_name(template_name) 89 template_name, yaml_doc)
|
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/ |
D | esextcTextureCubeMapArrayStencilAttachments.cpp | 671 std::string template_name = "<-MAX-VERTICES->"; in getGeometryShaderCode() local 672 std::size_t template_position = m_geometry_shader_template.find(template_name); in getGeometryShaderCode() 677 m_geometry_shader_template.replace(template_position, template_name.length(), max_vertices); in getGeometryShaderCode() 679 template_position = m_geometry_shader_template.find(template_name); in getGeometryShaderCode() 683 template_name = "<-N_LAYERS->"; in getGeometryShaderCode() 684 template_position = m_geometry_shader_template.find(template_name); in getGeometryShaderCode() 689 m_geometry_shader_template.replace(template_position, template_name.length(), n_layers); in getGeometryShaderCode() 691 template_position = m_geometry_shader_template.find(template_name); in getGeometryShaderCode()
|
/external/antlr/runtime/Ruby/test/unit/ |
D | test-template.rb | 84 for template_name in TEMPLATE_NAMES 85 names.should include template_name 86 template_class = templates[ template_name ]
|
/external/libcxx/ |
D | run_tests.py | 79 template_name = 'external/libcxx/libcxx_test_template.cpp' 83 if cc is None and template_name in cmd_args: 87 elif arg == template_name:
|
/external/rust/crates/tinytemplate/src/ |
D | error.rs | 204 pub(crate) fn called_template_error(source: &str, template_name: &str, err: Error) -> Error { in called_template_error() 205 let (line, column) = get_offset(source, template_name); in called_template_error() 207 name: template_name.to_string(), in called_template_error()
|
D | template.rs | 300 Instruction::Call(template_name, path) => { in render_into() 302 match template_registry.get(template_name) { in render_into() 314 template_name, in render_into() 319 None => return Err(unknown_template(self.original_text, template_name)), in render_into()
|
/external/libcups/templates/ru/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
D | add-printer.tmpl | 16 <TD><INPUT TYPE="TEXT" NAME="PRINTER_NAME" SIZE="40" MAXLENGTH="127" VALUE="{?template_name}"><BR>
|
/external/libcups/templates/ja/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
D | add-printer.tmpl | 16 <TD><INPUT TYPE="TEXT" NAME="PRINTER_NAME" SIZE="40" MAXLENGTH="127" VALUE="{?template_name}"><BR>
|
/external/libcups/templates/es/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
/external/libcups/templates/pt_BR/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
/external/libcups/templates/de/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
/external/libcups/templates/da/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
/external/libcups/templates/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
D | add-printer.tmpl | 16 <TD><INPUT TYPE="TEXT" NAME="PRINTER_NAME" SIZE="40" MAXLENGTH="127" VALUE="{?template_name}"><BR>
|
/external/libcups/templates/fr/ |
D | list-available-printers.tmpl | 5 …VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE=…
|
/external/arm-trusted-firmware/lib/romlib/ |
D | romlib_generator.py | 182 template_name = "jmptbl_entry_" + item["type"] + bti + ".S" 183 output_file.write(self.build_template(template_name, item, True))
|