Lines Matching refs:ordered_list
63 function make_unique_list(ordered_list){ argument
69 for(;i<ordered_list.length;i++){
70 if(regx.test(ordered_list[i-1])!=true) { //ignore number and symbol
71 if (ordered_list[i] != ordered_list[i - 1]) {
72 unique_list.push( ordered_list[i - 1] );
79 …if(ordered_list[ordered_list.length - 1] != ordered_list[ordered_list.length - 2]){ // push the l…
80 unique_list.push(ordered_list[ordered_list.length - 1]);
85 function make_map_w(ordered_list){ // make set ,and count the same words argument
91 for(;i<ordered_list.length;i++){
92 if(regx.test(ordered_list[i-1])!=true) { //ignore number and symbol
93 if (ordered_list[i] != ordered_list[i - 1]) {
94 tx_countset[ordered_list[i - 1]] = count;
101 …if(ordered_list[ordered_list.length - 1] != ordered_list[ordered_list.length - 2]){ // the last d…
102 tx_countset[ordered_list[ordered_list.length - 1]]=1;