Searched refs:out (Results 1 - 25 of 36) sorted by relevance

12

/yui3/src/dump/tests/
H A Ddump-tests.js35 var out = Y.Lang.dump({
38 Assert.areSame(control, out, 'Failed to encode Date properly');
41 var out = Y.Lang.dump({
46 Assert.areEqual('DIV#foo', out, 'Failed to encode HTMLElement');
49 var out = Y.Lang.dump({
53 Assert.areEqual('document', out, 'Failed to encode HTMLDocument');
56 var out = Y.Lang.dump({
60 Assert.areEqual('window', out, 'Failed to encode HTMLWindow');
63 var out = Y.Lang.dump(function() {
65 Assert.areEqual('f(){...}', out, 'Faile
[all...]
/yui3/src/loader/tests/
H A Dloader-tests.js22 var out = loader.resolve();
23 Assert.areEqual(0, out.js.length, 'JS files returned');
24 Assert.areEqual(0, out.css.length, 'CSS files returned');
33 var out = loader.resolve();
34 Assert.isTrue((out.js.length > 0), 'NO JS files returned');
35 Assert.isTrue((out.css.length > 0), 'NO CSS files returned');
42 var out = loader.resolve(true);
43 Assert.isTrue((out.js.length > 0), 'NO JS files returned');
44 Assert.isTrue((out.css.length > 0), 'NO CSS files returned');
52 var out
[all...]
/yui3/src/simpleyui/scripts/
H A Dconcat.js36 var out = loader.resolve(true); variable
40 out.js.forEach(function(f) {
45 console.log('Wrote (' + out.js.length + ') files to js/concat.js');
/yui3/src/uploader/tests/manual/
H A Duploadqueue.js12 var out = Y.one("#output");
21 out.append("<div id='" + newfile.get("id") + "'>" + newfile.get("name") + " | " + 0 + "%</div>");
32 out.one("#" + ev.file.get("id")).setContent(ev.file.get("name") + " | " + ev.percentLoaded + "%");
36 out.one("#" + ev.file.get("id")).append("<br><p>DATA:<br> " + ev.data + "</p><br>");
41 out.one("#totalpercent").setContent("Total upload progress: " + ev.percentLoaded);
46 out.one("#totalpercent").append("<p>Upload complete!</p>");
H A Dhtml5uploader.js17 var out = Y.one("#uploadinfo");
22 out.setContent("");
25 out.append("<div id='" + value.get("id") + "'>" + value.get("name") + " | " + 0 + "%</div>");
32 out.one("#" + ev.file.get("id")).setContent(ev.file.get("name") + " | " + ev.percentLoaded + "%");
36 out.one("#" + ev.file.get("id")).append("<p>DATA:<br> " + ev.data + "</p>");
H A Duploader.js44 var out = Y.one("#uploadinfo");
49 out.setContent("");
52 out.append("<div id='" + value.get("id") + "'>" + value.get("name") + " | " + 0 + "%</div>");
59 out.one("#" + ev.file.get("id")).setContent(ev.file.get("name") + " | " + ev.percentLoaded + "%");
63 out.one("#" + ev.file.get("id")).setContent(ev.file.get("name") + " | " + "Finished!");
64 out.one("#" + ev.file.get("id")).append("<p>DATA:<br> " + ev.data + "</p>");
H A Dflashuploader.js30 var out = Y.one("#uploadinfo");
35 out.setContent("");
38 out.append("<div id='" + value.get("id") + "'>" + value.get("name") + " | " + 0 + "%</div>");
45 out.one("#" + ev.file.get("id")).setContent(ev.file.get("name") + " | " + ev.percentLoaded + "%");
49 out.one("#" + ev.file.get("id")).append("<p>DATA:<br> " + ev.data + "</p>");
/yui3/src/yui-throttle/tests/
H A Dthrottle-tests.js11 out = 0,
19 out++;
33 Assert.isTrue((counter < out), 'Y.Throttle did not throttle the function call');
38 out = 0,
46 out++;
60 Assert.areEqual(out, counter, 'Y.Throttle DID throttle the function call');
/yui3/src/yui/docs/partials/
H A Dloader-resolve-node.mustache19 var out = loader.resolve(true);
25 out.js.forEach(function(file) {
30 //Write all the files out into a single file
/yui3/src/yui/scripts/
H A Dbuild.js6 out = path.join(__dirname, '../', 'js', 'alias.js');
34 fs.writeFileSync(out, str, 'utf8')
H A Dbuild_doc_modules.js7 out = path.join(__dirname, '../docs/partials/modules.mustache');
80 console.log('[info] Writing ' + out);
81 fs.writeFileSync(out, str.join('\n'), 'utf8');
H A Dfetch_agents.js31 var out = {};
60 out[info.name] = out[info.name] || [];
76 out[info.name].push(o);
82 data += 'Y.UAData = ' + JSON.stringify(out, undefined, '\t') + ';';
/yui3/src/editor/js/
H A Dcreatelink-base.js44 var inst = this.get('host').getInstance(), out, a, sel, holder,
58 out = sel.getSelected();
59 if (!sel.isCollapsed && out.size()) {
61 a = out.item(0).one('a');
63 out.item(0).replace(a);
H A Dexec-command.js165 var inst = this.getInstance(), out, sel;
168 out = this.command('inserthtml', html);
174 return out;
/yui3/src/loader/scripts/
H A Dmeta_join.py192 out = codecs.open(os.path.join(dest_path, DEST_JSON), 'w', 'utf-8')
193 out.writelines(jsonstr)
194 out.close()
197 out = codecs.open(os.path.join(dest_path, DEST_JS), 'w', 'utf-8')
198 out.writelines(jsstr)
199 out.close()
202 out = codecs.open(os.path.join(
204 out.writelines(capsfile)
205 out.close()
/yui3/build/createlink-base/
H A Dcreatelink-base-debug.js46 var inst = this.get('host').getInstance(), out, a, sel, holder,
60 out = sel.getSelected();
61 if (!sel.isCollapsed && out.size()) {
63 a = out.item(0).one('a');
65 out.item(0).replace(a);
/yui3/src/event/tests/src/
H A Devent-hover.js33 function mouse(target, out) {
34 var eventname = (out) ? 'mouseout' : 'mouseover',
45 if (out) {
71 "test node.on('hover', over, out)": function () {
93 function out(e) {
104 target.on('hover', over, out);
140 Y.Assert.areSame('out', outPhase);
147 "test container.on('hover', over, out)": function () {
169 function out(e) {
180 target.on('hover', over, out);
[all...]
/yui3/src/event/tests/
H A Devent-hover-tests.js35 function mouse(target, out) {
36 var eventname = (out) ? 'mouseout' : 'mouseover',
47 if (out) {
73 "test node.on('hover', over, out)": function () {
95 function out(e) {
106 target.on('hover', over, out);
142 Y.Assert.areSame('out', outPhase);
149 "test container.on('hover', over, out)": function () {
171 function out(e) {
182 target.on('hover', over, out);
[all...]
/yui3/build/dd-ddm-drop/
H A Ddd-ddm-drop-debug.js243 var biggest = null, area = 0, out;
257 out = [];
261 out[out.length] = v;
264 return [biggest, out];
/yui3/src/dd/js/
H A Dddm-drop.js241 var biggest = null, area = 0, out;
255 out = [];
259 out[out.length] = v;
262 return [biggest, out];
/yui3/src/handlebars/js/
H A Dhandlebars-compiler-compiler.js60 var out = [], str, name, value;
68 out.push("DECLARE " + name + " = " + value);
87 out.push(str);
91 return out.join("\n");
411 var out = [];
423 out.push(copies);
425 out.push('');
429 out.push(", buffer = " + this.initializeBuffer());
431 out.push("");
437 this.source = out;
[all...]
/yui3/src/editor/tests/
H A Deditor.js274 Y.Assert.areSame('This is a test', text, 'Failed to filter out HTML');
425 var out = editor.frame.exec._wrapContent(str);
426 Y.Assert.areEqual('<p><b>foo</b></p>', out);
428 var out = editor.frame.exec._wrapContent(str, true);
429 Y.Assert.areEqual('<b>foo</b><br>', out);
529 var out = Y.Plugin.EditorBidi.blockParent(inst.one('body').get('firstChild.firstChild'));
530 Y.Assert.isTrue(out.test('p'));
532 var out = Y.Plugin.EditorBidi.addParents([inst.one('body').get('firstChild')]);
533 Y.Assert.areEqual(1, out.length);
534 Y.Assert.isTrue(out[
[all...]
/yui3/src/loader/tests/server/
H A Dserver.js111 var out = loader.resolve(true);
113 out.js.forEach(function(v) {
/yui3/build/handlebars-compiler/
H A Dhandlebars-compiler-debug.js691 var out = [], str, name, value;
699 out.push("DECLARE " + name + " = " + value);
718 out.push(str);
722 return out.join("\n");
1042 var out = [];
1054 out.push(copies);
1056 out.push('');
1060 out.push(", buffer = " + this.initializeBuffer());
1062 out.push("");
1068 this.source = out;
[all...]
/yui3/build/exec-command/
H A Dexec-command-debug.js167 var inst = this.getInstance(), out, sel;
170 out = this.command('inserthtml', html);
176 return out;

Completed in 326 milliseconds

12