Home
last modified time | relevance | path

Searched refs:substring (Results 26 – 50 of 427) sorted by relevance

12345678910>>...18

/plugin/ckgdoku/scripts/
H A Dscript-cmpr.js1substring(4,p))}m=m.substring(p+3);q=false}}else{if(m.indexOf("</")==0){n=m.match(c);if(n){m=m.sub…
/plugin/ckgdoku/
H A Dscript.js80 handler.comment( html.substring( 4, index ) );
81 html = html.substring( index + 3 );
90 html = html.substring( match[0].length );
100 html = html.substring( match[0].length );
109 var text = index < 0 ? html : html.substring( 0, index );
110 html = index < 0 ? "" : html.substring( index );
407 var options = opts.substring(1).split('&');
/plugin/ckgedit/
H A Dscript.js104 handler.comment( html.substring( 4, index ) );
105 html = html.substring( index + 3 );
114 html = html.substring( match[0].length );
124 html = html.substring( match[0].length );
133 var text = index < 0 ? html : html.substring( 0, index );
134 html = index < 0 ? "" : html.substring( index );
434 var options = opts.substring(1).split('&');
/plugin/diagramsnet/lib/js/diagramly/
H A DDropboxClient.js448 …var checkPromise = this.client.filesGetMetadata({path: '/' + arg.path.substring(1), include_delete…
625 var path = file.stat.path_display.substring(1);
630 filename = path.substring(0, idx + 1) + filename;
634 …if (file != null && filename != null && file.stat.path_lower.substring(1) !== filename.toLowerCase…
653 if (!exists || response.path_lower.substring(1) === filename.toLowerCase())
792 var rel = decodeURIComponent(files[0].link.substring(tmp + this.appPath.length - 1));
802 fn(rel.substring(1), new DropboxLibrary(this.ui, data, stat));
842 success(newFile.getHash().substring(1), newFile);
919 var rel = decodeURIComponent(files[0].link.substring(tmp + this.appPath.length - 1));
945 fn(rel.substring(1), (file != null) ? file : new DropboxFile(this.ui, data, stat));
[all …]
H A DDrawioClient.js96 postCookie = cookies.substring(end);
99 var value = cookies.substring(start, end);
H A DStorageFile.js397 var isFile = (type == null || type == 'F') && (value.substring(0, 8) === '<mxfile ' ||
398 value.substring(0, 5) === '<?xml' || value.substring(0, 12) === '<!--[if IE]>');
399 var isLib = (type == null || type == 'L') && (value.substring(0, 11) === '<mxlibrary>');
H A DApp.js406 if (cookie.substring(0, 5) == 'MODE=')
408 mode = cookie.substring(5);
2781 id = id.substring(1);
2791 id = id.substring(0, idx);
2821 value.substring(0, 8) != 'https://')
3395 if (value.substring(0, 7) != 'http://' && value.substring(0, 8) != 'https://')
3837 temp = name.substring(idx + 1);
5213 tmp = tmp.substring(slash + 1, dot);
5214 var ext = url.substring(dot);
5547 var service = id.substring(0, 1);
[all …]
/plugin/ckgdoku/fckeditor/editor/filemanager/browser/default/js/
H A Dcommon.js94 while (c.charAt(0)==' ') c = c.substring(1);
95 if (c.indexOf(name) == 0) return c.substring(name.length,c.length);
/plugin/commentsyntax/
H A Dscript.js15 prevchar = selection.obj.value.substring(selection.start-1,selection.start);
16 nextchar = selection.obj.value.substring(selection.end,selection.end+1);
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/js/
H A Dcommon.js94 while (c.charAt(0)==' ') c = c.substring(1);
95 if (c.indexOf(name) == 0) return c.substring(name.length,c.length);
/plugin/codeprettify/code-prettify/src/
H A Drun_prettify.js595 return parseInt(charsetPart.substring(1), 8);
597 return parseInt(charsetPart.substring(2), 16);
613 var charsetParts = charSet.substring(1, charSet.length - 1).match(
716 var decimalValue = +p.substring(1);
745 var decimalValue = +p.substring(1);
1061 isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
1086 var lang = style.substring(5);
1091 token.substring(0, embeddedSourceStart),
1104 token.substring(embeddedSourceEnd),
/plugin/runcommand/
H A Dscript.js16 url = url.substring(begin,end)+"lib/plugins/runcommand/";
39 url = url.substring(begin,end)+"lib/plugins/runcommand/";
/plugin/dokucrypt/
H A Dscript.js233 ret+=x.substring(pos,cur) + ctext;
236 ret+=x.substring(pos);
258 ret+=x.substring(pos,cur) + ctext;
261 ret+=x.substring(pos);
302 lock=getTagAttr(data.substring(0,tagend+1),"LOCK");
776 hexString = hexString.substring(2);
1665 t += h.substring(0, maxLineLength) + "\n";
1666 h = h.substring(maxLineLength, h.length);
1689 s = s.substring(0, i);
1948 s = s.substring(0, j);
[all …]
/plugin/dokucrypt2/
H A Dscript.js300 if(!(ctext=decryptBlock(x.substring(cur,closetag+tag.length+3),false))) {
303 ret+=x.substring(pos,cur) + ctext;
306 ret+=x.substring(pos);
324 if(!(ctext=encryptBlock(x.substring(cur,closetag+tag.length+3),false))) {
328 ret+=x.substring(pos,cur) + ctext;
331 ret+=x.substring(pos);
372 lock=getTagAttr(data.substring(0,tagend+1),"LOCK");
375 collapsed=getTagAttr(data.substring(0,tagend+1),"COLLAPSED");
378 if(!(ptext=verifyDecrypt(data.substring(tagend+1,ptend),lock,key))) {
390 return(opentag.substring(lof
[all...]
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DUstring.php236 * @param string $substring Substring to append.
239 public function append($substring) argument
241 $this->_string .= $substring;
249 * @param string $substring Substring to append.
252 public function prepend($substring) argument
254 $this->_string = $substring . $this->_string;
/plugin/iphelper/
H A Dscript.js94 var tcidr = (document.forms.input.in_address.value).substring(document.forms.input.in_address.value.indexOf('/') + 1);
109 var address = (document.forms.input.in_address.value).substring(0,document.forms.input.in_address.value.indexOf('/'));
140 var tcidr = (document.forms.input.in_address.value).substring(document.forms.input.in_address.value.indexOf('/') + 1);
151 var taddress = (document.forms.input.in_address.value).substring(0,document.forms.input.in_address.value.indexOf('/'));
218 var taddress = (document.forms.input.in_address.value).substring(0,document.forms.input.in_address.value.indexOf('/'));
/plugin/wysiwyg/fckeditor/editor/_source/
H A Dfckjscoreextensions.js106 s = this.substring( 0, start ) ;
109 s += this.substring( start + length , this.length ) ;
/plugin/groupmanager/
H A Dscript.js21 d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
/plugin/tocselect/
H A Dscript.js87 c = c.substring(1);
90 return c.substring(name.length,c.length);
/plugin/ckgdoku/ckeditor/plugins/headerbuttons/
H A Dplugin.js28 var lower = Number(lastH.substring(1,2)) + 1;
44 var higher = Number(lastH.substring(1,2)) - 1;
/plugin/ckgedit/ckeditor/plugins/headerbuttons/
H A Dplugin.js28 var lower = Number(lastH.substring(1,2)) + 1;
44 var higher = Number(lastH.substring(1,2)) - 1;
/plugin/ryubin/ryubin/js/
H A DAC_RunActiveContent.js99 versionRevision = versionRevision.substring(1);
101 versionRevision = versionRevision.substring(1);
103 versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.aac.php332 $substring = $this->fread(9); // header is 7 bytes (or 9 if CRC is present)
333 $substringlength = strlen($substring);
339 $header1 = getid3_lib::BigEndian2Int(substr($substring, 0, 2));
340 $header2 = getid3_lib::BigEndian2Int(substr($substring, 2, 4));
341 $header3 = getid3_lib::BigEndian2Int(substr($substring, 6, 1));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilterParser.php354 'Unable to parse the substring filter for attribute %s.',
360 foreach ($substrings as $substring) {
361 $substringValue = $this->unescapeValue($substring[0]);
362 $substringType = (int) $substring[1];
365 $filter->setStartsWith($substring[0]);
367 $filter->setEndsWith($substring[0]);
/plugin/formatplus/
H A Dscript.js27 var q1 = q.substring(1,q.length-1);
32 q2 = q.substring(1,q.length-1);

12345678910>>...18