Searched refs:lastIndexOf (Results 1 – 25 of 298) sorted by relevance
12345678910>>...12
| /plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
| D | arrays.js | 374 assert.equal(_.lastIndexOf(numbers, 1), 2); 377 numbers.lastIndexOf = null; 378 …assert.equal(_.lastIndexOf(numbers, 1), 5, 'can compute lastIndexOf, even without the native funct… 379 assert.equal(_.lastIndexOf(numbers, 0), 8, 'lastIndexOf the other element'); 380 var result = (function(){ return _.lastIndexOf(arguments, 1); }(1, 0, 1, 0, 0, 1, 0, 0, 0)); 385 assert.equal(_.lastIndexOf(val, 2), -1, msg); 386 assert.equal(_.lastIndexOf(val, 2, -1), -1, msg); 387 assert.equal(_.lastIndexOf(val, 2, -20), -1, msg); 388 assert.equal(_.lastIndexOf(val, 2, 15), -1, msg); 392 var index = _.lastIndexOf(numbers, 2, 2); [all …]
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | es6.array.last-index-of.js | 6 var $native = [].lastIndexOf; 7 var NEGATIVE_ZERO = !!$native && 1 / [1].lastIndexOf(1, -0) < 0; 11 lastIndexOf: function lastIndexOf(searchElement /* , fromIndex = @[*-1] */) {
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | es6.array.last-index-of.js | 6 var $native = [].lastIndexOf; 7 var NEGATIVE_ZERO = !!$native && 1 / [1].lastIndexOf(1, -0) < 0; 11 lastIndexOf: function lastIndexOf(searchElement /* , fromIndex = @[*-1] */) {
|
| /plugin/lightmenu/ |
| D | script.js | 7 _id = _id.substring(0,_id.lastIndexOf(':')); 17 id = id.substring(0,id.lastIndexOf(':'));
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | lastIndexOf.js | 31 function lastIndexOf(array, value, fromIndex) { function 46 module.exports = lastIndexOf;
|
| /plugin/jcapture/src/com/hammurapi/jcapture/ |
| D | JCaptureApplet.java | 22 if (dokuHost.lastIndexOf(":")<HTTPS_PREFIX.length()) { // No port number in createRequest() 64 int nsIdx = fileName.lastIndexOf(":"); in createRequest() 89 return fileName.substring(fileName.lastIndexOf(":")+1); in bodyName()
|
| /plugin/editions/ |
| D | script.js | 13 var hashPos = target.lastIndexOf('#'); 23 var hashPos = target.lastIndexOf('#');
|
| /plugin/diagrams/script/ |
| H A D | embed-toolbar.js | 24 const start = area.value.lastIndexOf(open, selection.start); 28 const prev = area.value.lastIndexOf(close, selection.start - close.length);
|
| /plugin/asciidocjs/node_modules/core-js/fn/array/ |
| D | last-index-of.js | 2 module.exports = require('../../modules/_core').Array.lastIndexOf;
|
| /plugin/asciidocjs/node_modules/core-js/library/fn/array/virtual/ |
| D | last-index-of.js | 2 module.exports = require('../../../modules/_entry-virtual')('Array').lastIndexOf;
|
| /plugin/asciidocjs/node_modules/core-js/fn/array/virtual/ |
| D | last-index-of.js | 2 module.exports = require('../../../modules/_entry-virtual')('Array').lastIndexOf;
|
| /plugin/asciidocjs/node_modules/core-js/library/fn/array/ |
| D | last-index-of.js | 2 module.exports = require('../../modules/_core').Array.lastIndexOf;
|
| /plugin/fedauth/js/ |
| D | admin.js | 37 did = did.substring(did.lastIndexOf('_')+1); 248 return pid.substring(pid.lastIndexOf('[')+1, pid.lastIndexOf(']'));
|
| /plugin/tindexmenu/jsmenu/ |
| D | menu.js | 43 fnid = fnid.substring(0,nid.lastIndexOf(s));
|
| D | usrmenu.js | 56 fnid = fnid.substring(0,nid.lastIndexOf(s));
|
| D | admmenu.js | 58 fnid = fnid.substring(0,nid.lastIndexOf(s));
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | UrlLibrary.js | 18 var last = fname.lastIndexOf('/');
|
| D | OneDriveFile.js | 29 url = url.substring(0, url.lastIndexOf('/')); 50 url = url + '/Forms/AllItems.aspx?id=' + id + '&parent=' + id.substring(0, id.lastIndexOf('/')); 65 parent = parent.substring(0, parent.lastIndexOf('/'));
|
| /plugin/sequencediagram/bower_components/lodash/test/ |
| D | remove.js | 17 lastIndex = result.lastIndexOf(delimiter);
|
| /plugin/cryptsign/ |
| D | script.js | 18 if (sum.value !== '' && sum.value.lastIndexOf(' ') !== sum.value.length) {
|
| /plugin/wysiwyg/fckeditor/editor/_source/internals/ |
| D | fckconfig.js | 44 …ath = sFullProtocol + FCKConfig.BasePath.substring( 0, FCKConfig.BasePath.lastIndexOf( '/' ) + 1) ; 49 …ath = document.location.pathname.substring( 0, document.location.pathname.lastIndexOf( '/' ) + 1) ;
|
| /plugin/asciidocjs/node_modules/jake/lib/ |
| D | rule.js | 56 return (l = b.lastIndexOf(a)) == -1 ? false : l + a.length == b.length; 62 return s.slice(0, s.lastIndexOf(a)) + b;
|
| /plugin/farm/ |
| D | script.js | 16 p = p.substr(0, p.lastIndexOf('/')); 102 if(!o.className.match(/animal_dir/)) p = p.substr(0, p.lastIndexOf('/'));
|
| /plugin/blogtng/ |
| D | script.js | 114 …insertAtCarret('wiki__text','@#'+this.href.substring(this.href.lastIndexOf('#')+'#comment_'.length… 126 commentPopup(e, this.href.substring(this.href.lastIndexOf('#')+'#comment_'.length));
|
| /plugin/publish/ |
| H A D | script.js | 35 var pageNamespace = id.substr(0,id.lastIndexOf(':'));
|
12345678910>>...12