| /plugin/davcal/vendor/sabre/http/tests/HTTP/ |
| H A D | MessageDecoratorTest.php | 8 protected $outer; variable in Sabre\\HTTP\\MessageDecoratorTest 13 $this->outer = new RequestDecorator($this->inner); 19 $this->outer->setBody('foo'); 21 $this->assertEquals('foo', stream_get_contents($this->outer->getBodyAsStream())); 23 $this->assertEquals('foo', $this->outer->getBodyAsString()); 25 $this->assertEquals('foo', $this->outer->getBody()); 31 $this->outer->setHeaders([ 36 $this->assertEquals(['a' => ['b']], $this->outer->getHeaders()); 38 $this->outer->setHeaders([ 43 $this->assertEquals(['a' => ['b'], 'c' => ['d']], $this->outer->getHeaders()); [all …]
|
| H A D | RequestDecoratorTest.php | 8 protected $outer; variable in Sabre\\HTTP\\RequestDecoratorTest 13 $this->outer = new RequestDecorator($this->inner); 19 $this->outer->setMethod('FOO'); 21 $this->assertEquals('FOO', $this->outer->getMethod()); 27 $this->outer->setUrl('/foo'); 29 $this->assertEquals('/foo', $this->outer->getUrl()); 35 $this->outer->setAbsoluteUrl('http://example.org/foo');
|
| H A D | ResponseDecoratorTest.php | 8 protected $outer; variable in Sabre\\HTTP\\ResponseDecoratorTest 13 $this->outer = new ResponseDecorator($this->inner); 19 $this->outer->setStatus(201); 21 $this->assertEquals(201, $this->outer->getStatus()); 23 $this->assertEquals('Created', $this->outer->getStatusText()); 33 $this->assertEquals((string)$this->inner, (string)$this->outer);
|
| /plugin/photogallery/lightGallery/css/ |
| D | lg-fb-comment-box.css | 4 .lg-outer.fb-comments .lg-img-wrap, .lg-outer.fb-comments .lg-video-cont { 8 .lg-outer.fb-comments .fb-comments { 19 .lg-outer.fb-comments .fb-comments.fb_iframe_widget { 23 .lg-outer.fb-comments .fb-comments.fb_iframe_widget.fb_iframe_widget_loader { 27 .lg-outer.fb-comments .lg-toolbar { 32 .lg-outer.fb-comments .lg-actions .lg-next { 36 .lg-outer.fb-comments .lg-item { 40 .lg-outer.fb-comments .lg-item.lg-complete .lg-img-wrap, .lg-outer.fb-comments .lg-item.lg-complete… 44 .lg-outer.fb-comments .lg-img-wrap, .lg-outer.fb-comments .lg-video-cont { 50 .lg-outer.fb-comments .lg-sub-html { [all …]
|
| D | lg-fb-comment-box.min.css | 1 …outer.fb-comments .fb-comments{height:100%;overflow-y:auto;position:absolute;right:0;top:0;width:4…
|
| D | lightgallery.min.css | 1 …outer .lg-video-cont{vertical-align:middle;display:inline-block}@font-face{font-family:lg;src:url(…
|
| D | lightgallery.css | 145 .lg-outer.lg-right-end .lg-object { 151 .lg-outer.lg-left-end .lg-object { 247 body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object { 260 body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object { 266 .lg-outer .lg-thumb-outer { 280 .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item { 287 .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item { 295 .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb { 299 .lg-outer.lg-thumb-open .lg-thumb-outer { 303 .lg-outer .lg-thumb { [all …]
|
| /plugin/moaieditor/scripts/ |
| D | buttons.js | 11 constructor(outer) { argument 14 this.outer = outer; 29 outer: this, property 53 outer: this, property 62 outer: this property 71 outer: this property 80 outer: this, property 101 outer: this, property 121 outer: this, property 145 outer: this property [all …]
|
| D | highlight_header.js | 9 constructor(outer) { argument 12 this.outer = outer; 43 var outer = moaiEditor.createHTML('<span class="moaied-syntax-header '+type+'"></span>'); 44 outer.append(head); 45 outer.appendChild(inner); 46 outer.append(tail); 47 outer.appendChild(box); 50 content.appendChild(outer);
|
| D | selection.js | 9 constructor(outer) { argument 12 this.outer = outer; 27 if (!this.outer.enabled) 52 const start = this.outer.textarea.selectionStart; 53 const end = this.outer.textarea.selectionEnd; 62 const string = this.outer.watcher.string; 70 for (let line of this.outer.watcher.lines) {
|
| D | preview.js | 75 constructor (outer) { argument 76 this.outer = outer; 81 return moaiEditor.scroll.tools.getMaxScrollY(this.outer.container); 85 return this.outer.container.scrollTop; 88 this.outer.container.scrollTop = value; 99 this.outer.container.style.scrollBehavior = value;
|
| D | ajax.js | 9 constructor(outer) { argument 12 this.outer = outer; 133 constructor (outer) { argument 136 this.outer = outer; 167 this.outer.request();
|
| D | mirror.js | 432 constructor (outer) { argument 433 this.outer = outer; 439 return moaiEditor.scroll.tools.getMaxScrollY(this.outer.textarea); 443 return this.outer.mirror.scrollHeight; 447 return this.outer.textarea.scrollTop; 451 this.outer.mirror.scrollTop = value; 452 this.outer.textarea.scrollTop = value; 463 this.outer.mirror.style.scrollBehavior = value; 464 …this.outer.textarea.style.scrollBehavior = value; // This was commented before to avoid Firefo… 472 const scroll = Math.floor(this.outer.textarea.scrollTop); [all …]
|
| D | highlight.js | 9 constructor(outer) { argument 12 this.outer = outer;
|
| D | watcher.js | 25 constructor(outer) { argument 28 this.outer = outer; 40 if (!this.outer.enabled) 133 this.outer.onTextChanged(data);
|
| /plugin/moaieditor/plugins/codemirror/ |
| D | cm_scroll.js | 20 constructor(outer) { argument 23 this.outer = outer; 35 const info = this.outer.editor.getScrollInfo(); 42 return this.outer.editor.getScrollInfo().height; 46 return this.outer.editor.getScrollInfo().top; 49 this.outer.scroller.scrollTop = value; 61 this.outer.scroller.style.scrollBehavior = value; 65 const vp = this.outer.editor.getViewport(); 83 const info = this.outer.editor.getScrollInfo();
|
| D | cm_watcher.js | 10 this.string = this.outer.editor.getValue(); 23 msg += parseInt(this.outer.editor.heightAtLine(423, 'local')); 31 const vp = this.outer.editor.getViewport();
|
| /plugin/moaieditor/scripts/match/ |
| D | matcher.js | 7 constructor(outer) { argument 9 this.matches = outer; 124 constructor(outer) { argument 127 this.outer = outer; 128 this.tools = outer.tools; 154 var prevLine = this.outer.headers.nodes[this.section.prevHeaderIdx]?.matchline; 155 var nextLine = this.outer.headers.nodes[this.section.nextHeaderIdx]?.matchline; 157 if (nextLine === undefined) nextLine = this.outer.lines.length; 168 const line = this.outer.lines[i]; 204 constructor(outer) { argument [all …]
|
| D | match_paragraphs.js | 7 constructor(outer) { argument 8 this.outer = outer; 9 this.tools = outer.tools; 16 for (let node of this.outer.section.nodes) 26 for (let block of this.outer.blocks) 85 const startline = this.outer.startline + score.block.start; 86 const endline = this.outer.startline + score.block.end; 87 this.outer.outer.matches.add (type, handle, startline, endline, 'paragraph');
|
| /plugin/revealjs/css/theme/template/ |
| D | mixins.scss | 21 @mixin radial-gradient( $outer, $inner, $type: circle ) { parameter 22 background: $outer; 23 background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 24 … radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) ); 25 background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 26 background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 27 background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 28 background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
| /plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
| D | DumperTest.php | 292 $outer = new \ArrayObject(['outer1' => 'a', 'outer2' => $inner]); 294 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); 311 $outer = new \ArrayObject(['a', $inner]); 313 $yaml = $this->dumper->dump($outer, 0, 0, Yaml::DUMP_OBJECT_AS_MAP); 324 $outer = new \ArrayObject(['a', $inner]); 325 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); 358 $outer = new \stdClass(); 359 $outer->outer1 = 'a'; 360 $outer->outer2 = $inner; 362 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP);
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Util/ |
| D | FilesystemUtils.php | 27 $outer = new \RecursiveIteratorIterator($inner, \RecursiveIteratorIterator::SELF_FIRST); 30 foreach ($outer as $file) { 37 $files = iterator_to_array($outer);
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ |
| D | JumbledIncrementerSniff.php | 83 $outer = $this->findIncrementers($tokens, $token); 86 if (count($outer) === 0) { 100 $diff = array_intersect($outer, $inner);
|
| /plugin/markdownextra/lib/meltdown/js/ |
| D | jquery.meltdown.js | 77 var controlList, example, control, tuple, t, groupClass, group, outer, tmpThis; 100 function addClickHandler(outer) { argument 101 outer.on('click', function () { 114 outer = jQuery('<li />'); 118 outer.addClass(name + '_controlgroup ' + groupClass); 119 …outer.append('<span>' + t.example.groupLabel + ' <i class="meltdown-icon-caret-down"></i></span><b… 120 outer.append(group); 121 controls.append(outer); 124 addClickHandler(outer);
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | _lazyValue.js | 41 outer: 58 continue outer; 60 break outer;
|