Home
last modified time | relevance | path

Searched refs:state (Results 1 – 25 of 2032) sorted by relevance

12345678910>>...82

/plugin/asciidocjs/node_modules/character-parser/
Dindex.js28 function parse(src, state, options) { argument
30 state = state || exports.defaultState();
36 parseChar(src[index], state);
43 return state;
51 var state = exports.defaultState();
53 if ((options.ignoreNesting || !state.isNesting(options)) && matches(src, delimiter, index)) {
62 parseChar(src[index], state);
76 function parseChar(character, state) { argument
83 state = state || exports.defaultState();
84 state.src += character;
[all …]
/plugin/diagramsnet/lib/plugins/
Dnumber.js7 …e: 'numbered', dispName: 'Numbered', type: 'bool', defVal: true, isVisible: function(state, format) argument
33 var state = graphViewValidateCellState.apply(this, arguments);
36 if (recurse && state != null && graph.model.isVertex(state.cell) &&
37 mxUtils.getValue(state.style, 'numbered', 1) == 1)
40 this.redrawNumberShape(state);
43 return state;
46 graph.view.redrawNumberShape = function(state) argument
48 var numbered = mxUtils.getValue(state.style, 'numbered', 1) == 1;
52 if (enabled && numbered && graph.model.isVertex(state.cell) &&
53 state.shape != null && state.secondLabel == null)
[all …]
/plugin/sketchcanvas/script/
Djs-yaml.mjs1262 function generateError(state, message) { argument
1264 name: state.filename,
1265 buffer: state.input.slice(0, -1), // omit trailing \0
1266 position: state.position,
1267 line: state.line,
1268 column: state.position - state.lineStart
1276 function throwError(state, message) { argument
1277 throw generateError(state, message);
1280 function throwWarning(state, message) { argument
1281 if (state.onWarning) {
[all …]
/plugin/codemirror/dist/modes/
Dslim.min.js.map1state","maybeBackup","pat","offset","cur","current","idx","search","backUp","length","continueLine…
Dmarkdown.min.js.map1state","f","inline","switchBlock","block","lineIsEmpty","line","test","string","blankLine","linkTi…
Dforth.min.js1state:"",base:10,coreWordList:c,immediateWordList:d,wordList:[]}},token:function(b,c){var d;if(b.e…
Dyaml-frontmatter.min.js.map1state","startState","inner","copyState","token","stream","match","end","sol","style","mode","blank…
Dpug.min.js.map1state","sol","peek","tok","token","eol","yieldStatement","match","doctype","interpolation","interp…
Dasciiarmor.min.js1state=="top"){if(a.sol()&&(d=a.match(/^-----BEGIN (.*)?-----\s*$/))){c.state="headers";c.type=d[1]…
Dasciiarmor.min.js.map1state","m","sol","type","result","eatWhile","next","blankLine","startState","defineMIME"],"mapping…
Dtextile.min.js.map1state","mode","Modes","newLayout","layoutType","spanningLayout","match","RE","handlePhraseModifier…
/plugin/asciidocjs/node_modules/babylon/lib/
Dindex.js413 if (this.state.context.length === 1) {
414 this.state.exprAllowed = true;
418 var out = this.state.context.pop();
420 this.state.context.pop();
421 this.state.exprAllowed = false;
423 this.state.exprAllowed = true;
425 this.state.exprAllowed = !out.isExpr;
430 this.state.exprAllowed = false;
433 if (lineBreak.test(this.input.slice(this.state.end))) {
434 this.state.exprAllowed = true;
[all …]
/plugin/latexport/implementation/
Ddecorator_includer.php35 private $state; variable in DecoratorIncluder
69 $this->state = DecoratorIncluder::NOT_IN_LIST;
96 switch($this->state) {
100 $this->state = DecoratorIncluder::IN_LIST;
110 $this->state = DecoratorIncluder::IN_LIST_NESTED;
114 trigger_error("$this->pageId: listu_open unexpected $this->state");
126 switch($this->state) {
133 $this->state = DecoratorIncluder::IN_ITEM;
138 trigger_error("$this->pageId: listitem_open unexpected - $this->state");
146 switch($this->state) {
[all …]
/plugin/mediasyntax/syntax/
Dteletyper.php33 function handle($match, $state, $pos, Doku_Handler $handler) argument
35 dbglog("entering function ".__FUNCTION__.", match is $match, state is $state, pos is $pos");
36 if ($state == DOKU_LEXER_UNMATCHED) return array($state,$match);
37 if ($state == DOKU_LEXER_ENTER) return array($state,$match);
38 if ($state == DOKU_LEXER_EXIT) return array($state,$match);
46 list($state,$match) = $data;
47 dbglog("state is $state, match is $match");
50 if ($state==DOKU_LEXER_ENTER) $renderer->doc .= "<tt>";
51 if ($state==DOKU_LEXER_UNMATCHED) $renderer->doc .= $match;
52 if ($state==DOKU_LEXER_EXIT) $renderer->doc .= "</tt>";
Dunderline.php35 function handle($match, $state, $pos, Doku_Handler $handler) argument
37 if ($state == DOKU_LEXER_UNMATCHED) return array($state,$match);
38 if ($state == DOKU_LEXER_ENTER) return array($state,$match);
39 if ($state == DOKU_LEXER_EXIT) return array($state,$match);
46 list($state,$match) = $data;
49 if ($state==DOKU_LEXER_ENTER) $renderer->doc .= "<u>";
50 if ($state==DOKU_LEXER_UNMATCHED) $renderer->doc .= $match;
51 if ($state==DOKU_LEXER_EXIT) $renderer->doc .= "</u>";
/plugin/creole/helper/
Deventhandler.php11 protected $state = NULL; variable in creole_syntax_event
18 public function __construct($state, $clazz , $tag) { argument
19 $this->state = $state;
24 public function setState($state) { argument
25 $this->state = $state;
29 return $this->state;
51 if ( $this->state != NULL && $otherState != NULL &&
52 $this->state != $otherState ) {
75 public function __construct($state, $clazz, $tag, $ownState, $ownClazz, $ownTag, $callback) { argument
76 if ( $state == NULL && $clazz == NULL && $tag == NULL ) {
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
DDFASerializer.php36 foreach ($this->dfa->getStates() as $state) {
37 $count = $state->edges === null ? 0 : $state->edges->count();
41 $t = $state->edges[$i];
44 $string .= $this->getStateString($state);
61 protected function getStateString(DFAState $state) : string argument
63 if ($state->equals(ATNSimulator::error())) {
69 $state->isAcceptState ? ':' : '',
70 $state->stateNumber,
71 $state->requiresFullContext ? '^' : ''
74 if ($state->isAcceptState) {
[all …]
/plugin/diagramsnet/lib/js/diagramly/util/
DmxJsCanvas.js115 if ((this.state.fontStyle & mxConstants.FONT_BOLD) == mxConstants.FONT_BOLD)
120 if ((this.state.fontStyle & mxConstants.FONT_ITALIC) == mxConstants.FONT_ITALIC)
125 this.ctx.font = style + this.state.fontSize + 'px ' + this.state.fontFamily;
130 this.states.push(this.state);
131 this.state = mxUtils.clone(this.state);
137 this.state = this.states.pop();
143 this.state.scale *= s;
144 this.state.strokeWidth *= s;
150 this.state.dx += dx;
151 this.state.dy += dy;
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
DATNDeserializer.php338 foreach ($atn->states as $state) {
339 if (!$state instanceof RuleStopState) {
343 $atn->ruleToStopState[$state->ruleIndex] = $state;
344 $atn->ruleToStartState[$state->ruleIndex]->stopState = $state;
409 foreach ($atn->states as $state) {
410 foreach ($state->getTransitions() as $t) {
427 foreach ($atn->states as $state) {
428 if ($state instanceof BlockStartState) {
430 if ($state->endState === null) {
435 if ($state->endState->startState !== null) {
[all …]
/plugin/a2s/
Dsyntax.php71 * @param int $state The state of the handler
76 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
77 switch ($state) {
93 return array($state, $align, null); // odt renderer expects 3 values
99 return array($state, $o->render(), self::$align);
101 return array($state, null, null); // odt renderer expects 3 values
116 list($state, $txtdata, $align) = $data;
117 if( $state == DOKU_LEXER_UNMATCHED ) {
138 return $this->_render_xhtml($renderer, $state, $txtdata );
141 return $this->_render_odt($renderer, $state, $txtdata, $align );
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
DPromise.php12 private $state = self::PENDING; variable in GuzzleHttp\\Promise\\Promise
35 if ($this->state === self::PENDING) {
44 if ($this->state === self::FULFILLED) {
68 if ($this->state === self::FULFILLED) {
78 return $this->state;
83 if ($this->state !== self::PENDING) {
103 if ($this->state === self::PENDING) {
118 private function settle($state, $value) argument
120 if ($this->state !== self::PENDING) {
122 if ($state === $this->state && $value === $this->result) {
[all …]
/plugin/matrixnotifierwas/vendor/guzzlehttp/promises/src/
DPromise.php16 private $state = self::PENDING; variable in GuzzleHttp\\Promise\\Promise
39 if ($this->state === self::PENDING) {
49 if ($this->state === self::FULFILLED) {
75 if ($this->state === self::FULFILLED) {
85 return $this->state;
90 if ($this->state !== self::PENDING) {
108 if ($this->state === self::PENDING) {
123 private function settle(string $state, $value): void argument
125 if ($this->state !== self::PENDING) {
127 if ($state === $this->state && $value === $this->result) {
[all …]
/plugin/amcharts/assets/amcharts/plugins/export/libs/jszip/
Djszip.js4069 var s = strm.state;
4131 if (strm.state.wrap === 1) {
4135 else if (strm.state.wrap === 2) {
5208 if (!strm || !strm.state) {
5215 s = strm.state;
5237 lm_init(strm.state);
5244 if (!strm || !strm.state) { return Z_STREAM_ERROR; }
5245 if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; }
5246 strm.state.gzhead = head;
5286 strm.state = s;
[all …]
/plugin/code3/src/
Dtz.js552 var state = 0; // FSM state variable
584 switch (state) {
586 if ('<' == ch) { state = 1; }
587 if (ch.match(/[\r\n]/)) { state = 13; }
592 state = 7;
595 state = 2;
597 state = 8;
599 state = 9;
601 state = 11;
603 state = 0;
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DStringHashParser.php88 $state = false;
97 if (!$state && $line === '') {
108 $state = trim($line, '- ');
109 if (!isset($ret[$state])) {
110 $ret[$state] = '';
113 } elseif (!$state) {
117 list($state, $line) = explode(':', $line, 2);
121 $state = $this->default;
125 $ret[$state] = $line;
127 $state = false;
[all …]

12345678910>>...82