Lines Matching defs:path

362                         path, filter;
365 path = RegExp.leftContext || src.slice(0, src.indexOf(match[0]));
367 // this is to set up the path to the loader. The file
371 // extract correct path for mixed combo urls
374 path += '?' + match[1];
376 path = {
378 path: path
381 return path;
386 path = Env.cdn, parsed,
395 path = parsed.path;
402 return path;
1487 * The root path to prepend to module path for the combo service.
1496 * path for all modules. The default path for the YUI library is the
1671 * can specify a list of modules and the base path and
1685 * // the base path for non-combo paths
1688 * // the path to the combo service
1691 * // a fragment to prepend to the path attribute when
1698 * path: "yahoo-dom-event/yahoo-dom-event.js"
1701 * path: "animation/animation.js",
1713 * The loader 'path' attribute to the loader itself. This is combined
3091 * Retrieves the sub value at the provided path,
3097 * @param path {Array} A path array, specifying the object traversal path
3099 * @return {Any} The value stored in the path, undefined if not found,
3101 * if an empty path is provided.
3103 O.getValue = function(o, path) {
3109 p = Y.Array(path),
3120 * Sets the sub-attribute value at the provided path on the
3122 * undefined if the path is invalid.
3127 * @param path {Array} A path array, specifying the object traversal path
3131 * undefined, if the path was invalid.
3133 O.setValue = function(o, path, val) {
3135 p = Y.Array(path),
3635 var path = require('path'),
3644 //Setup the default config base path
3645 Y.config.base = path.join(__dirname, '../');
3651 * Escape the path for Windows, they need to be double encoded when used as `__dirname` or `__filename`
3654 * @param {String} p The path to modify
3655 * @return {String} The encoded path
3667 * @param {String} url The path to the file that was parsed
3674 var dirName = escapeWinPath(path.dirname(url));
3703 * @param {String} url The URL/File path to fetch the content from
3725 if (path.existsSync(url)) {
4544 path: 'skin.css',
4599 me.path = me.path.replace(/\.js/, '.css');
4602 me.path = me.path.replace(/\/yui2-skin/,
4652 var path = dir + '/' + file;
4654 path += '-min';
4656 path += '.' + (type || CSS);
4658 return path;
4692 * @param {String} config.comboBase The Combo service base path. Ex: `http://yui.yahooapis.com/combo?`
4693 * @param {String} config.root The root path to prepend to module names for the combo service. Ex: `2.5.2/build/`
4822 * Base path for the combo service
4830 * Base path for language packs.
4873 * Root path to prepend to module path for the combo
4918 * path for all modules. The default path for the YUI library is the
5383 path: (parent || pkg) + '/' + sinf.base + skin +
5395 Y.log('Adding skin (' + name + '), ' + parent + ', ' + pkg + ', ' + info[name].path, 'info', 'loader');
5427 * @param {String} config.root The root path to add to each combo resource path
5429 * @param {String} config.comboBase Combo service base path
5475 * @param {String} config.path Required, the path to the script from `base`
5482 * @param {String} [config.fullpath] If `fullpath` is specified, this is used instead of the configured `base + path`
5528 var p = o.path || o.fullpath;
5535 if (!o.path && !o.fullpath) {
5536 o.path = _path(name, name, o.type);
5581 s.path = s.path || _path(name, i, o.type);
5676 plug.path = plug.path || _path(name, i, o.type);
6167 path: packPath,
6795 * Apply filter defined for this instance to a url/path
6831 * @param {string} path the path fragment.
6837 _url: function(path, name, base) {
6838 return this._filter((base || this.base || '') + path, name);
6885 self._url(m.path, s[i], group.base || m.base);
6968 frag = ((L.isValue(m.root)) ? m.root : self.root) + (m.path || m.fullpath);
7045 path: 'mod.js'