Lines Matching refs:index
407 // -> a/index.<ext>
432 return tryExtensions(path.resolve(requestPath, 'index'), exts, isMain);
438 tryExtensions(path.resolve(filename, 'index'), exts, isMain);
440 actual = tryExtensions(path.resolve(requestPath, 'index'), exts, isMain);
504 let index;
506 while ((index = StringPrototypeIndexOf(name, '.', startIndex)) !== -1) {
507 startIndex = index + 1;
508 if (index === 0) { continue; } // Skip dotfiles like .gitignore
509 currentExtension = StringPrototypeSlice(name, index);
707 // try it with each of the extensions at "index"
1028 const index = ArrayPrototypeIndexOf(children, module);
1029 if (index !== -1) {
1030 ArrayPrototypeSplice(children, index, 1);