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

1 2 34 5 6

  /external/clang/lib/Parse/
Parser.cpp 546 // Late template parsing can begin.
586 /// [C++0x/GNU] 'extern' 'template' declaration
683 case tok::kw_export: // As in 'export template'
694 // Parse (then ignore) 'static' prior to a template instantiation. This is
716 // Parse (then ignore) 'inline' prior to a template instantiation. This is
803 /// non-NULL, provides the template parameters when we're parsing a
804 /// C++ template-declaration.
    [all...]
  /external/v8/include/
v8.h 101 template <class T> class Handle;
102 template <class T> class Local;
103 template <class T> class Persistent;
169 template <class T> class Handle {
191 template <class S> inline Handle(Handle<S> that)
221 template <class S> inline bool operator==(Handle<S> that) const {
235 template <class S> inline bool operator!=(Handle<S> that) const {
239 template <class S> static inline Handle<T> Cast(Handle<S> that) {
248 template <class S> inline Handle<S> As() {
264 template <class T> class Local : public Handle<T>
    [all...]
  /external/clang/lib/AST/
Decl.cpp 49 // 2. There is one caveat to the above: on or in a template pattern,
51 // visibility can be decreased by the visibility of template
54 // restrictions of the template arguments to be ignored.
75 // The visibility of a "secondary" entity, like a template argument,
79 // template <class T, bool (&compare)(T, X)> bool has_match(list<T>, X);
80 // template <class T, bool (&compare)(T, X)> class matcher;
95 /// the visibility of template arguments.
100 /// the visibility of template arguments.
105 /// restricted by the visibility of template arguments.
110 /// may only be restricted by the visibility of template arguments
    [all...]
DeclTemplate.cpp 1 //===--- DeclTemplate.cpp - Template Declaration AST Node Implementation --===//
36 assert(this->NumParams == NumParams && "Too many template parameters");
51 // template parameter list does too.
162 template <class EntryType>
175 /// \brief Generate the injected template arguments for the given template
176 /// parameter list, e.g., for the injected-class-name of a class template.
431 // The template argument list of a primary template is a template argument
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 532 return new Template(this, pattern).evaluate(object);
547 var template = new Template(replacement);
548 return function(match) { return template.evaluate(match) };
560 var Template = Class.create({
561 initialize: function(template, pattern) {
562 this.template = template.toString();
563 this.pattern = pattern || Template.Pattern;
570 return this.template.gsub(this.pattern, function(match)
    [all...]
concat-jquery-mootools-prototype.js     [all...]
  /external/clang/tools/libclang/
CXCursor.cpp 559 CXCursor cxcursor::MakeCursorTemplateRef(const TemplateDecl *Template,
562 assert(Template && TU && "Invalid arguments!");
564 CXCursor C = { CXCursor_TemplateRef, 0, { Template, RawLoc, TU } };
977 template<> struct DenseMapInfo<CXCursor> {
    [all...]
IndexingContext.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 194 autoload :Template, 'antlr3/template'
  /external/clang/include/clang/Parse/
Parser.h 153 /// template argument list, where the '>' closes the template
170 /// The "depth" of the template parameters currently being parsed.
487 /// The identifier is a template name. FIXME: Add an annotation for that.
821 /// \brief Whether this member function had an associated template
822 /// scope. When true, D is a template declaration.
866 /// \brief Whether this member function had an associated template
867 /// scope. When true, D is a template declaration.
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate_test.js 19 function jstWrap(data, template) {
20 return jstProcess(new JsEvalContext(data), template);
24 // Template cardinality from jsselect.
70 // Reprocessing with empty data -- the last template instance is
103 // Check that 'this' within js expressions is the template node
241 assertTrue('Expected newly loaded template to be in document',
243 assertTrue('Expected wrapper to be grandparent of template',
246 // Make sure the next template loaded with the same wrapper id re-uses the
251 assertTrue('Expected newly loaded template to be in document',
253 assertTrue('Expected wrapper to be grandparent of template',
    [all...]
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 43 use Template;
48 # Location of template. (Assumed to be in current directory.)
145 # Copy sorted list to template data store.
230 # Create new template object.
231 my $template = Template->new(
238 unless ($template->process($html_template_file, $data)) { # do it
239 warn "write_output: Template Toolkit error: " . $template->error() . "\n";
  /external/clang/include/clang/AST/
Decl.h 172 /// result as printName(); for example, class template
173 /// specializations are printed with their template arguments.
471 /// NumTemplParamLists - The number of "outer" template parameter lists.
472 /// The count includes all of the template parameter lists that were matched
473 /// against the template-ids occurring into the NNS and possibly (in the
474 /// case of an explicit specialization) a final "template <>".
478 /// containing pointers to the "outer" template parameter lists.
479 /// It includes all of the template parameter lists that were matched
480 /// against the template-ids occurring into the NNS and possibly (in the
481 /// case of an explicit specialization) a final "template <>"
    [all...]
Comment.h 769 /// Doxygen \\tparam command, describes a template parameter.
772 /// If this template parameter name was resolved (found in template parameter
773 /// list), then this stores a list of position indexes in all template
778 /// template<typename C, template<typename T> class TT>
974 /// Template parameters that can be referenced by \\tparam if \c CommentDecl is
975 /// a template (\c IsTemplateDecl or \c IsTemplatePartialSpecialization is
987 /// \li function template,
988 /// \li function template specialization
    [all...]
DeclCXX.h 47 /// concrete function or a function template.
57 /// \brief Implicily converts any function or function template into a
61 /// \brief Retrieve the underlying function or function template.
73 /// AnyFunctionDecl to any function or function template declaration.
74 template<> struct simplify_type<const ::clang::AnyFunctionDecl> {
80 template<> struct simplify_type< ::clang::AnyFunctionDecl>
84 template<>
523 /// within the default argument of a function template, because the
570 /// \brief The template or declaration that this declaration
574 /// declarations that describe a class template, this will be
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 64 module Template
80 :TEMPLATE => 6, :T__11 => 11, :T__14 => 14, :T__13 => 13,
99 "TEMPLATE", "STRING", "COMMENT", "WS" ].freeze
102 :template!, :string!, :comment!, :ws! ].freeze
460 # lexer rule template! (TEMPLATE)
462 def template!
466 type = TEMPLATE
838 # at line 1:8: ( T__10 | T__11 | T__12 | T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | CONSTANT | ID | TEMPLATE | STRING | COMMENT | WS )
891 # at line 1:82: TEMPLATE
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp 57 // template <typename T> struct S {
180 // If the name that we found is a class template name, and it is
181 // the same name as the template name in the last part of the
186 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
201 // We're referring into a class template specialization. If the
202 // class template we found is the same as the template being
208 Template->getCanonicalDecl())
215 // We're referring to an unresolved class template
216 // specialization. Determine whether we class template we foun
    [all...]
SemaDeclCXX.cpp 351 // template-parameter (14.1). It shall not be specified for a
397 // For non-template functions, default arguments can be added in
433 // of template class. The new default parameter's value is ignored.
485 // Paragraph 4, quoted above, only applies to non-template functions.
497 // - the explicit specialization of a function template;
498 // - the explicit specialization of a member function template;
500 // template where the class template specialization to which the
509 // Default arguments for a member function of a class template shall
511 // within the class template
    [all...]
SemaCodeComplete.cpp 500 // Class template (partial) specializations are never added as results.
    [all...]
SemaDecl.cpp 152 // nested-name-specifier depends on a template-parameter (14.6.2)
218 TemplateTy Template;
229 // Ignore a correction to a template type as the to-be-corrected
230 // identifier is not a template (typo correction for template names
234 false, Template, MemberOfUnknownSpecialization))) {
378 /// template<class T> class A {
382 /// template<class T> class B : public A<T> {
454 // See if II is a class template that the user forgot to pass arguments to.
735 // A name used in a template declaration or definition and that is
    [all...]
  /external/openssh/contrib/caldera/
openssh.spec 364 Template Version: 1.31
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.js 23 * Template to use for creating new 'apps-page' elements
29 * Template to use for creating new 'app-container' elements
35 * Template to use for creating new 'dot' elements
108 // Get the template elements and remove them from the DOM. Things are
110 // template elements behind in the DOM.
111 appTemplate = getRequiredElement('app-template');
354 // Make a deep copy of the template and clear its ID
357 assert(appElement, 'Expected app-template to have an app child');
430 // Make a shallow copy of the app page template.
434 // Make a deep copy of the dot template to add a new one
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/ceres-solver/docs/
build.tex 303 \item{Template Specializations}
307 small (10-20\%) performance gains in the \sparseschur\ solver, you can disable some of the template
  /external/chromium/chrome/common/extensions/docs/js/
api_page_generator.js 10 * 1) API_TEMPLATE which is the main template for the api pages.
21 var API_TEMPLATE = "template/api_template.html";
37 // Data to feed as context into the template.
79 * Main entry point for composing the page. It will fetch it's template,
82 * render the template from |pageData|.
95 // Fetch the api template and insert into the <body>.
226 * Special pages like the samples gallery may want to modify their template
227 * data to include additional information. This hook allows a page template
231 * To specify such code, the page template should include a script block with
242 * template is rendered, and will therefore not be exposed to the end use
    [all...]

Completed in 878 milliseconds

1 2 34 5 6