Home | History | Annotate | Download | only in DNS

Lines Matching refs:typecode

55 				int typecode = mapbase * 256 + + i * 8 + j;
56 types.add(Mnemonic.toInteger(typecode));
69 int typecode = Type.value(t.value);
70 if (typecode < 0) {
73 types.add(Mnemonic.toInteger(typecode));
107 int typecode = ((Integer)it.next()).intValue();
108 array[(typecode & 0xFF) / 8] |= (1 << ( 7 - typecode % 8));
143 contains(int typecode) {
144 return types.contains(Mnemonic.toInteger(typecode));