Home | History | Annotate | Download | only in prefixmapper

Lines Matching defs:numOfEntries

43   private int numOfEntries = 0;
73 numOfEntries = availableDataFiles.size();
74 countryCallingCodes = new int[numOfEntries];
75 availableLanguages = new ArrayList<Set<String>>(numOfEntries);
87 numOfEntries = objectInput.readInt();
88 if (countryCallingCodes == null || countryCallingCodes.length < numOfEntries) {
89 countryCallingCodes = new int[numOfEntries];
94 for (int i = 0; i < numOfEntries; i++) {
109 objectOutput.writeInt(numOfEntries);
110 for (int i = 0; i < numOfEntries; i++) {
129 for (int i = 0; i < numOfEntries; i++) {