Home
last modified time | relevance | path

Searched full:this (Results 1 – 25 of 12895) sorted by relevance

12345678910>>...516

/plugin/jsonrpc/
DIJR_CallbackDefines.php16 $this->obj['method'] = 'dokuwiki.getVersion';
17 $this->obj['callback'] = 'getVersion';
18 $this->obj['args'] = array('string');
19 $this->obj['help'] = 'Returns the running DokuWiki version.';
20 $this->methods[] = $this->obj;
22 $this->obj['method'] = 'dokuwiki.login';
23 $this->obj['callback'] = 'this:login';
24 $this->obj['args'] = array('integer','string','string');
25 $this->obj['help'] = 'Tries to login with the given credentials and sets auth cookies.';
26 $this->methods[] = $this->obj;
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn_loose.js5 }(this, function (exports,acorn) { 'use strict';
15 this.toks = acorn.tokenizer(input, options)
16 this.options = this.toks.options
17 this.input = this.toks.input
18 this.tok = this.last = {type: acorn.tokTypes.eof, start: 0, end: 0}
19 if (this.options.locations) {
20 var here = this.toks.curPosition()
21 this.tok.loc = new acorn.SourceLocation(this.toks, here, here)
23 this.ahead = [] // Tokens ahead
24 this.context = [] // Indentation contexted
[all …]
Dacorn_loose.es.js9 this.toks = tokenizer(input, options)
10 this.options = this.toks.options
11 this.input = this.toks.input
12 this.tok = this.last = {type: tokTypes.eof, start: 0, end: 0}
13 if (this.options.locations) {
14 var here = this.toks.curPosition()
15 this.tok.loc = new SourceLocation(this.toks, here, here)
17 this.ahead = [] // Tokens ahead
18 this.context = [] // Indentation contexted
19 this.curIndent = 0
[all …]
/plugin/asciidocjs/node_modules/acorn/dist/
Dacorn_loose.js5 }(this, (function (exports,__acorn) { 'use strict';
13 this.toks = __acorn.tokenizer(input, options)
14 this.options = this.toks.options
15 this.input = this.toks.input
16 this.tok = this.last = {type: __acorn.tokTypes.eof, start: 0, end: 0}
17 if (this.options.locations) {
18 var here = this.toks.curPosition()
19 this.tok.loc = new __acorn.SourceLocation(this.toks, here, here)
21 this.ahead = [] // Tokens ahead
22 this.context = [] // Indentation contexted
[all …]
Dacorn_loose.es.js9 this.toks = tokenizer(input, options)
10 this.options = this.toks.options
11 this.input = this.toks.input
12 this.tok = this.last = {type: tokTypes.eof, start: 0, end: 0}
13 if (this.options.locations) {
14 var here = this.toks.curPosition()
15 this.tok.loc = new SourceLocation(this.toks, here, here)
17 this.ahead = [] // Tokens ahead
18 this.context = [] // Indentation contexted
19 this.curIndent = 0
[all …]
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dstatement.js8 let node = this.startNodeAt(this.options.locations ? [0, getLineInfo(this.input, 0)] : 0)
10 while (this.tok.type !== tt.eof) node.body.push(this.parseStatement())
11 this.last = this.tok
12 if (this.options.ecmaVersion >= 6) {
13 node.sourceType = this.options.sourceType
15 return this.finishNode(node, "Program")
19 let starttype = this.tok.type, node = this.startNode(), kind
21 if (this.toks.isLet()) {
28 this.next()
30 if (this.semicolon() || this.canInsertSemicolon()) {
[all …]
Dexpression.js15 expr.expression = this.checkLVal(expr.expression)
19 return this.dummyIdent()
24 let start = this.storeCurrentPos()
25 let expr = this.parseMaybeAssign(noIn)
26 if (this.tok.type === tt.comma) {
27 let node = this.startNodeAt(start)
29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn))
30 return this.finishNode(node, "SequenceExpression")
36 this.pushCx()
37 this.expect(tt.parenL)
[all …]
/plugin/bez/lib/jquery.datepair/
H A Ddatepair.min.js7this.dateDelta=null,this.timeDelta=null,this._defaults={startClass:"start",endClass:"end",timeClas…
H A Ddatepair.js49 this.dateDelta = null;
50 this.timeDelta = null;
51 this._defaults = {
80 this.container = container;
81 this.settings = simpleExtend(this._defaults, options);
83this.startDateInput = this.container.querySelector('.'+this.settings.startClass+'.'+this.settings.…
84this.endDateInput = this.container.querySelector('.'+this.settings.endClass+'.'+this.settings.date…
85this.startTimeInput = this.container.querySelector('.'+this.settings.startClass+'.'+this.settings.…
86this.endTimeInput = this.container.querySelector('.'+this.settings.endClass+'.'+this.settings.time…
89 this.refresh();
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dstatement.js8 let node = this.startNodeAt(this.options.locations ? [0, getLineInfo(this.input, 0)] : 0)
10 while (this.tok.type !== tt.eof) node.body.push(this.parseStatement())
11 this.last = this.tok
12 if (this.options.ecmaVersion >= 6) {
13 node.sourceType = this.options.sourceType
15 return this.finishNode(node, "Program")
19 let starttype = this.tok.type, node = this.startNode(), kind
21 if (this.toks.isLet()) {
28 this.next()
30 if (this.semicolon() || this.canInsertSemicolon()) {
[all …]
Dexpression.js15 expr.expression = this.checkLVal(expr.expression)
19 return this.dummyIdent()
24 let start = this.storeCurrentPos()
25 let expr = this.parseMaybeAssign(noIn)
26 if (this.tok.type === tt.comma) {
27 let node = this.startNodeAt(start)
29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn))
30 return this.finishNode(node, "SequenceExpression")
36 this.pushCx()
37 this.expect(tt.parenL)
[all …]
/plugin/s5reloaded/ui/effects_support/
Dslider.js18 var slider = this;
21 this.handles = handle.collect( function(e) { return $(e) });
23 this.handles = [$(handle)];
26 this.track = $(track);
27 this.options = options || { };
29 this.axis = this.options.axis || 'horizontal';
30 this.increment = this.options.increment || 1;
31 this.step = parseInt(this.options.step || '1');
32 this.range = this.options.range || $R(0,1);
34 this.value = 0; // assure backwards compat
[all …]
Dcontrols.js15 // that's independent of the data source for autocompletion. This
21 // the text inside the monitored textbox changes. This method
23 // invoking this.getToken(), NOT by directly accessing
24 // this.element.value. This is to allow incremental tokenized
35 // enables autocompletion on multiple tokens. This is most
46 this.element = element;
47 this.update = $(update);
48 this.hasFocus = false;
49 this.changed = false;
50 this.active = false;
[all …]
/plugin/conflictmerger/tests/
Dacceptance.test.php13 var $editButton = 'Edit this page';
27 $this->basePageName = WEB_TEST_URL . '/doku.php?id=testConflictMerger&';
29 $this->secondUser = &$this->createBrowser();
31 $this->get($this->basePageName . 'do=edit');
32 $this->setField($this->textField, "First line\n\nSecond line\n\nThird line");
33 $this->click($this->saveButton);
37 unset($this->secondUser);
39 $this->get($this->basePageName . 'do=edit');
40 $this->setField($this->textField, '');
41 $this->click($this->saveButton);
[all …]
/plugin/bibtex/OSBib/
DSTYLEMAP.php8 Do whatever you like with this -- some credit to the author(s) would be appreciated.
20 $this->loadMap();
33 * for examples of how WIKINDX does this. The comments below relate to how WIKINDX stores such valu…
48 * What fields are available to the in-text citation template? This array should NOT be changed.
50 * releases will implement this.
52 $this->citation = array(
65 $this->types = array(
109 $this->basic = array(
116 * array (SQL row) you submit to $this->bibformat->preProcess() MUST use these fields for the creato…
127 * exist in the array and must have a null key (e.g. $this->book[] = 'publisherName'; in the case of…
[all …]
DSTYLEMAPBIBTEX.php8 Do whatever you like with this -- some credit to the author(s) would be appreciated.
17 * This mapping class is specific to BibTeX for those databases that store or access their data in a…
30 * See the README for details on how to use this
36 $this->loadMap();
49 * for examples of how WIKINDX does this. The comments below relate to how WIKINDX stores such valu…
64 * What fields are available to the in-text citation template? This array should NOT be changed.
66 * releases will implement this.
68 $this->citation = array(
81 $this->types = array(
125 $this->basic = array(
[all …]
/plugin/latexport/_test/
Ddecorator_tables.test.php22 $this->decoratorMock = new DecoratorMock();
23 $this->decoratorTables = new DecoratorTables($this->decoratorMock);
27 $this->decoratorTables->p_close();
28 $this->decoratorTables->table_open(3, 0, 0);
29 $this->decoratorTables->p_close();
30 $this->decoratorTables->table_close();
31 $this->decoratorTables->p_close();
33 $this->assertEquals(new CommandPClose(), $this->decoratorMock->nextCommand());
34 $this->assertEquals(new CommandTableOpen(3, 0, 0), $this->decoratorMock->nextCommand());
35 $this->assertEquals(new CommandLinebreak(), $this->decoratorMock->nextCommand());
[all …]
Ddecorator_includer.test.php28 $this->includes = new SplQueue();
29 $this->decoratorMock = new DecoratorMock();
30 $this->decoratorIncluder = new DecoratorIncluder($this->includes, $this->decoratorMock);
34 $this->decoratorIncluder->listu_open();
35 $this->decoratorIncluder->listitem_open(1);
36 $this->decoratorIncluder->listcontent_open();
38 $this->decoratorIncluder->cdata(' ');
39 $this->decoratorIncluder->internallink(DecoratorIncluderTest::LINK, DecoratorIncluderTest::TITLE);
41 $this->decoratorIncluder->listcontent_close();
42 $this->decoratorIncluder->listitem_close();
[all …]
/plugin/asciidocjs/node_modules/acorn/src/
Dexpression.js31 if (this.options.ecmaVersion >= 6 && (prop.computed || prop.method || prop.shorthand))
40 if (this.options.ecmaVersion >= 6) {
42 if (propHash.proto) this.raiseRecoverable(key.start, "Redefinition of __proto__ property")
51 if ((this.strict || isGetSet) && other[kind] || !(isGetSet ^ other.init))
52 this.raiseRecoverable(key.start, "Redefinition of property")
79 let startPos = this.start, startLoc = this.startLoc
80 let expr = this.parseMaybeAssign(noIn, refDestructuringErrors)
81 if (this.type === tt.comma) {
82 let node = this.startNodeAt(startPos, startLoc)
84 …while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn, refDestructuringError…
[all …]
Dstatement.js19 while (this.type !== tt.eof) {
20 let stmt = this.parseStatement(true, true, exports)
23 this.next()
24 if (this.options.ecmaVersion >= 6) {
25 node.sourceType = this.options.sourceType
27 return this.finishNode(node, "Program")
33 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false
34 skipWhiteSpace.lastIndex = this.pos
35 let skip = skipWhiteSpace.exec(this.input)
36 let next = this.pos + skip[0].length, nextCh = this.input.charCodeAt(next)
[all …]
Dtokenize.js8 // simply exist as properties on the parser object. This is only
13 this.type = p.type
14 this.value = p.value
15 this.start = p.start
16 this.end = p.end
18 this.loc = new SourceLocation(p, p.startLoc, p.endLoc)
20 this.range = [p.start, p.end]
34 if (this.options.onToken)
35 this.options.onToken(new Token(this))
37 this.lastTokEnd = this.end
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dtokenize.js8 // simply exist as properties on the parser object. This is only
13 this.type = p.type
14 this.value = p.value
15 this.start = p.start
16 this.end = p.end
18 this.loc = new SourceLocation(p, p.startLoc, p.endLoc)
20 this.range = [p.start, p.end]
34 if (this.options.onToken)
35 this.options.onToken(new Token(this))
37 this.lastTokEnd = this.end
[all …]
Dstatement.js19 while (this.type !== tt.eof) {
20 let stmt = this.parseStatement(true, true)
23 if (this.isUseStrict(stmt)) this.setStrict(true)
27 this.next()
28 if (this.options.ecmaVersion >= 6) {
29 node.sourceType = this.options.sourceType
31 return this.finishNode(node, "Program")
37 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false
38 skipWhiteSpace.lastIndex = this.pos
39 let skip = skipWhiteSpace.exec(this.input)
[all …]
Dexpression.js31 if (this.options.ecmaVersion >= 6 && (prop.computed || prop.method || prop.shorthand))
40 if (this.options.ecmaVersion >= 6) {
42 if (propHash.proto) this.raiseRecoverable(key.start, "Redefinition of __proto__ property")
51 if ((this.strict || isGetSet) && other[kind] || !(isGetSet ^ other.init))
52 this.raiseRecoverable(key.start, "Redefinition of property")
79 let startPos = this.start, startLoc = this.startLoc
80 let expr = this.parseMaybeAssign(noIn, refDestructuringErrors)
81 if (this.type === tt.comma) {
82 let node = this.startNodeAt(startPos, startLoc)
84 …while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn, refDestructuringError…
[all …]
/plugin/diagramsnet/lib/js/diagramly/vsdx/
DbmpDecoder.js9 this.pos = 0;
10 this.buffer = buffer;
11 this.is_with_alpha = !!is_with_alpha;
13 if (this.buffer[0] != 66 && this.buffer[1] != 77) throw new Error("Invalid BMP File");
14 this.pos += 2;
15 this.parseHeader();
16 this.parseBGR();
20 var b = this.buffer;
21this.fileSize = (b[this.pos+3] << 24) | (b[this.pos+2] << 16) | (b[this.pos+1] << 8) | b[this.pos];
22 this.pos += 4;
[all …]

12345678910>>...516