Searched refs:template_name (Results 1 – 9 of 9) sorted by relevance
/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):
|
D | runtime.py | 59 def new_context(environment, template_name, blocks, vars=None, argument 76 return environment.context_class(environment, parent, template_name,
|
D | nodes.py | 81 def __init__(self, environment, template_name=None): argument 84 self.autoescape = environment.autoescape(template_name)
|
/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/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:
|