Searched refs:all (Results 1 - 25 of 150) sorted by relevance

123456

/yui3/src/dd/
H A DMakefile0 all:
2 ant all
/yui3/src/node/
H A Dbuild.sh2 ant all
/yui3/src/editor/
H A DMakefile0 all: build
4 ant all
6 .PHONY: build all
/yui3/src/parallel/
H A DMakefile0 all: build
4 ant all
6 .PHONY: build all
/yui3/src/io/
H A DMakefile0 all:
2 ant all
/yui3/src/simpleyui/
H A DMakefile0 all: concat
2 ant all
/yui3/src/loader/
H A DMakefile0 all: build test
4 ant all
24 .PHONY: meta check tests deps test all
/yui3/src/yui/
H A DMakefile0 all: aliases build docmods
4 ant all -q -Djshint.skip=true
/yui3/src/node/tests/
H A Dnodelist-test.js6 name: 'Y.all',
11 nodelist = Y.all('body');
32 Assert.areEqual(0, Y.all('').size());
33 Assert.areEqual(0, Y.all('')._nodes.length);
37 Assert.areEqual(0, Y.all('#fake-id').size());
38 Assert.areEqual(0, Y.all('#fake-id')._nodes.length);
42 Assert.areEqual(0, Y.all('#fake-id *').size());
43 Assert.areEqual(0, Y.all('#fake-id *')._nodes.length);
47 Assert.areEqual(1, Y.all('#test-nodes')._nodes.length);
52 Assert.areEqual(nodes.length, Y.all('#tes
[all...]
/yui3/build/dom-deprecated/
H A Ddom-deprecated-debug.js35 * @param {Boolean} all optional Whether all node types should be scanned, or just element nodes.
38 previous: function(element, fn, all) {
39 return Y.DOM.elementByAxis(element, 'previousSibling', fn, all);
50 * @param {Boolean} all optional Whether all node types should be scanned, or just element nodes.
53 next: function(element, fn, all) {
54 return Y.DOM.elementByAxis(element, 'nextSibling', fn, all);
/yui3/src/dom/js/
H A Ddom-deprecated.js33 * @param {Boolean} all optional Whether all node types should be scanned, or just element nodes.
36 previous: function(element, fn, all) {
37 return Y.DOM.elementByAxis(element, 'previousSibling', fn, all);
48 * @param {Boolean} all optional Whether all node types should be scanned, or just element nodes.
51 next: function(element, fn, all) {
52 return Y.DOM.elementByAxis(element, 'nextSibling', fn, all);
/yui3/src/highlight/tests/functional/
H A Dhighlight-test.js11 // -- all() ----------------------------------------------------------------
12 'all() should highlight all occurrences of needles in haystack': function () {
16 Hi.all('foo bar baz', ['oo', 'ba'])
22 Hi.all('foo bar baz', 'oo')
26 'all() should escape HTML characters': function () {
29 Hi.all('<foo> & <bar>', ['oo', 'ba'])
33 'all() should not highlight matches inside HTML entities': function () {
36 Hi.all('&', 'amp')
41 Hi.all('/
[all...]
/yui3/src/
H A Dbuild.sh3 ## Ant all was seg faulting on me, so I wrote this to do the same thing.
15 ant all >> ../build.log 2>&1
/yui3/build/arraylist-add/
H A Darraylist-add-debug.js42 * Removes first or all occurrences of an item to the ArrayList. If a
48 * @param { Boolean } all If true, remove all occurrences.
55 remove: function(needle, all, comparator) {
61 if (!all) {
/yui3/src/collection/js/
H A Darraylist-add.js40 * Removes first or all occurrences of an item to the ArrayList. If a
46 * @param { Boolean } all If true, remove all occurrences.
53 remove: function(needle, all, comparator) {
59 if (!all) {
/yui3/build/autocomplete-highlighters/
H A Dautocomplete-highlighters-debug.js36 return Highlight.all(result.text, queryChars, {
70 return Highlight.all(result.text, [query], {
104 return Highlight.all(result.text, [query], {
144 return Highlight.all(result.text, queryWords, {
/yui3/src/scrollview/js/
H A Dlist-plugin.js91 //get all direct descendants of the UL's that are directly under the content box.
92 ulList = cb.all('> ul');
93 liList = cb.all('> ul > li');
/yui3/src/test/
H A DMakefile4 all: source build
35 ant all
/yui3/src/autocomplete/js/
H A Dautocomplete-highlighters.js34 return Highlight.all(result.text, queryChars, {
68 return Highlight.all(result.text, [query], {
102 return Highlight.all(result.text, [query], {
142 return Highlight.all(result.text, queryWords, {
/yui3/src/yui/docs/partials/
H A Dloader-resolve-node.mustache12 //Ignore all registered modules
30 //Write all the files out into a single file
/yui3/src/datatable/tests/
H A Ddatatable-head-tests.js66 Y.Assert.areSame(2, table._tableNode.all('thead > tr').size());
67 Y.Assert.areSame(5, table._tableNode.all('thead th').size());
125 Y.Assert.areSame(1, table._tableNode.all('th').size());
129 Y.Assert.areSame(2, table._tableNode.all('th').size());
148 Y.Assert.areSame(1, table._tableNode.all('th').size());
154 Y.Assert.areSame(1, table._tableNode.all('th').size());
H A Ddatatable-column-widths-tests.js61 "colgroup should be added for all DataTables": function () {
64 Y.Assert.areSame(1, this.plain._tableNode.all('colgroup').size());
66 Y.Assert.areSame(3, this.plain._colgroupNode.all('col').size());
70 Y.Assert.areSame(1, this.withWidths._tableNode.all('colgroup').size());
72 Y.Assert.areSame(3, this.withWidths._colgroupNode.all('col').size());
80 cols = this.withWidths._colgroupNode.all('col');
102 cols = this.withWidths._colgroupNode.all('col');
110 cols = this.withWidths._colgroupNode.all('col');
/yui3/src/datatable/tests/src/
H A Ddatatable-head.js64 Y.Assert.areSame(2, table._tableNode.all('thead > tr').size());
65 Y.Assert.areSame(5, table._tableNode.all('thead th').size());
123 Y.Assert.areSame(1, table._tableNode.all('th').size());
127 Y.Assert.areSame(2, table._tableNode.all('th').size());
146 Y.Assert.areSame(1, table._tableNode.all('th').size());
152 Y.Assert.areSame(1, table._tableNode.all('th').size());
H A Ddatatable-column-widths.js59 "colgroup should be added for all DataTables": function () {
62 Y.Assert.areSame(1, this.plain._tableNode.all('colgroup').size());
64 Y.Assert.areSame(3, this.plain._colgroupNode.all('col').size());
68 Y.Assert.areSame(1, this.withWidths._tableNode.all('colgroup').size());
70 Y.Assert.areSame(3, this.withWidths._colgroupNode.all('col').size());
78 cols = this.withWidths._colgroupNode.all('col');
100 cols = this.withWidths._colgroupNode.all('col');
108 cols = this.withWidths._colgroupNode.all('col');
/yui3/src/tabview/js/
H A Dtabview-base.js52 var result = this.all(query);
71 newItem = node.all(_queries.tab).item(index),
72 newContent = node.all(_queries.tabPanel).item(index);
95 node.all(_queries.tab).indexOf(activeNode) : 0;
131 this._select(this._node.all(_queries.tab).indexOf(e.currentTarget));

Completed in 165 milliseconds

123456