Home
last modified time | relevance | path

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

12345678910>>...84

/plugin/diagramsnet/lib/plugins/
H A Dnumber.js36 if (recurse && state != null && graph.model.isVertex(state.cell) &&
43 return state;
53 state.shape != null && state.secondLabel == null)
59 state.secondLabel.size = 12;
61 graph.cellRenderer.initializeLabel(state, state.secondLabel);
69 state.secondLabel = null;
74 var bounds = new mxRectangle(state.x + state.width - 4 * scale, state.y + 4 * scale, 0, 0);
76 state.secondLabel.state = state;
79 state.secondLabel.redraw();
93 state.secondLabel = null;
[all …]
/plugin/latexport/implementation/
H A Ddecorator_includer.php35 private $state; variable in DecoratorIncluder
96 switch($this->state) {
100 $this->state = DecoratorIncluder::IN_LIST;
126 switch($this->state) {
133 $this->state = DecoratorIncluder::IN_ITEM;
146 switch($this->state) {
165 switch($this->state) {
168 $this->state = DecoratorIncluder::IN_ITEM;
189 switch($this->state) {
213 switch($this->state) {
[all …]
/plugin/codemirror/dist/modes/
H A Dslim.min.js.map1state","maybeBackup","pat","offset","cur","current","idx","search","backUp","length","continueLine…
H A Dmarkdown.min.js.map1state","f","inline","switchBlock","block","lineIsEmpty","line","test","string","blankLine","linkTi…
H A Dforth.min.js1state:"",base:10,coreWordList:c,immediateWordList:d,wordList:[]}},token:function(b,c){var d;if(b.e…
H A Dyaml-frontmatter.min.js.map1state","startState","inner","copyState","token","stream","match","end","sol","style","mode","blank…
H A Dasciiarmor.min.js1state=="top"){if(a.sol()&&(d=a.match(/^-----BEGIN (.*)?-----\s*$/))){c.state="headers";c.type=d[1]…
H A Dpug.min.js.map1state","sol","peek","tok","token","eol","yieldStatement","match","doctype","interpolation","interp…
H A Dasciiarmor.min.js.map1state","m","sol","type","result","eatWhile","next","blankLine","startState","defineMIME"],"mapping…
H A Dtextile.min.js.map1state","mode","Modes","newLayout","layoutType","spanningLayout","match","RE","handlePhraseModifier…
/plugin/mediasyntax/syntax/
H A Dteletyper.php33 function handle($match, $state, $pos, Doku_Handler $handler)
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,
44 handle($match, $state, $pos, Doku_Handler $handler) global() argument
[all...]
H A Dunderline.php35 function handle($match, $state, $pos, Doku_Handler $handler)
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; argument
49 if ($state==DOKU_LEXER_ENTER) $renderer->doc .= "<u>";
50 if ($state
[all...]
/plugin/creole/helper/
H A 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;
52 $this->state != $otherState ) {
145 $state = strtolower($state);
165 if ( $state == 'open' ) {
168 if ( $state == 'close' ) {
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFASerializer.php35 /** @var DFAState $state */
36 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
[all...]
/plugin/diagramsnet/lib/js/diagramly/util/
H A DmxJsCanvas.js125 this.ctx.font = style + this.state.fontSize + 'px ' + this.state.fontFamily;
131 this.state = mxUtils.clone(this.state);
143 this.state.scale *= s;
150 this.state.dx += dx;
151 this.state.dy += dy;
159 cx -= this.state.dx;
160 cy -= this.state.dy;
203 var s = this.state;
293 if (this.state.dashed)
372 this.setShadowOffset(this.state.shadowDx, this.state.shadowDy);
[all …]
/plugin/a2s/
H A Dsyntax.php71 * @param int $state The state of the handler
76 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
77 switch ($state) {
99 return array($state, $o->render(), self::$align);
116 list($state, $txtdata, $align) = $data;
117 if( $state == DOKU_LEXER_UNMATCHED ) {
138 return $this->_render_xhtml($renderer, $state, $txtdata );
151 * @param int $state The state
157 switch ($state) {
173 * @param int $state The state
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNDeserializer.php270 // state instances have been initialized
338 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) {
599 stateIsEndStateFor(ATNState $state, int $idx) global() argument
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DPromise.php12 private $state = self::PENDING; variable in GuzzleHttp\\Promise\\Promise
35 if ($this->state === self::PENDING) {
44 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
122 if ($state === $this->state && $value === $this->result) {
125 throw $this->state === $state
127 : new \LogicException("Cannot change a {$this->state} promise to {$state}");
[all …]
/plugin/code3/src/
H A Dtz.js584 switch (state) {
592 state = 7;
692 if (1 == state || 13 == state) { tokenStart = k + i; }
778 state = 1;
825 if (3 > state || state > 6) {
838 switch (state) {
860 var state = 0;
974 state = 0;
982 state = nstate;
1004 var state = 0;
[all …]
/plugin/amcharts/assets/amcharts/plugins/export/libs/jszip/
H A Djszip.js5825 state = strm.state;
6243 state = strm.state;
6270 state = strm.state;
6284 state = strm.state;
6323 strm.state = state;
6401 var state = strm.state;
6473 state = strm.state;
7010 while (state.have < state.nlen + state.ndist) {
7145 …ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opt…
7539 var state = strm.state;
[all …]
/plugin/diagramsnet/lib/js/diagramly/
H A DDevTools.js29 var state = this.view.getState(cell);
31 if (state != null && state.absolutePoints != null)
33 tip += 'abspoints(' + state.absolutePoints.length + ')=';
35 for (var i = 0; i < state.absolutePoints.length; i++)
37 … tip += parseFloat(state.absolutePoints[i].x) + ',' + parseFloat(state.absolutePoints[i].y) + ';';
59 if (state != null)
61 tip += '<br>pos=' + parseFloat(state.x) + ',' + parseFloat(state.y) + '<br>' +
62 'size=' + parseFloat(state.width) + 'x' + parseFloat(state.height);
/plugin/odt/ODT/
H A DODTList.php28 $params->document->state->enter($list);
38 $table = $params->document->state->getCurrentTable();
44 if ($params->document->state->getInListItem()) {
54 $list = $params->document->state->getCurrentList();
58 $params->document->state->leave();
62 $list = $params->document->state->getCurrentList();
74 if (!isset($params->document->state)) {
98 $params->document->state->enter($list_item);
114 if ($params->document->state->getInListContent()) {
130 if ( !isset($params->document->state) ) {
[all …]
/plugin/dirtylittlehelper/mermaid/editor/src/
H A Dcode-store.js19 let state; variable
23 state = JSON.parse(stateStr);
26 state = defaultState;
28 codeStore.set({ ...state, updateEditor: true });
34 const state = get(codeStore);
35 codeStore.set({ ...state, code, updateEditor });
38 const state = get(codeStore);
39 codeStore.set({ ...state, mermaid: config, updateEditor });
42 const unsubscribe = codeStore.subscribe((state) => {
45 `/${currentLocation || 'edit'}/` + Base64.encodeURI(JSON.stringify(state))
/plugin/ckgdoku/syntax/
H A Dspecials.php71 function handle($match, $state, $pos, Doku_Handler $handler){ argument
75 switch($state) {
78 return array($state, "<span class='multi_p_open'></span>" );
81 return array($state, "<span class='multi_p_close'></span>" );
84 return array($state, "" );
86 case DOKU_LEXER_ENTER : return array($state, '');
90 return array($state, $match);
91 case DOKU_LEXER_EXIT : return array($state, '');
93 return array($state, "" );
102 list($state, $xhtml) = $data;
[all …]
/plugin/ckgedit/syntax/
H A Dspecials.php70 function handle($match, $state, $pos, Doku_Handler $handler){ argument
74 switch($state) {
77 return array($state, "<span class='multi_p_open'></span>" );
80 return array($state, "<span class='multi_p_close'></span>" );
83 return array($state, "" );
85 case DOKU_LEXER_ENTER : return array($state, '');
89 return array($state, $match);
90 case DOKU_LEXER_EXIT : return array($state, '');
92 return array($state, "" );
101 list($state, $xhtml) = $data;
[all …]

12345678910>>...84