/external/snakeyaml/src/test/java/examples/ |
DiceExampleTest.java | 99 Map<String, Dice> treasure = new HashMap<String, Dice>(); local 100 treasure.put("treasure", new Dice(10, 20)); 101 String output = yaml.dump(treasure); 102 assertEquals("{treasure: 10d20}\n", output); 116 Map<String, Dice> treasure = new HashMap<String, Dice>(); local 117 treasure.put("treasure", new Dice(10, 20)); 118 String output = yaml.dump(treasure); 119 assertEquals("{treasure: 10d20}\n", output) 127 public Dice treasure; field in class:DiceExampleTest.DiceBean [all...] |
/external/flatbuffers/samples/ |
SampleBinary.java | 47 byte[] treasure = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; 48 int inv = Monster.createInventoryVector(builder, treasure);
|
SampleBinary.cs | 43 var treasure = new byte[] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; 44 var inv = Monster.CreateInventoryVector(builder, treasure);
|
SampleBinary.php | 48 $treasure = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9); variable 49 $inv = \MyGame\Sample\Monster::CreateInventoryVector($builder, $treasure);
|
samplebinary.js | 44 var treasure = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; 45 var inv = MyGame.Sample.Monster.createInventoryVector(builder, treasure);
|