Home
last modified time | relevance | path

Searched refs:pos (Results 1 – 25 of 1825) sorted by relevance

12345678910>>...73

/plugin/diagramsnet/lib/js/diagramly/vsdx/
DbmpDecoder.js9 this.pos = 0;
14 this.pos += 2;
21 …this.fileSize = (b[this.pos+3] << 24) | (b[this.pos+2] << 16) | (b[this.pos+1] << 8) | b[this.pos];
22 this.pos += 4;
23 …this.reserved = (b[this.pos+3] << 24) | (b[this.pos+2] << 16) | (b[this.pos+1] << 8) | b[this.pos];
24 this.pos += 4;
25 this.offset = (b[this.pos+3] << 24) | (b[this.pos+2] << 16) | (b[this.pos+1] << 8) | b[this.pos];
26 this.pos += 4;
27 …this.headerSize = (b[this.pos+3] << 24) | (b[this.pos+2] << 16) | (b[this.pos+1] << 8) | b[this.po…
28 this.pos += 4;
[all …]
/plugin/asciidocjs/node_modules/acorn/src/
Dtokenize.js76 this.start = this.pos
78 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
94 let code = this.input.charCodeAt(this.pos)
96 let next = this.input.charCodeAt(this.pos + 1)
102 let start = this.pos, end = this.input.indexOf("*/", this.pos += 2)
103 if (end === -1) this.raise(this.pos - 2, "Unterminated comment")
104 this.pos = end + 2
108 while ((match = lineBreakG.exec(this.input)) && match.index < this.pos) {
114 this.options.onComment(true, this.input.slice(start + 2, end), start, this.pos,
119 let start = this.pos
[all …]
/plugin/mantis/lib/
Dclass.soap_parser.php155 $pos = $this->position++;
157 $this->message[$pos] = array('pos' => $pos,'children'=>'','cdata'=>'');
160 $this->message[$pos]['depth'] = $this->depth++;
163 if($pos != 0){
164 $this->message[$this->parent]['children'] .= '|'.$pos;
167 $this->message[$pos]['parent'] = $this->parent;
169 $this->parent = $pos;
171 $this->depth_array[$this->depth] = $pos;
183 $this->root_header = $pos;
187 $this->body_position = $pos;
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dtokenize.js68 this.pos = this.start
70 while (this.pos < this.lineStart) {
89 this.start = this.pos
91 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
107 let code = this.input.charCodeAt(this.pos)
109 let next = this.input.charCodeAt(this.pos + 1)
115 let start = this.pos, end = this.input.indexOf("*/", this.pos += 2)
116 if (end === -1) this.raise(this.pos - 2, "Unterminated comment")
117 this.pos = end + 2
121 while ((match = lineBreakG.exec(this.input)) && match.index < this.pos) {
[all …]
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dtokenize.js41 let msg = e.message, pos = e.raisedAt, replace = true
43 pos = this.lineEnd(e.pos + 1)
45 … replace = {start: e.pos, end: pos, type: tt.string, value: this.input.slice(e.pos + 1, pos)}
47 let re = this.input.slice(e.pos, pos)
49 replace = {start: e.pos, end: pos, type: tt.regexp, value: re}
51 replace = {start: e.pos, end: pos,
53 value: this.input.slice(e.pos, pos)}
58 while (pos < this.input.length && !isSpace(this.input.charCodeAt(pos))) ++pos
60 while (pos < this.input.length) {
61 let ch = this.input.charCodeAt(pos++)
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dtokenize.js41 let msg = e.message, pos = e.raisedAt, replace = true
43 pos = this.lineEnd(e.pos + 1)
45 … replace = {start: e.pos, end: pos, type: tt.string, value: this.input.slice(e.pos + 1, pos)}
47 let re = this.input.slice(e.pos, pos)
49 replace = {start: e.pos, end: pos, type: tt.regexp, value: re}
51 replace = {start: e.pos, end: pos,
53 value: this.input.slice(e.pos, pos)}
58 while (pos < this.input.length && !isSpace(this.input.charCodeAt(pos))) ++pos
60 while (pos < this.input.length) {
61 let ch = this.input.charCodeAt(pos++)
[all …]
/plugin/latexport/implementation/
Ddecorator_headings.php64 function header($text, $level, $pos) { argument
68 $this->h1($text, $pos);
72 $this->h2($text, $pos);
76 $this->h3($text, $pos);
80 $this->h4($text, $pos);
84 $this->h5($text, $pos);
97 private function h1($text, $pos) { argument
101 $this->decorator->header($text, 1, $pos);
106 $this->decorator->header($text, 1, $pos);
110 $this->decorator->header($text, 3, $pos);
[all …]
/plugin/odt/ODT/
DXMLUtil.php51 $pos = 0;
56 while ($pos < $max) {
57 $start = strpos ($xmlCode, '<'.$element, $pos);
69 $pos = $start+$elementLength;
71 $pos = $start+$elementLength;
74 $angle = strpos ($xmlCode, '>', $pos);
79 $pos = $angle + 1;
92 $end = strpos ($xmlCode, '</'.$element.'>', $pos);
117 $pos = 0;
124 while ($pos < $max) {
[all …]
/plugin/creole/syntax/
Dtable.php45 function handle($match, $state, $pos, Doku_Handler $handler) { argument
48 $this->eventhandler->notifyEvent('open', 'table', NULL, $pos, $match, $handler);
52 $handler->addCall('table_start', array(), $pos);
54 $handler->addCall('tableheader', array(), $pos);
56 $handler->addCall('tablecell', array(), $pos);
61 $this->eventhandler->notifyEvent('close', 'table', NULL, $pos, $match, $handler);
62 $handler->addCall('table_end', array(), $pos);
70 $handler->addCall('cdata',array($match), $pos);
76 $handler->addCall('cdata', array($match), $pos);
78 $handler->addCall('table_align', array($match), $pos);
[all …]
Dmonospace.php46 function handle($match, $state, $pos, Doku_Handler $handler) { argument
58 … $this->eventhandler->notifyEvent('open', 'monospace', 'dw-monospace', $pos, $match, $handler);
59 $handler->addCall('monospace_open', array(), $pos);
61 … $this->eventhandler->notifyEvent('open', 'monospace', 'creole-monospace', $pos, $match, $handler);
66 $handler->addCall('cdata', array($match), $pos);
70 … $this->eventhandler->notifyEvent('close', 'monospace', 'dw-monospace', $pos, $match, $handler);
71 $handler->addCall('monospace_close', array(), $pos);
73 …$this->eventhandler->notifyEvent('close', 'monospace', 'creole-monospace', $pos, $match, $handler);
94 public function onHeaderCallback (creole_syntax_event $myEvent, $pos, $match, $handler) { argument
95 … $this->eventhandler->notifyEvent('close', 'monospace', 'dw-monospace', $pos, $match, $handler);
[all …]
/plugin/asciidocjs/node_modules/acorn/dist/
Dacorn_loose.es.js36 LooseParser.prototype.startNodeAt = function startNodeAt (pos) { argument
38 return new Node(this.toks, pos[0], pos[1])
40 return new Node(this.toks, pos)
124 LooseParser.prototype.lineEnd = function lineEnd (pos) { argument
125 while (pos < this.input.length && !isNewLine(this.input.charCodeAt(pos))) ++pos
126 return pos
129 LooseParser.prototype.indentationAfter = function indentationAfter (pos) { argument
132 for (var count = 0;; ++pos) {
133 var ch = this$1.input.charCodeAt(pos)
212 var msg = e.message, pos = e.raisedAt, replace = true
[all …]
Dacorn_loose.js40 LooseParser.prototype.startNodeAt = function startNodeAt (pos) { argument
42 return new __acorn.Node(this.toks, pos[0], pos[1])
44 return new __acorn.Node(this.toks, pos)
128 LooseParser.prototype.lineEnd = function lineEnd (pos) { argument
129 while (pos < this.input.length && !__acorn.isNewLine(this.input.charCodeAt(pos))) ++pos
130 return pos
133 LooseParser.prototype.indentationAfter = function indentationAfter (pos) { argument
136 for (var count = 0;; ++pos) {
137 var ch = this$1.input.charCodeAt(pos)
216 var msg = e.message, pos = e.raisedAt, replace = true
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn_loose.es.js35 LooseParser.prototype.startNodeAt = function startNodeAt (pos) { argument
37 return new Node(this.toks, pos[0], pos[1])
39 return new Node(this.toks, pos)
123 LooseParser.prototype.lineEnd = function lineEnd (pos) { argument
124 while (pos < this.input.length && !isNewLine(this.input.charCodeAt(pos))) ++pos
125 return pos
128 LooseParser.prototype.indentationAfter = function indentationAfter (pos) { argument
131 for (var count = 0;; ++pos) {
132 var ch = this$1.input.charCodeAt(pos)
211 var msg = e.message, pos = e.raisedAt, replace = true
[all …]
Dacorn_loose.js41 LooseParser.prototype.startNodeAt = function startNodeAt (pos) { argument
43 return new acorn.Node(this.toks, pos[0], pos[1])
45 return new acorn.Node(this.toks, pos)
129 LooseParser.prototype.lineEnd = function lineEnd (pos) { argument
130 while (pos < this.input.length && !acorn.isNewLine(this.input.charCodeAt(pos))) ++pos
131 return pos
134 LooseParser.prototype.indentationAfter = function indentationAfter (pos) { argument
137 for (var count = 0;; ++pos) {
138 var ch = this$1.input.charCodeAt(pos)
217 var msg = e.message, pos = e.raisedAt, replace = true
[all …]
/plugin/blogtng/action/
Dedit.php55 $pos = $event->data->findElementByAttribute('type','submit');
56 if(!$pos) return; // no submit button found, source view
57 $pos -= 1;
68 …$event->data->insertElement($pos, form_openfieldset(array('_legend' => 'BlogTNG', 'class' => 'edit…
69 $pos += 1;
71 …$event->data->insertElement($pos, form_makeMenuField('post-blog', $blogs, $blog, 'Blog', 'blogtng_…
72 $pos += 1;
84 …$event->data->insertElement($pos++, form_makeOpenTag('div', array('class' => 'blogtng__tags_checkb…
88 …$event->data->insertElement($pos++, form_makeCheckboxField('post-tags[]', $val, $val, '', '', $dat…
90 $event->data->insertElement($pos++, form_makeCloseTag('div'));
[all …]
/plugin/authphpbb3/
Daction.php43 $pos = 0;
61 $pos = $event->data->findElementByAttribute('name', 'u');
62 if ($pos === false) {
65 $event->data->replaceElement($pos, null);
66 $event->data->insertElement($pos, $elem);
73 $pos = $event->data->findElementByAttribute('name', 'p');
74 if ($pos === false) {
77 $event->data->replaceElement($pos, null);
78 $event->data->insertElement($pos, $elem);
86 $pos = $event->data->findElementByAttribute('name', 'r');
[all …]
/plugin/extlist/
Dsyntax.php219 protected function _writeCall($tag, $attr, $state, $pos, $match, $handler) argument
222 array($state, $tag, $attr), $state, $pos, $match
230 private function _openList($m, $pos, $match, $handler) argument
251 $this->_writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
257 private function _closeList($m, $pos, $match, $handler) argument
263 $this->_writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
269 private function _openItem($m, $pos, $match, $handler) argument
287 $this->_writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
293 private function _closeItem($m, $pos, $match, $handler) argument
296 $this->_writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
[all …]
/plugin/swiftmail/Swift/Iterator/
DMySQLResult.php36 protected $pos = -1; variable in Swift_Iterator_MySQLResult
66 return (($this->pos + 1) < $this->numRows);
77 $this->pos++;
88 public function seekTo($pos) argument
90 if ($pos >= 0 && $pos < $this->numRows)
92 mysql_data_seek($this->resultSet, $pos);
94 mysql_data_seek($this->resultSet, $pos);
95 $this->pos = $pos;
119 return $this->pos;
DArray.php36 protected $pos = -1; variable in Swift_Iterator_Array
62 return array_key_exists($this->pos + 1, $this->keys);
72 ++$this->pos;
83 public function seekTo($pos) argument
85 if (array_key_exists($pos, $this->keys))
87 $this->pos = $pos;
99 if (array_key_exists($this->pos, $this->values))
100 return $this->values[$this->pos];
109 return $this->pos;
/plugin/calendoku/syntax/
Dshowtable.php31 function handle($match, $state, $pos, &$handler) { argument
126 $this->startCalendar($pos, $handler);
129 $this->addEntryCalendar($component[0], $component[1], $pos, $handler);
132 $this->endCalendar($pos, $handler);
135 function startCalendar($pos, &$handler) { argument
137 $handler->_addCall('table_open', array(), $pos);
138 $handler->_addCall('tablerow_open', array(), $pos);
140 $handler->_addCall('tableheader_open', array(), $pos);
141 reHandleText($fielddesc, $pos, $handler);
142 $handler->_addCall('tableheader_close', array(), $pos);
[all …]
/plugin/jukebox/id3/
Dmodule.audio-video.flv.php251 var $pos; variable in AMFStream
255 $this->pos = 0;
259 return getid3_lib::BigEndian2Int(substr($this->bytes, $this->pos++, 1));
285 $val = substr($this->bytes, $this->pos, $length);
286 $this->pos += $length;
291 $pos = $this->pos;
293 $this->pos = $pos;
298 $pos = $this->pos;
300 $this->pos = $pos;
305 $pos = $this->pos;
[all …]
/plugin/authhttp/
Daction.php120 $pos = $form->findElementByAttribute('name', 'login');
121 if (!$pos)
123 $elem = $form->getElementAt($pos);
126 $form->replaceElement($pos, $elem);
136 $pos = $form->findElementByAttribute('name', $name);
137 $form->replaceElement($pos, NULL);
152 $pos = $form->findPositionByAttribute('name', 'login');
153 if (!$pos)
155 $elem = $form->getElementAt($pos);
158 $form->replaceElement($elem, $pos);
[all …]
/plugin/header3/
Dsyntax.php39 function handle($match, $state, $pos, Doku_Handler $handler){ argument
43 $this->h_pos = $pos;
44 if ($handler->status['section']) $handler->_addCall('section_close',array(),$pos);
45 $handler->addPluginCall('header3',array($state),$state,$pos,$match);
49 $handler->_addCall('cdata', array($match), $pos);
52 $handler->_addCall('nest_close', array(), $pos);
55 … $handler->addPluginCall('header3',array($state,$this->h_level,$this->h_pos),$state,$pos,$match);
56 $handler->_addCall('section_open',array($this->h_level),$pos);
67 list($state,$level,$pos) = $data;
93 $this->$method($title, $level, $pos, $renderer);
[all …]
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/
DDigestMD5Encoder.php58 protected $pos = 0; variable in FreeDSx\\Sasl\\Encoder\\DigestMD5Encoder
102 $this->pos = 0;
110 $this->pos = 0;
123 while ($this->pos < $this->length) {
125 if (!preg_match(self::MATCH_KEY, substr($this->binary, $this->pos), $keyMatches)) {
128 $this->pos += strlen($keyMatches[1]);
129 if (!isset($this->binary[$this->pos])) {
191 if (isset($this->binary[$this->pos]) && $this->binary[$this->pos] !== ',') {
197 if (isset($this->binary[$this->pos]) && $this->binary[$this->pos] === ',') {
198 $this->pos++;
[all …]
/plugin/sidebarng/
Daction.php29 $pos = $this->getConf('pos');
32 $this->p_sidebar($pos);
39 if($pos == 'left') {
40 print '<div class="' . $pos . '_sidebar">' . DOKU_LF;
51 $pos = $this->getConf('pos');
55 if($pos == 'left') {
59 print '<div class="' . $pos . '_sidebar">' . DOKU_LF;
71 function p_sidebar($pos) { argument
81 $this->_sidebar_dispatch($sb,$pos);
88 $this->_sidebar_dispatch($sb,$pos);
[all …]

12345678910>>...73