Home | History | Annotate | Download | only in scan-build

Lines Matching full:classname

35       if (table.className.search(/\bsortable\b/) != -1) {
61 if (table.rows[i].className.search(/\bsortbottom\b/) != -1) {
81 if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col
82 mtch = headrow[i].className.match(/\bsorttable_([a-z0-9]+)\b/);
94 if (this.className.search(/\bsorttable_sorted\b/) != -1) {
98 this.className = this.className.replace('sorttable_sorted',
107 if (this.className.search(/\bsorttable_sorted_reverse\b/) != -1) {
111 this.className = this.className.replace('sorttable_sorted_reverse',
125 cell.className = cell.className.replace('sorttable_sorted_reverse','');
126 cell.className = cell.className.replace('sorttable_sorted','');
134 this.className += ' sorttable_sorted';