Home | History | Annotate | Download | only in layout

Lines Matching refs:table

35     public static void sort(TaggedRecord[] table, int count)
39 TaggedRecord v = table[j];
43 if (vTag.compareTo(table[i].getTag()) >= 0) {
47 table[i + 1] = table[i];
50 table[i + 1] = v;
54 public static int search(TaggedRecord[] table, int count, String tag)
62 if (table[extra].getTag().compareTo(tag) <= 0) {
69 if (table[index + probe].getTag().compareTo(tag) <= 0) {
74 if (table[index].getTag().equals(tag)) {