HomeSort by relevance Sort by last modified time
    Searched refs:Template (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /external/v8/test/preparser/
testcfg.py 111 def Template(name, source):
120 execfile(pathname, {"Test": Test, "Template": Template})
149 # created environment (defining the Template and Test functions)
  /system/media/camera/docs/
metadata_parser_xml.py 21 over a Mako template.
24 metadata_parser_xml.py <filename.xml> <template.mako> [<output_file>]
25 - outputs the resulting template to output_file (stdout if none specified)
34 Mako - a template engine for Python, available to download from
45 from mako.template import Template
58 Mako template.
219 def render(self, template, output_name=None):
221 Render the metadata model using a Mako template as the view.
223 The template gets the metadata as an argument, as well as al
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 56 import com.google.clearsilver.jsilver.template.Macro;
57 import com.google.clearsilver.jsilver.template.RenderingContext;
58 import com.google.clearsilver.jsilver.template.Template;
59 import com.google.clearsilver.jsilver.template.TemplateLoader;
68 * Main JSilver interpreter. This walks a template's AST and renders the result out.
72 private final Template template; field in class:TemplateInterpreter
80 public TemplateInterpreter(Template template, TemplateLoader templateLoader
149 Template template = local
619 Template template = null; local
    [all...]
  /dalvik/vm/mterp/
gen-mterp.py 23 from string import Template
420 templ = Template(line)
425 # be template-replaced using the substitution dictionary "dict".
484 templ = Template(line)
  /external/ceres-solver/internal/ceres/
generate_eliminator_specialization.py 33 # Script for explicitly generating template specialization of the
43 # where, the x indicates the template parameters and
53 # Set of template specializations to generate
74 // Template specialization of SchurEliminator.
92 template class SchurEliminator<%s, %s, %s>;
133 VLOG(1) << "Template specializations not found for <"
  /external/clang/include/clang/AST/
DeclTemplate.h 11 /// \brief Defines the C++ template declaration subclasses.
38 /// \brief Stores a template parameter of any kind.
42 /// \brief Stores a list of template parameters for a TemplateDecl and its
45 /// The location of the 'template' keyword.
51 /// The number of template parameters in this template
55 /// Whether this template parameter list contains an unexpanded parameter
72 /// \brief Iterates through the template parameters in this list.
75 /// \brief Iterates through the template parameters in this list.
95 assert(Idx < size() && "Template parameter index out-of-range")
    [all...]
NestedNameSpecifier.h 82 /// \brief A type that was preceded by the 'template' keyword,
130 bool Template, const Type *T);
187 /// \brief Whether this nested name specifier involves a template
364 /// \param TemplateKWLoc The location of the 'template' keyword, if present.
RecursiveASTVisitor.h 118 /// themselves as the template argument, using the curiously recurring
119 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
137 template<typename Derived>
144 /// template instantiations.
206 /// \brief Recursively visit a template name and dispatch to the
210 bool TraverseTemplateName(TemplateName Template);
212 /// \brief Recursively visit a template argument and dispatch to the
219 /// \brief Recursively visit a template argument location and dispatch to the
225 /// \brief Recursively visit a set of template arguments.
422 template<typename Derived
    [all...]
  /external/compiler-rt/make/
lib_platforms.mk 13 # Template: subdir_traverse_template subdir
subdir.mk 27 # Template: subdir_traverse_template subdir
  /external/clang/lib/Sema/
TreeTransform.h 47 /// behavior specific to that transformation. For example, template
50 /// template arguments for their corresponding template parameters; a similar
51 /// transformation is performed for non-type template parameters and
52 /// template template parameters.
54 /// This tree-transformation template uses static polymorphism to allow
79 /// replacing TransformTemplateTypeParmType() allows template instantiation
80 /// to substitute template arguments for their corresponding template
    [all...]
SemaTemplateDeduction.cpp 1 //===------- SemaTemplateDeduction.cpp - Template Argument Deduction ------===/
9 // This file implements C++ template argument deduction.
23 #include "clang/Sema/Template.h"
30 /// \brief Various flags that control template argument deduction.
34 /// \brief No template argument deduction flags, which indicates the
35 /// strictest results for template argument deduction (as used for, e.g.,
36 /// matching class template partial specializations).
38 /// \brief Within template argument deduction from a function call, we are
42 /// \brief Within template argument deduction from a function call, we
45 /// \brief Within template argument deduction from a function call
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 70 template <> struct FoldingSetTrait<ArgEffect> {
474 template <> struct DenseMapInfo<ObjCSummaryKey> {
497 template <>
807 // it has annotations, the annotations are added to the stack-based template
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 60 template <typename T>
405 case TTK_Enum: llvm_unreachable("enum template");
447 // For a class template specialization, mangle the template arguments.
715 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
717 = dyn_cast<TemplateTemplateParmDecl>(Template)) {
722 Visit(Template);
726 // FIXME: Visit dependent template names.
744 case TemplateArgument::Template:
RecursiveASTVisitor.h 122 /// themselves as the template argument, using the curiously recurring
123 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
141 template<typename Derived>
148 /// template instantiations.
199 /// \brief Recursively visit a template name and dispatch to the
203 bool TraverseTemplateName(TemplateName Template);
205 /// \brief Recursively visit a template argument and dispatch to the
212 /// \brief Recursively visit a template argument location and dispatch to the
218 /// \brief Recursively visit a set of template arguments.
444 template<typename Derived
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 54 import freemarker.template.Configuration;
55 import freemarker.template.DefaultObjectWrapper;
56 import freemarker.template.Template;
57 import freemarker.template.TemplateException;
134 * where all template specific resources are found
139 * Directory within the template which contains the resources referenced
140 * from the template.xml file
150 /** Reserved filename which describes each template */
151 static final String TEMPLATE_XML = "template.xml"; //$NON-NLS-1
667 Template template = freemarker.getTemplate(from.getName()); local
899 Template template = freemarker.getTemplate(from.getName()); local
1128 TemplateMetadata template = getTemplate(); local
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp 105 // TODO: we could look up template parameter documentation in the template
223 /// If we have a 'templated' declaration for a template, adjust 'D' to
224 /// refer to the actual template.
225 /// If we have an implicit instantiation, adjust 'D' to refer to template.
228 // Is this function declaration part of a function template?
236 // Function is an implicit instantiation of a function template?
240 // Function is instantiated from a member definition of a class template?
249 // template?
257 // Is this class declaration part of a class template
    [all...]
NestedNameSpecifier.cpp 91 bool Template, const Type *T) {
95 Mockup.Prefix.setInt(Template? StoredTypeSpecWithTemplate : StoredTypeSpec);
248 OS << "template ";
261 // dependent template-id types (e.g., Outer<T>::template Inner<U>),
268 // Print the template name without its corresponding
272 // Print the template argument list.
312 // Note: the 'template' keyword is part of the TypeLoc.
376 // Note: the 'template' keyword is part of the TypeLoc.
ASTDiagnostic.cpp 43 // ...or a substituted template type parameter ...
62 // Don't desugar template specializations, unless it's an alias template.
276 // Attempting to do a template diff on non-templates. Set the variables
370 /// all the information about the templates and template arguments. Afterwards,
374 /// Context - The ASTContext which is used for comparing template arguments.
412 Template,
417 /// Template argument difference, uses TemplateDecl
426 /// stores template arguments of their parents. For templated types, the
427 /// template decl is also stored
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 53 template <typename ValueT> struct DenseMapInfo;
54 template <typename ValueT, typename ValueInfoT> class DenseSet;
130 template <class T> class ObjCList;
534 /// \brief The C++ "std::initializer_list" template, which is defined in
839 /// template instantiation stacks.
844 /// does) and, if the diagnostic comes from inside a template
845 /// instantiation, printing the template instantiation stack as
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 353 // Template parameters are always an error here.
510 if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
566 // template <...> using id = type;
809 /// simple-template-id
845 // Check whether we have a template-id that names a type.
852 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
874 // It looks the user intended to write a template-id here, but the
875 // template-name was wrong. Try to fix that.
877 TemplateTy Template;
879 &SS, Template, TNK))
    [all...]
  /external/v8/src/
api.h 119 template <typename T> inline T ToCData(v8::internal::Object* obj) {
127 template <typename T>
206 OpenHandle(const Template* that);
242 template <class T>
248 template <class T>
298 MAKE_OPEN_HANDLE(Template, TemplateInfo)
  /external/chromium/testing/gmock/scripts/
gmock_doctor.py 175 r'note: in instantiation of function template specialization '
225 r'of function template specialization '
232 r'of function template specialization '
308 r'note: candidate template ignored:\s+'
309 r'couldn\'t infer template argument \'FunctionImpl\'')
334 r'note: candidate function template not viable: '
423 r'of function template specialization '
447 + _GCC_FILE_LINE_RE + r'error: template argument 1 is invalid\n')
453 r'.*error: template argument 1 is invalid\n')
460 r'.*error: template argument 1 is invalid\n
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/tools/
genapi.py 25 # To generate C++ files, this script uses the 'pyratemp' template
28 # $ wget http://www.simple-is-better.org/template/pyratemp-current/pyratemp.py
155 TRACE_CALL_TEMPLATE = pyratemp.Template(
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 69 import com.google.clearsilver.jsilver.template.Macro;
70 import com.google.clearsilver.jsilver.template.RenderingContext;
71 import com.google.clearsilver.jsilver.template.Template;
154 * @param name name of the macro as defined in the template.
174 RENDER_METHOD = Template.class.getMethod("render", RenderingContext.class);
193 java.writeImports(BaseCompiledTemplate.class, Template.class, Macro.class,
203 super.caseStart(node); // Walk template AST.
544 * template in this stored context.
558 * &lt;?cs linclude:'somefile.cs' &gt; command. Lazily includes another template (at render time)
    [all...]

Completed in 1613 milliseconds

1 23 4 5 6