Searched refs:output (Results 1 - 15 of 15) sorted by relevance
| /yui3/build/datatype-number-format/ |
| H A D | datatype-number-format-debug.js | 52 output = data + "", 62 output = data.toFixed(decPlaces); 67 output = output.replace(".", decSep); 73 decIndex = output.lastIndexOf(decSep); 74 decIndex = (decIndex > -1) ? decIndex : output.length; 76 newOutput = output.substring(decIndex); 82 newOutput = output.charAt(i-1) + newOutput; 85 output = newOutput; 89 output [all...] |
| /yui3/src/datatype/tests/ |
| H A D | number-tests.js | 46 var output = Y.DataType.Number.format(); 47 ASSERT.areSame("", output, "Expected empty string."); 51 var output = Y.DataType.Number.format(null); 52 ASSERT.areSame("", output, "Expected empty string."); 56 var output = Y.DataType.Number.format("0"); 57 ASSERT.areSame("0", output, "Incorrect output 0."); 59 output = Y.DataType.Number.format("1"); 60 ASSERT.areSame("1", output, "Incorrect output [all...] |
| H A D | date-tests.js | 62 var output = Y.DataType.Date.format(); 63 ASSERT.areSame("", output, "Expected empty string."); 67 var output = Y.DataType.Date.format(null); 68 ASSERT.areSame("", output, "Expected empty string."); 73 output; 78 output = Y.DataType.Date.format(date); 79 ASSERT.areSame("1995-12-17", output, "Expected default format (%F)"); 81 output = Y.DataType.Date.format(date, {format:"%D"}); 82 ASSERT.areSame("12/17/95", output, "Expected %D format."); 84 output [all...] |
| H A D | xml-tests.js | 30 var output = Y.DataType.XML.format(); 31 ASSERT.areSame("", output, "Expected empty string."); 35 var output = Y.DataType.XML.format(null); 36 ASSERT.areSame("", output, "Expected empty string.");
|
| /yui3/src/datatype/js/ |
| H A D | datatype-number-format.js | 50 output = data + "", 60 output = data.toFixed(decPlaces); 65 output = output.replace(".", decSep); 71 decIndex = output.lastIndexOf(decSep); 72 decIndex = (decIndex > -1) ? decIndex : output.length; 74 newOutput = output.substring(decIndex); 80 newOutput = output.charAt(i-1) + newOutput; 83 output = newOutput; 87 output [all...] |
| H A D | datatype-date-math.js | 152 output = []; 155 output.push(new Date(year, month, day, 12, 0, 0)); 158 return output;
|
| /yui3/src/calendar/tests/calendar-base-manual/ |
| H A D | calendar.js | 62 output = ydate.format(curDate, {format: "%B, %Y"}) + 65 console.log("Output: " + output); 66 return output;
|
| /yui3/build/datatype-date-math/ |
| H A D | datatype-date-math-debug.js | 154 output = []; 157 output.push(new Date(year, month, day, 12, 0, 0)); 160 return output;
|
| /yui3/src/calendar/tests/manual/ |
| H A D | calendar.js | 41 output = ydate.format(curDate, {format: "%B %Y"}) + 45 return output;
|
| /yui3/build/calendar-base/ |
| H A D | calendar-base-debug.js | 218 var output = []; 222 output.push (day); 226 return output; 1076 // Initialize final output HTML string 1162 // Generate final output by substituting class names. 1163 var output = substitute(substitute (CalendarBase.CALENDAR_GRID_TEMPLATE, partials), 1170 return output; 1339 var output = partials["body_template"].replace(/\{calendar_grid_template\}/g, Y.bind(paneReplacer, this)); 1344 return output;
|
| /yui3/src/cookie/tests/ |
| H A D | cookie-tests.js | 1074 var output = Y.Cookie.set("data", "1234"); 1075 Assert.areEqual("data=1234", output, "Cookie string format is wrong."); 1080 var output = Y.Cookie.set("data", "1234", { raw: false }); 1081 Assert.areEqual("data=1234", output, "Cookie string format is wrong."); 1086 var output = Y.Cookie.set("data", "1234", { raw: true }); 1087 Assert.areEqual("data=1234", output, "Cookie string format is wrong."); 1092 var output = Y.Cookie.set("data", "1234", { raw: "blah" }); 1093 Assert.areEqual("data=1234", output, "Cookie string format is wrong."); 1285 var output = Y.Cookie.setSub("data", "value", "1234"); 1286 Assert.areEqual("data=value=1234", output, "Cooki [all...] |
| /yui3/src/calendar/js/ |
| H A D | calendar-base.js | 216 var output = []; 220 output.push (day); 224 return output; 1074 // Initialize final output HTML string 1160 // Generate final output by substituting class names. 1161 var output = substitute(substitute (CalendarBase.CALENDAR_GRID_TEMPLATE, partials), 1168 return output; 1337 var output = partials["body_template"].replace(/\{calendar_grid_template\}/g, Y.bind(paneReplacer, this)); 1342 return output;
|
| /yui3/src/uploader/as/ |
| H A D | FlashUploader.as | 437 * Outputs the files selected to an output panel and triggers a 'fileSelect' event.
|
| H A D | Uploader.as | 854 * Outputs the files selected to an output panel and triggers a 'fileSelect' event.
|
| /yui3/src/uploader-deprecated/as/ |
| H A D | Uploader.as | 854 * Outputs the files selected to an output panel and triggers a 'fileSelect' event.
|
Completed in 535 milliseconds