Home
last modified time | relevance | path

Searched refs:loaders (Results 1 – 25 of 29) sorted by relevance

12

/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Loader/
DCascadingLoader.php18 private $loaders; variable in Mustache_Loader_CascadingLoader
28 * @param Mustache_Loader[] $loaders
30 public function __construct(array $loaders = array()) argument
32 $this->loaders = array();
33 foreach ($loaders as $loader) {
45 $this->loaders[] = $loader;
59 foreach ($this->loaders as $loader) {
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
DChainLoader.php27 protected $loaders = []; variable in Twig\\Loader\\ChainLoader
30 * @param LoaderInterface[] $loaders
32 public function __construct(array $loaders = []) argument
34 foreach ($loaders as $loader) {
41 $this->loaders[] = $loader;
50 return $this->loaders;
58 foreach ($this->loaders as $loader) {
76 foreach ($this->loaders as $loader) {
103 foreach ($this->loaders as $loader) {
130 foreach ($this->loaders as $loader) {
[all …]
/plugin/asciidocjs/node_modules/nunjucks/
Dindex.js8 var loaders = require('./src/loaders'); variable
26 if (loaders.FileSystemLoader) {
27 TemplateLoader = new loaders.FileSystemLoader(templatesPath, {
31 } else if (loaders.WebLoader) {
32 TemplateLoader = new loaders.WebLoader(templatesPath, {
47 FileSystemLoader: loaders.FileSystemLoader,
48 NodeResolveLoader: loaders.NodeResolveLoader,
49 PrecompiledLoader: loaders.PrecompiledLoader,
50 WebLoader: loaders.WebLoader,
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/
DLazyAssetManager.php27 private $loaders; variable in Assetic\\Factory\\LazyAssetManager
37 * @param array $loaders An array of loaders indexed by alias
39 public function __construct(AssetFactory $factory, $loaders = array()) argument
42 $this->loaders = array();
48 foreach ($loaders as $alias => $loader) {
61 $this->loaders[$alias] = $loader;
152 if ($diff = array_diff(array_keys($this->resources), array_keys($this->loaders))) {
160 … $this->formulae = array_replace($this->formulae, $this->loaders[$loader]->load($resource));
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
DAnnotationRegistry.php41 static private $loaders = []; variable in Doctrine\\Common\\Annotations\\AnnotationRegistry
53 self::$loaders = [];
116 self::$loaders[] = $callable;
126 if ( ! in_array($callable, self::$loaders, true) ) {
164 foreach (self::$loaders AS $loader) {
/plugin/asciidocjs/node_modules/nunjucks/src/
Denvironment.js53 _proto.init = function init(loaders, opts) { argument
75 this.loaders = []; property
76 if (!loaders) {
79 this.loaders = [new FileSystemLoader('views')]; property
81 this.loaders = [new WebLoader('/views')]; property
84 this.loaders = lib.isArray(loaders) ? loaders : [loaders];
91 this.loaders.unshift(new PrecompiledLoader(window.nunjucksPrecompiled));
113 this.loaders.forEach(function (loader) {
128 this.loaders.forEach(function (loader) {
212 for (var i = 0; i < this.loaders.length; i++) {
[all …]
/plugin/asciidocjs/node_modules/nunjucks/browser/
Dnunjucks-slim.js935 var loaders = __webpack_require__(3);
953 if (loaders.FileSystemLoader) {
954 TemplateLoader = new loaders.FileSystemLoader(templatesPath, {
958 } else if (loaders.WebLoader) {
959 TemplateLoader = new loaders.WebLoader(templatesPath, {
974 FileSystemLoader: loaders.FileSystemLoader,
975 NodeResolveLoader: loaders.NodeResolveLoader,
976 PrecompiledLoader: loaders.PrecompiledLoader,
977 WebLoader: loaders.WebLoader,
1068 _proto.init = function init(loaders, opts) {
[all …]
Dnunjucks.js2332 _proto.init = function init(loaders, opts) {
2354 this.loaders = [];
2355 if (!loaders) {
2358 this.loaders = [new FileSystemLoader('views')]; property
2360 this.loaders = [new WebLoader('/views')]; property
2363 this.loaders = lib.isArray(loaders) ? loaders : [loaders];
2370 this.loaders.unshift(new PrecompiledLoader(window.nunjucksPrecompiled));
2392 this.loaders.forEach(function (loader) {
2407 this.loaders.forEach(function (loader) {
2491 for (var i = 0; i < this.loaders.length; i++) {
[all …]
Dnunjucks-slim.min.js2loaders=[],t?this.loaders=f.isArray(t)?t:[t]:h?this.loaders=[new h("views")]:v&&(this.loaders=[new… property
Dnunjucks-slim.min.js.map1loaders","precompile","compiler","parser","lexer","runtime","nodes","installJinjaCompat","configur…
Dnunjucks.min.js2loaders=[],t?this.loaders=u.isArray(t)?t:[t]:a?this.loaders=[new a("views")]:l&&(this.loaders=[new… property
Dnunjucks-slim.js.map1loaders","precompile","compiler","parser","lexer","runtime","nodes","installJinjaCompat","e","conf…
Dnunjucks.min.js.map1loaders.js","../nunjucks/index.js","../node_modules/asap/browser-asap.js","../node_modules/asap/br…
Dnunjucks.js.map1loaders.js","../nunjucks/index.js","../node_modules/asap/browser-asap.js","../node_modules/asap/br…
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
Dsource.rst24 The function uses the same template loaders as the ones used to include
/plugin/findologicxmlexport/vendor/twig/twig/doc/
Dapi.rst34 loaders are available and you can also write your own if you want to load
158 All template loaders can cache the compiled templates on the filesystem for
167 Here is a list of the built-in loaders Twig provides:
242 When using the ``Array`` or ``String`` loaders with a cache mechanism, you
251 ``\Twig\Loader\ChainLoader`` delegates the loading of templates to other loaders::
275 You can also add loaders via the ``addLoader()`` method.
280 All loaders implement the ``\Twig\Loader\LoaderInterface``::
/plugin/asciidocjs/node_modules/asap/
DCHANGES.md21 [Browserify-compatible][Mr] module loaders in mind.
DREADME.md224 Config] `browser` property in `package.json` to instruct browser module loaders
/plugin/findologicxmlexport/vendor/twig/twig/
DCHANGELOG96 * added support for runtime loaders in IntegrationTestCase
545 * made the parsing independent of the template loaders
685 …Loader_Array::isFresh() method when the template does not exist to be consistent with other loaders
991 * changed the Array and String loaders to actually make use of the cache mechanism
1002 If you have custom loaders, you MUST upgrade them for this release: The
1011 * refactored loaders
1017 The loaders do not take the cache and autoReload arguments anymore. Instead,
/plugin/codemirror/dist/modes/
Dlua.min.js.map1 …\",\"os.tmpname\",\n\n \"package.cpath\",\"package.loaded\",\"package.loaders\",\"package.loadl…
/plugin/indexmenu/scripts/fancytree/modules/
Djquery.fancytree.js2532 loaders,
2546 loaders = [];
2556 loaders.push(res); // Add promise to the list
2559 $.when.apply(this, loaders).then(function () {
/plugin/indexmenu/scripts/fancytree/
Djquery.fancytree-all.js2532 loaders,
2546 loaders = [];
2556 loaders.push(res); // Add promise to the list
2559 $.when.apply(this, loaders).then(function () {
Djquery.fancytree-all-deps.js3993 loaders,
4007 loaders = [];
4017 loaders.push(res); // Add promise to the list
4020 $.when.apply(this, loaders).then(function () {
/plugin/diagramsnet/lib/WEB-INF/lib/
Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
/plugin/ckgedit/ckeditor/
Dckeditor.js867 …en(e,null,d,!0)}return!0}});(function(){function k(a){this.editor=a;this.loaders=[]}function l(a,c… property
870loaders.length;a=new b(this.editor,a,c);a.id=d;this.loaders[d]=a;this.fire("instanceCreated",a);re…
1327 …c=this.wrapper.findOne("[data-cke-upload-id]").data("cke-upload-id"),k=b.loaders[c],f=CKEDITOR.too…
1329 …er.findOne("[data-cke-upload-id]");return a?this.editor.uploadRepository.loaders[a.data("cke-uploa…

12