| /plugin/asciidocjs/node_modules/lodash/ |
| D | template.js | 16 /** Used to match empty string literals in compiled template source. */ 42 /** Used to match unescaped characters in compiled string literals. */ 52 * Creates a compiled template function that can interpolate data properties 83 * The sourceURL of the compiled template. 87 * @returns {Function} Returns the compiled template function. 90 * // Use the "interpolate" delimiter to create a compiled template. 91 * var compiled = _.template('hello <%= user %>!'); 92 * compiled({ 'user': 'fred' }); 96 * var compiled = _.template('<b><%- value %></b>'); 97 * compiled({ 'value': '<script>' }); [all …]
|
| D | _escapeStringChar.js | 1 /** Used to escape characters for inclusion in compiled string literals. */ 12 * Used by `_.template` to escape characters for inclusion in compiled string literals.
|
| /plugin/asciidocjs/node_modules/jstransformer/ |
| D | index.js | 288 var compiled = tr.normalizeFn(this._tr.compile(str, options)); 289 var body = compiled.fn(locals || options); 293 return tr.normalize({body: body, dependencies: compiled.dependencies}); 313 return tr.normalizeAsync(this.compileAsync(str, options).then(function (compiled) { argument 314 return {body: compiled.fn(locals || options), dependencies: compiled.dependencies}; 330 var compiled = this.compileFile(filename, options); 331 … return tr.normalize({body: compiled.fn(locals || options), dependencies: compiled.dependencies}); 349 return tr.normalizeAsync(this.compileFileAsync(filename, options).then(function (compiled) { argument 350 return {body: compiled.fn(locals || options), dependencies: compiled.dependencies};
|
| /plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/ |
| D | compiler.js | 529 let compiled; 543 // Template is only compiled on first use and cached after that point. 545 if (!compiled) { 546 compiled = compileInput(); 548 return compiled.call(this, context, execOptions); 551 if (!compiled) { 552 compiled = compileInput(); 554 return compiled._setup(setupOptions); 557 if (!compiled) { 558 compiled = compileInput(); [all …]
|
| D | base.js | 12 // Just return if an already-compiled AST was passed in.
|
| /plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/ |
| D | compiler.js | 505 var compiled = undefined; 514 // Template is only compiled on first use and cached after that point. 516 if (!compiled) { 517 compiled = compileInput(); 519 return compiled.call(this, context, execOptions); 522 if (!compiled) { 523 compiled = compileInput(); 525 return compiled._setup(setupOptions); 528 if (!compiled) { 529 compiled = compileInput(); [all …]
|
| /plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/ |
| D | compiler.js | 500 var compiled = undefined; 509 // Template is only compiled on first use and cached after that point. 511 if (!compiled) { 512 compiled = compileInput(); 514 return compiled.call(this, context, execOptions); 517 if (!compiled) { 518 compiled = compileInput(); 520 return compiled._setup(setupOptions); 523 if (!compiled) { 524 compiled = compileInput(); [all …]
|
| /plugin/jplayer/vendor/mustache/mustache/src/Mustache/ |
| D | Cache.php | 21 * Load a compiled Mustache_Template class from cache. 30 * Cache and load a compiled Mustache_Template class.
|
| D | Engine.php | 70 * // The class prefix for compiled templates. Defaults to '__Mustache_'. 73 * // A Mustache cache instance or a cache directory string for compiled templates. 610 * the same template could be parsed and compiled multiple different ways. 621 // could be compiled... but not necessarily unique per option value. See 738 $compiled = $this->compile($source); 739 $cache->cache($className, $compiled);
|
| /plugin/asciidocjs/node_modules/pug/lib/ |
| D | index.js | 196 * Get the template from a string or a file, either compiled on-the-fly or 226 * - `compileDebug` when `false` debugging code is stripped from the compiled 228 the compiled template for better accuracy. 275 * the compiled template for better error messages. 326 * the compiled template for better error messages. 344 * - `compileDebug` when `false` debugging code is stripped from the compiled 346 the compiled template for better accuracy.
|
| /plugin/jplayer/vendor/mustache/mustache/src/Mustache/Cache/ |
| D | FilesystemCache.php | 30 * @param string $baseDir Directory for compiled templates 59 * Cache and load the compiled class. 135 'Caching compiled template to "{fileName}"',
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | RuntimeMetaData.php | 36 * runtime library the code was compiled against. At each release, we 73 * parser was compiled against, and the version of the ANTLR runtime which 82 * compiled does not match the currently executing runtime version. 120 * was compiled against. This should
|
| /plugin/jplayer/vendor/mustache/mustache/src/Mustache/Source/ |
| D | FilesystemSource.php | 16 * pre-compiled templates doesn't require hitting the disk to read the source. 39 * Get the Source key (used to generate the compiled class name).
|
| /plugin/openlayersmap/.github/workflows/ |
| H A D | codeql-analysis.yml | 51 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 61 # uses a compiled language
|
| /plugin/asciidocjs/node_modules/pug-runtime/ |
| D | README.md | 25 …ild(arrayOfMethods)`. This is useful for inlining runtime functions within the compiled templates. 35 When testing code compiled for the browser in Node.js, it is necessary to make the runtime availabl…
|
| /plugin/sequencediagram/bower_components/lodash/lib/common/ |
| D | file.js | 26 * Creates an object of base name and compiled template pairs that match `pattern`. 30 * @returns {Object} Returns the object of compiled templates.
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/ |
| H A D | LexerCustomAction.php | 14 * of {@see Recognizer::action()} when the grammar is compiled. 18 * command argument could not be evaluated when the grammar was compiled.
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/ |
| D | Compiler.php | 109 * Adds a raw string to the compiled code. 123 * Writes a string to the compiled code by adding indentation. 154 * Adds a quoted string to the compiled code.
|
| /plugin/edittable/ |
| D | README.handsontable | 5 need to be done in the source files in the above repository, be compiled there
|
| /plugin/asciidocjs/node_modules/regenerator-runtime/ |
| D | package.json | 4 "description": "Runtime for Regenerator-compiled generator and async functions.",
|
| D | README.md | 4 [Regenerator](https://github.com/facebook/regenerator)-compiled generator
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/ |
| D | internals.rst | 14 * **Load** the template: If the template is already compiled, load it and go 24 method of the compiled template and passing it the context.
|
| D | api.rst | 41 the compiled templates to avoid the parsing phase for sub-sequent 108 An absolute path where to store the compiled templates, or 158 All template loaders can cache the compiled templates on the filesystem for 159 future reuse. It speeds up Twig a lot as templates are only compiled once; and 572 and access of variables in the compiled templates whenever possible.
|
| /plugin/subjectindex/ |
| D | readme.md | 3 … subject index entries "anywhere" in your wiki pages, that will then be compiled into a Subject In…
|
| /plugin/sympaauth/ |
| D | README | 2 Be sure php is compiled with soap enabled or shared (in this case, install the relevant package).
|