Home
last modified time | relevance | path

Searched refs:loaders (Results 1 – 13 of 13) sorted by last modified time

/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/ckgedit/ckeditor/
H A Dckeditor.js.unc16985 this.loaders = []
17067 var d = this.loaders.length;
17070 this.loaders[d] = a;
17075 for (var a = 0; a < this.loaders.length; ++a)
17076 if (!this.loaders[a].isFinished()) return !1;
26449 k = b.loaders[c],
26484 … return a ? this.editor.uploadRepository.loaders[a.data("cke-upload-id")] : null
H A Dckeditor.js867 …en(e,null,d,!0)}return!0}});(function(){function k(a){this.editor=a;this.loaders=[]}function l(a,c…
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…
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Loader/
H A 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/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/
H A 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/codemirror/dist/modes/
H A Dlua.min.js.map1 …\",\"os.tmpname\",\n\n \"package.cpath\",\"package.loaded\",\"package.loaders\",\"package.loadl…
/plugin/pdfjs/pdfjs/build/
H A Dpdf.js.map1 …;\n // For GENERIC build we need to add support for different fake file loaders\n // for differe…
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A 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/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dsource.rst24 The function uses the same template loaders as the ones used to include
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
H A 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/findologicxmlexport/vendor/twig/twig/
H A 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/findologicxmlexport/vendor/twig/twig/doc/
H A 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``::