Home
last modified time | relevance | path

Searched refs:state (Results 101 – 125 of 2205) sorted by relevance

12345678910>>...89

/plugin/bez/db/
H A Dupdate0011.sql13 CASE WHEN thread.state = 'proposal' THEN 0
14 WHEN thread.state = 'opened' AND thread.task_count = 0 THEN 1
15 WHEN thread.state = 'opened' THEN 2
16 WHEN thread.state = 'closed' THEN 3
17 WHEN thread.state = 'rejected' THEN 4 END AS sort,
18 CASE WHEN thread.state = 'opened' AND thread.task_count > 0 AND thread.task_count = thread.task_count_closed THEN 'done'
19 ELSE thread.state END AS state,
/plugin/bbcode/
H A Dquote.php29 function handle($match, $state, $pos, Doku_Handler $handler) { argument
30 switch ($state) {
33 return array($state, $match[1]);
36 return array($state, $match);
39 return array($state, '');
50 list($state, $match) = $data;
51 switch ($state) {
H A Dolist.php29 function handle($match, $state, $pos, Doku_Handler $handler) { argument
30 switch ($state) {
35 return array($state, $match[0]);
38 return array($state, $match);
41 return array($state, '');
52 list($state, $match) = $data;
53 switch ($state) {
H A Dsize.php29 function handle($match, $state, $pos, Doku_Handler $handler) { argument
30 switch ($state) {
36 return array($state, $match);
39 return array($state, $match);
42 return array($state, '');
53 list($state, $match) = $data;
54 switch ($state) {
/plugin/alertbox/
H A Dsyntax.php22 function handle($match, $state, $pos, &$handler){ argument
23 switch ($state) {
36 return array($state, $alerttype);
38 case DOKU_LEXER_UNMATCHED : return array($state, $match);
39 case DOKU_LEXER_EXIT : return array($state, '');
47 list($state, $match) = $data;
48 switch ($state) {
/plugin/alphalist2/
H A Dsyntax.php23 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
24 switch ($state) {
28 return array($state, $classes);
30 case DOKU_LEXER_UNMATCHED : return array($state, $match);
31 case DOKU_LEXER_EXIT : return array($state, '');
42 list($state, $match) = $data;
43 switch ($state) {
/plugin/ggb/
H A Dsyntax.php31 function handle($match, $state, $pos, Doku_Handler $handler){ argument
32 switch ($state) {
37 return array($state, $height);
40 return array($state, $match);
42 return array($state, '');
52 list($state, $match) = $data;
53 switch ($state) {
/plugin/codemirror/dist/modes/
H A Dphp.min.js.map1state","patterns","match","tokenize","slice","closing","phpString_","escaped","eol","tokStack","po…
H A Ddjango.min.js.map1state","match","tokenize","inVariable","inTag","inComment","next","inString","delimiter","previous…
/plugin/diagramsnet/lib/js/grapheditor/
H A DGraph.js338 start.state = state;
465 var state = start.state;
665 new mxRectangle(state.x + state.width - 2, state.y, 2, state.height)))
671 new mxRectangle(state.x, state.y + state.height - 2, state.width, 3)))
4245 if (state != null && state.text != null && state.text.node != null)
7651 geo.x = state.x / state.view.scale - state.view.translate.x;
7652 geo.y = state.y / state.view.scale - state.view.translate.y;
8929 (state == null || (state.text == null || state.text.node == null ||
12869 if (state != null && state.width < 2 && state.height < 2 && state.text != null &&
12933 this.state == null || this.state.width >= 2 || this.state.height >= 2)
[all …]
/plugin/fontcolor/
H A Dsyntax.php88 * @param int $state The lexer state for the match
93 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
94 switch($state) {
99 return array($state, $color);
108 return array($state, "#ffff00");
122 list($state, $color) = $data;
123 switch($state) {
135 list($state, $color) = $data;
136 switch($state) {
/plugin/combo/ComboStrap/Tag/
H A DFollowTag.php34 public static function renderSpecialEnterNode(TagAttributes $tagAttributes, $state): string argument
45 return self::returnErrorString($message, $state);
55 return self::returnErrorString($message, $state);
66 return self::returnErrorString($message, $state);
81 return self::returnErrorString($message, $state);
92 return self::returnErrorString($message,$state);
95 if ($state === DOKU_LEXER_SPECIAL) {
102 private static function returnErrorString($message, $state): string argument
106 if ($state === DOKU_LEXER_SPECIAL) {
/plugin/fontsize2/
H A Dsyntax.php45 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
46 switch ($state) {
49 if ( $this->_isValid($fs[1]) ) return array($state, $fs[1]);
54 return array($state, $match);
61 return array($state, "1em");
67 list($state, $fs) = $data;
68 switch ($state) {
/plugin/diagramsnet/lib/js/diagramly/util/
H A DmxAsyncCanvas.js69 if ((this.state.fontStyle & mxConstants.FONT_BOLD) == mxConstants.FONT_BOLD)
74 if ((this.state.fontStyle & mxConstants.FONT_ITALIC) == mxConstants.FONT_ITALIC)
79 this.ctx.font = style + this.state.fontSize + 'px ' + this.state.fontFamily;
88 this.state.alpha = alpha;
93 this.state.fontColor = value;
103 this.state.fontBackgroundColor = value;
113 this.state.fontBorderColor = value;
118 this.state.fontSize = value;
123 this.state.fontFamily = value;
128 this.state.fontStyle = value;
[all …]
/plugin/floatdiv/syntax/
H A Dfloat.php46 public function handle($match, $state, $pos, &$handler){ argument
48 switch ($state){
62 return array ($state,$side[1],$width[1],$size[1],$background[1]);
63 case DOKU_LEXER_UNMATCHED : return array($state, $match);
64 case DOKU_LEXER_EXIT : return array($state, '');
72 list($state,$match) = $data;
74 switch($state) {
76 list($state, $side,$width,$size,$background) = $data;
/plugin/syntaxhighlightjs/syntax/
H A Dsxh.php70 * @param int $state The state of the handler
75 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
78 switch ($state) {
82 return array($state, $data);
89 return array($state, '');
105 list($state, $data) = $_data;
109 switch ($state) {
116 if ($state == DOKU_LEXER_SPECIAL) $renderer->doc .= '</code></pre>';
/plugin/combo/syntax/
H A Dstrong.php107 * @param int $state
112 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
114 switch ($state) {
120 PluginUtility::STATE => $state,
140 $state = $data[PluginUtility::STATE];
141 switch ($state) {
164 $state = $data[PluginUtility::STATE];
165 if ($state == DOKU_LEXER_UNMATCHED) {
H A Dcodemarkdown.php129 * @param int $state
136 function handle($match, $state, $pos, Doku_Handler $handler) argument
139 switch ($state) {
147 PluginUtility::STATE => $state,
158 return array(PluginUtility::STATE => $state);
183 $state = $data [PluginUtility::STATE];
184 switch ($state) {
211 $state = $data [PluginUtility::STATE];
212 if ($state == DOKU_LEXER_UNMATCHED) {
/plugin/txt2tags/
H A Dsyntax.php40 function handle($match, $state, $pos, &$handler) { argument
41 switch ($state) {
42 case DOKU_LEXER_ENTER : return array($state, '');
50 return array($state, $html);
51 case DOKU_LEXER_EXIT : return array($state, '');
53 return array($state,'');
60 list($state,$match) = $data;
61 switch ($state) {
73 list($state,$match) = $data;
74 switch ($state) {
/plugin/fontfamily/
H A Dsyntax.php46 function handle($match, $state, $pos, Doku_Handler $handler) argument
48 switch ($state)
52 if ( $this->_isValid($ff[1]) ) return array($state, $ff[1]);
57 return array($state, $match);
64 return array($state, "");
70 list($state, $ff) = $data;
71 switch ($state) {
/plugin/highlight/
H A Dsyntax.php47 function handle($match, $state, $pos, Doku_Handler $handler){ argument
48 switch ($state) {
51 if ( $this->_isValid($color[1]) ) return array($state, $color[1]);
56 return array($state, $match);
63 return array($state, "#ff0");
69 list($state, $color) = $data;
70 switch ($state) {
/plugin/javadoc/
H A Dsyntax.php70 function handle($match, $state, $pos, Doku_Handler $handler){ argument
71 switch ($state) {
75 return array($state, "jdk");
79 return array($state, 'jdk');
82 return array($state, $site);
85 return array($state, $match);
87 return array($state);
134 list($state, $data) = $indata;
135 switch ($state) {
/plugin/fkstimer/
H A Dsyntax.php25 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
27 switch ($state) {
31 return [$state, ['date' => $dateString]];
33 return [$state, []];
40 list($state, $params) = $data;
41 switch ($state) {
/plugin/sincetil/
H A Dsyntax.php27 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
28 switch ($state) {
30 return array($state, '');
32 return array($state, $match);
34 return array($state, '');
46 list($state,$match) = $data;
47 switch ($state) {
/plugin/blockquote/syntax/
H A Dcite.php48 function handle($match, $state, $pos, Doku_Handler $handler) { argument
50 switch ($state) {
55 $state,
61 $state,
67 $state,
76 list ($state, $data) = $indata;
78 switch ($state) {

12345678910>>...89