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

  /external/jmonkeyengine/engine/src/core/com/jme3/export/
FormatVersion.java 8 public final class FormatVersion {
20 private FormatVersion(){
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttribute.h 32 static const char FormatVersion = 'A';
33 static const size_t FormatVersionFieldSize = sizeof(FormatVersion); // a byte
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryExporter.java 35 import com.jme3.export.FormatVersion;
182 os.write(ByteUtils.convertToBytes(FormatVersion.SIGNATURE));
183 os.write(ByteUtils.convertToBytes(FormatVersion.VERSION));
BinaryImporter.java 74 private int formatVersion;
82 return formatVersion;
141 if (maybeSignature == FormatVersion.SIGNATURE){
143 formatVersion = ByteUtils.readInt(bis);
147 if (formatVersion > FormatVersion.VERSION){
149 formatVersion + " > " + FormatVersion.VERSION);
158 formatVersion = 0;
170 if (formatVersion >= 1)
    [all...]
  /external/llvm/lib/ProfileData/
InstrProfReader.cpp 330 FormatVersion = endian::readNext<uint64_t, little, unaligned>(Cur);
331 if (FormatVersion > IndexedInstrProf::Version)
368 NumCounts = FormatVersion == 1 ? E - I : Data[I++];
399 FormatVersion == 1 ? Data.size() - CurrentOffset : Data[CurrentOffset++];
  /frameworks/compile/mclinker/lib/Target/
ELFAttribute.cpp 67 if (attribute_data[0] != FormatVersion) {
143 buffer[0] = FormatVersion;
  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 273 uint64_t FormatVersion;
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMOutputCapsule.java 35 import com.jme3.export.FormatVersion;
83 ret.setAttribute("format_version", Integer.toString(FormatVersion.VERSION));

Completed in 1734 milliseconds