HomeSort by relevance Sort by last modified time
    Searched refs:locationTable (Results 1 - 2 of 2) sorted by null

  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryExporter.java 153 protected HashMap<Integer, Integer> locationTable
178 locationTable.clear();
246 locationTable.put(pair.getId(), prevLoc);
250 locationTable.put(pair.getId(), location);
268 int numLocations = locationTable.keySet().size();
271 for (Integer key : locationTable.keySet()) {
273 os.write(ByteUtils.convertToBytes(locationTable.get(key)));
314 return locationTable.get(pair.getId());
BinaryImporter.java 67 private HashMap<Integer, Integer> locationTable
213 locationTable.clear();
217 locationTable.put(id, loc);
313 int loc = locationTable.get(id);

Completed in 25 milliseconds