Searched defs:bco (Results 1 - 3 of 3) sorted by relevance

/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryExporter.java156 // key - class name, value = bco
196 BinaryClassObject bco = classes.get(key);
199 byte[] aliasBytes = fixClassAlias(bco.alias,
205 os.write( bco.classHierarchyVersions.length );
206 for (int version : bco.classHierarchyVersions){
209 classTableSize += 1 + bco.classHierarchyVersions.length * 4;
218 os.write(ByteUtils.convertToBytes(bco.nameFields.size()));
219 for (String fieldName : bco.nameFields.keySet()) {
220 BinaryClassField bcf = bco.nameFields.get(fieldName);
346 BinaryClassObject bco
396 generateIdContentPair(BinaryClassObject bco) argument
[all...]
H A DBinaryOutputCapsule.java66 public BinaryOutputCapsule(BinaryExporter exporter, BinaryClassObject bco) { argument
69 this.cObj = bco;
H A DBinaryInputCapsule.java68 public BinaryInputCapsule(BinaryImporter importer, Savable savable, BinaryClassObject bco) { argument
70 this.cObj = bco;

Completed in 57 milliseconds