Searched refs:output (Results 1 - 15 of 15) sorted by relevance

/yui3/build/datatype-number-format/
H A Ddatatype-number-format-debug.js52 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 Dnumber-tests.js46 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 Ddate-tests.js62 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 Dxml-tests.js30 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 Ddatatype-number-format.js50 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 Ddatatype-date-math.js152 output = [];
155 output.push(new Date(year, month, day, 12, 0, 0));
158 return output;
/yui3/src/calendar/tests/calendar-base-manual/
H A Dcalendar.js62 output = ydate.format(curDate, {format: "%B, %Y"}) +
65 console.log("Output: " + output);
66 return output;
/yui3/build/datatype-date-math/
H A Ddatatype-date-math-debug.js154 output = [];
157 output.push(new Date(year, month, day, 12, 0, 0));
160 return output;
/yui3/src/calendar/tests/manual/
H A Dcalendar.js41 output = ydate.format(curDate, {format: "%B %Y"}) +
45 return output;
/yui3/build/calendar-base/
H A Dcalendar-base-debug.js218 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 Dcookie-tests.js1074 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 Dcalendar-base.js216 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 DFlashUploader.as437 * Outputs the files selected to an output panel and triggers a 'fileSelect' event.
H A DUploader.as854 * Outputs the files selected to an output panel and triggers a 'fileSelect' event.
/yui3/src/uploader-deprecated/as/
H A DUploader.as854 * Outputs the files selected to an output panel and triggers a 'fileSelect' event.

Completed in 535 milliseconds