Lines Matching refs:urls

371                         // extract correct path for mixed combo urls
1495 * A filter to apply to result urls. This filter will modify the default
1692 * // when building combo urls
1734 * The default gallery version to build gallery module urls
1741 * The default YUI 2 version to build yui2 module urls. This is for
3943 var urls = ['foo.css', 'http://example.com/bar.css', 'baz/quux.css'];
3945 Y.Get.css(urls, function (err) {
3955 Y.Get.css(urls, {
3968 @param {String|Object|Array} urls URL string, request object, or array
3984 css: function (urls, options, callback) {
3985 return this._load('css', urls, options, callback);
4022 var urls = ['foo.js', 'http://example.com/bar.js', 'baz/quux.js'];
4024 Y.Get.js(urls, function (err) {
4034 Y.Get.js(urls, {
4047 @param {String|Object|Array} urls URL string, request object, or array
4064 js: function (urls, options, callback) {
4065 return this._load('js', urls, options, callback);
4095 @param {String|Object|Array} urls URL string, request object, or array
4112 load: function (urls, options, callback) {
4113 return this._load(null, urls, options, callback);
4178 _getTransaction: function (urls, options) {
4182 if (!Lang.isArray(urls)) {
4183 urls = [urls];
4192 for (i = 0, len = urls.length; i < len; ++i) {
4193 url = urls[i];
4256 _load: function (type, urls, options, callback) {
4272 transaction = this._getTransaction(urls, options);
5678 * @param {String|Object} config.filter A filter to apply to result urls. <a href="#property_filter">See filter property</a>
5837 * Max url length for combo urls. The default is 2048. This is the URL
5901 * A filter to apply to result urls. This filter will modify the default
7847 base, urls, u = [], tmpBase, baseLen, resCombos = {},
7977 urls = resCombos[base][type];
7979 len = urls.length;
7980 tmpBase = base + urls.join(comboSep);
7992 u.push(urls[s]);