Lines Matching refs:o
25 val o = __offset(4) in pos() constant
26 return if (o != 0) { in pos()
27 obj.__assign(o + bb_pos, bb) in pos()
34 val o = __offset(6) constant in MyGame.Example.Monster
35 return if(o != 0) bb.getShort(o + bb_pos) else 150
38 val o = __offset(6) in mutateMana() constant
39 return if (o != 0) { in mutateMana()
40 bb.putShort(o + bb_pos, mana) in mutateMana()
48 val o = __offset(8) constant in MyGame.Example.Monster
49 return if(o != 0) bb.getShort(o + bb_pos) else 100
52 val o = __offset(8) in mutateHp() constant
53 return if (o != 0) { in mutateHp()
54 bb.putShort(o + bb_pos, hp) in mutateHp()
62 val o = __offset(10) constant
63 return if (o != 0) __string(o + bb_pos) else null
68 val o = __offset(14) in nameInByteBuffer() constant
69 return if (o != 0) { in nameInByteBuffer()
70 bb.get(__vector(o) + j * 1).toUByte() in nameInByteBuffer()
77 val o = __offset(14); return if (o != 0) __vector_len(o) else 0 constant
82 val o = __offset(14) in inventoryInByteBuffer() constant
83 return if (o != 0) { in inventoryInByteBuffer()
84 bb.put(__vector(o) + j * 1, inventory.toByte()) in inventoryInByteBuffer()
92 val o = __offset(16) constant
93 return if(o != 0) bb.get(o + bb_pos).toUByte() else 8u
96 val o = __offset(16) in mutateColor() constant
97 return if (o != 0) { in mutateColor()
98 bb.put(o + bb_pos, color.toByte()) in mutateColor()
106 val o = __offset(18) constant in MyGame.Example.Monster
107 return if(o != 0) bb.get(o + bb_pos).toUByte() else 0u
110 val o = __offset(18) in mutateTestType() constant
111 return if (o != 0) { in mutateTestType()
112 bb.put(o + bb_pos, testType.toByte()) in mutateTestType()
119 val o = __offset(20); return if (o != 0) __union(obj, o + bb_pos) else null in test() constant
123 val o = __offset(22) in test4() constant
124 return if (o != 0) { in test4()
125 obj.__assign(__vector(o) + j * 4, bb) in test4()
132 val o = __offset(22); return if (o != 0) __vector_len(o) else 0 constant
135 val o = __offset(24) in testarrayofstring() constant
136 return if (o != 0) { in testarrayofstring()
137 __string(__vector(o) + j * 4) in testarrayofstring()
144 val o = __offset(24); return if (o != 0) __vector_len(o) else 0 constant
152 val o = __offset(26) in testarrayoftables() constant
153 return if (o != 0) { in testarrayoftables()
154 obj.__assign(__indirect(__vector(o) + j * 4), bb) in testarrayoftables()
161 val o = __offset(26); return if (o != 0) __vector_len(o) else 0 constant
164 val o = __offset(26) in testarrayoftablesByKey() constant
165 return if (o != 0) { in testarrayoftablesByKey()
166 MyGame.Example.Monster.__lookup_by_key(null, __vector(o), key, bb) in testarrayoftablesByKey()
172 val o = __offset(26) in testarrayoftablesByKey() constant
173 return if (o != 0) { in testarrayoftablesByKey()
174 MyGame.Example.Monster.__lookup_by_key(obj, __vector(o), key, bb) in testarrayoftablesByKey()
181 val o = __offset(28) in enemy() constant
182 return if (o != 0) { in enemy()
183 obj.__assign(__indirect(o + bb_pos), bb) in enemy()
189 val o = __offset(30) in testnestedflatbuffer() constant
190 return if (o != 0) { in testnestedflatbuffer()
191 bb.get(__vector(o) + j * 1).toUByte() in testnestedflatbuffer()
198 val o = __offset(30); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
204 val o = __offset(30) in testnestedflatbufferInByteBuffer() constant
205 return if (o != 0) { in testnestedflatbufferInByteBuffer()
206 obj.__assign(__indirect(__vector(o)), bb) in testnestedflatbufferInByteBuffer()
212 val o = __offset(30) in mutateTestnestedflatbuffer() constant
213 return if (o != 0) { in mutateTestnestedflatbuffer()
214 bb.put(__vector(o) + j * 1, testnestedflatbuffer.toByte()) in mutateTestnestedflatbuffer()
222 val o = __offset(32) in testempty() constant
223 return if (o != 0) { in testempty()
224 obj.__assign(__indirect(o + bb_pos), bb) in testempty()
231 val o = __offset(34) constant
232 return if(o != 0) 0.toByte() != bb.get(o + bb_pos) else false
235 val o = __offset(34) in mutateTestbool() constant
236 return if (o != 0) { in mutateTestbool()
237 bb.put(o + bb_pos, (if(testbool) 1 else 0).toByte()) in mutateTestbool()
245 val o = __offset(36) constant
246 return if(o != 0) bb.getInt(o + bb_pos) else 0
249 val o = __offset(36) in mutateTesthashs32Fnv1() constant
250 return if (o != 0) { in mutateTesthashs32Fnv1()
251 bb.putInt(o + bb_pos, testhashs32Fnv1) in mutateTesthashs32Fnv1()
259 val o = __offset(38) constant
260 return if(o != 0) bb.getInt(o + bb_pos).toUInt() else 0u
263 val o = __offset(38) in mutateTesthashu32Fnv1() constant
264 return if (o != 0) { in mutateTesthashu32Fnv1()
265 bb.putInt(o + bb_pos, testhashu32Fnv1.toInt()) in mutateTesthashu32Fnv1()
273 val o = __offset(40) constant
274 return if(o != 0) bb.getLong(o + bb_pos) else 0L
277 val o = __offset(40) in mutateTesthashs64Fnv1() constant
278 return if (o != 0) { in mutateTesthashs64Fnv1()
279 bb.putLong(o + bb_pos, testhashs64Fnv1) in mutateTesthashs64Fnv1()
287 val o = __offset(42) constant in MyGame.Example.Monster
288 return if(o != 0) bb.getLong(o + bb_pos).toULong() else 0UL
291 val o = __offset(42) in mutateTesthashu64Fnv1() constant
292 return if (o != 0) { in mutateTesthashu64Fnv1()
293 bb.putLong(o + bb_pos, testhashu64Fnv1.toLong()) in mutateTesthashu64Fnv1()
301 val o = __offset(44) constant
302 return if(o != 0) bb.getInt(o + bb_pos) else 0
305 val o = __offset(44) in mutateTesthashs32Fnv1a() constant
306 return if (o != 0) { in mutateTesthashs32Fnv1a()
307 bb.putInt(o + bb_pos, testhashs32Fnv1a) in mutateTesthashs32Fnv1a()
315 val o = __offset(46) constant
316 return if(o != 0) bb.getInt(o + bb_pos).toUInt() else 0u
319 val o = __offset(46) in mutateTesthashu32Fnv1a() constant
320 return if (o != 0) { in mutateTesthashu32Fnv1a()
321 bb.putInt(o + bb_pos, testhashu32Fnv1a.toInt()) in mutateTesthashu32Fnv1a()
329 val o = __offset(48) constant in MyGame.Example.Monster
330 return if(o != 0) bb.getLong(o + bb_pos) else 0L
333 val o = __offset(48) in mutateTesthashs64Fnv1a() constant
334 return if (o != 0) { in mutateTesthashs64Fnv1a()
335 bb.putLong(o + bb_pos, testhashs64Fnv1a) in mutateTesthashs64Fnv1a()
343 val o = __offset(50) constant
344 return if(o != 0) bb.getLong(o + bb_pos).toULong() else 0UL
347 val o = __offset(50) in mutateTesthashu64Fnv1a() constant
348 return if (o != 0) { in mutateTesthashu64Fnv1a()
349 bb.putLong(o + bb_pos, testhashu64Fnv1a.toLong()) in mutateTesthashu64Fnv1a()
356 val o = __offset(52) in testarrayofbools() constant
357 return if (o != 0) { in testarrayofbools()
358 0.toByte() != bb.get(__vector(o) + j * 1) in testarrayofbools()
365 val o = __offset(52); return if (o != 0) __vector_len(o) else 0 constant
370 val o = __offset(52) in testarrayofboolsInByteBuffer() constant
371 return if (o != 0) { in testarrayofboolsInByteBuffer()
372 bb.put(__vector(o) + j * 1, (if(testarrayofbools) 1 else 0).toByte()) in testarrayofboolsInByteBuffer()
380 val o = __offset(54) constant in MyGame.Example.Monster
381 return if(o != 0) bb.getFloat(o + bb_pos) else 3.14159f
384 val o = __offset(54) in mutateTestf() constant
385 return if (o != 0) { in mutateTestf()
386 bb.putFloat(o + bb_pos, testf) in mutateTestf()
394 val o = __offset(56) constant
395 return if(o != 0) bb.getFloat(o + bb_pos) else 3.0f
398 val o = __offset(56) in mutateTestf2() constant
399 return if (o != 0) { in mutateTestf2()
400 bb.putFloat(o + bb_pos, testf2) in mutateTestf2()
408 val o = __offset(58) constant in MyGame.Example.Monster
409 return if(o != 0) bb.getFloat(o + bb_pos) else 0.0f
412 val o = __offset(58) in mutateTestf3() constant
413 return if (o != 0) { in mutateTestf3()
414 bb.putFloat(o + bb_pos, testf3) in mutateTestf3()
421 val o = __offset(60) in testarrayofstring2() constant
422 return if (o != 0) { in testarrayofstring2()
423 __string(__vector(o) + j * 4) in testarrayofstring2()
430 val o = __offset(60); return if (o != 0) __vector_len(o) else 0 constant
434 val o = __offset(62) in testarrayofsortedstruct() constant
435 return if (o != 0) { in testarrayofsortedstruct()
436 obj.__assign(__vector(o) + j * 8, bb) in testarrayofsortedstruct()
443 val o = __offset(62); return if (o != 0) __vector_len(o) else 0 constant
446 val o = __offset(64) in flex() constant
447 return if (o != 0) { in flex()
448 bb.get(__vector(o) + j * 1).toUByte() in flex()
455 val o = __offset(64); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
460 val o = __offset(64) in flexInByteBuffer() constant
461 return if (o != 0) { in flexInByteBuffer()
462 bb.put(__vector(o) + j * 1, flex.toByte()) in flexInByteBuffer()
470 val o = __offset(66) in test5() constant
471 return if (o != 0) { in test5()
472 obj.__assign(__vector(o) + j * 4, bb) in test5()
479 val o = __offset(66); return if (o != 0) __vector_len(o) else 0 constant
482 val o = __offset(68) in vectorOfLongs() constant
483 return if (o != 0) { in vectorOfLongs()
484 bb.getLong(__vector(o) + j * 8) in vectorOfLongs()
491 val o = __offset(68); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
496 val o = __offset(68) in vectorOfLongsInByteBuffer() constant
497 return if (o != 0) { in vectorOfLongsInByteBuffer()
498 bb.putLong(__vector(o) + j * 8, vectorOfLongs) in vectorOfLongsInByteBuffer()
505 val o = __offset(70) in vectorOfDoubles() constant
506 return if (o != 0) { in vectorOfDoubles()
507 bb.getDouble(__vector(o) + j * 8) in vectorOfDoubles()
514 val o = __offset(70); return if (o != 0) __vector_len(o) else 0 constant
519 val o = __offset(70) in vectorOfDoublesInByteBuffer() constant
520 return if (o != 0) { in vectorOfDoublesInByteBuffer()
521 bb.putDouble(__vector(o) + j * 8, vectorOfDoubles) in vectorOfDoublesInByteBuffer()
529 val o = __offset(72) in parentNamespaceTest() constant
530 return if (o != 0) { in parentNamespaceTest()
531 obj.__assign(__indirect(o + bb_pos), bb) in parentNamespaceTest()
538 val o = __offset(74) in vectorOfReferrables() constant
539 return if (o != 0) { in vectorOfReferrables()
540 obj.__assign(__indirect(__vector(o) + j * 4), bb) in vectorOfReferrables()
547 val o = __offset(74); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
550 val o = __offset(74) in vectorOfReferrablesByKey() constant
551 return if (o != 0) { in vectorOfReferrablesByKey()
552 MyGame.Example.Referrable.__lookup_by_key(null, __vector(o), key, bb) in vectorOfReferrablesByKey()
558 val o = __offset(74) in vectorOfReferrablesByKey() constant
559 return if (o != 0) { in vectorOfReferrablesByKey()
560 MyGame.Example.Referrable.__lookup_by_key(obj, __vector(o), key, bb) in vectorOfReferrablesByKey()
567 val o = __offset(76) constant
568 return if(o != 0) bb.getLong(o + bb_pos).toULong() else 0UL
571 val o = __offset(76) in mutateSingleWeakReference() constant
572 return if (o != 0) { in mutateSingleWeakReference()
573 bb.putLong(o + bb_pos, singleWeakReference.toLong()) in mutateSingleWeakReference()
580 val o = __offset(78) in vectorOfWeakReferences() constant
581 return if (o != 0) { in vectorOfWeakReferences()
582 bb.getLong(__vector(o) + j * 8).toULong() in vectorOfWeakReferences()
589 val o = __offset(78); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
594 val o = __offset(78) in vectorOfWeakReferencesInByteBuffer() constant
595 return if (o != 0) { in vectorOfWeakReferencesInByteBuffer()
596 bb.putLong(__vector(o) + j * 8, vectorOfWeakReferences.toLong()) in vectorOfWeakReferencesInByteBuffer()
604 val o = __offset(80) in vectorOfStrongReferrables() constant
605 return if (o != 0) { in vectorOfStrongReferrables()
606 obj.__assign(__indirect(__vector(o) + j * 4), bb) in vectorOfStrongReferrables()
613 val o = __offset(80); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
616 val o = __offset(80) in vectorOfStrongReferrablesByKey() constant
617 return if (o != 0) { in vectorOfStrongReferrablesByKey()
618 MyGame.Example.Referrable.__lookup_by_key(null, __vector(o), key, bb) in vectorOfStrongReferrablesByKey()
624 val o = __offset(80) in vectorOfStrongReferrablesByKey() constant
625 return if (o != 0) { in vectorOfStrongReferrablesByKey()
626 MyGame.Example.Referrable.__lookup_by_key(obj, __vector(o), key, bb) in vectorOfStrongReferrablesByKey()
633 val o = __offset(82) constant
634 return if(o != 0) bb.getLong(o + bb_pos).toULong() else 0UL
637 val o = __offset(82) in mutateCoOwningReference() constant
638 return if (o != 0) { in mutateCoOwningReference()
639 bb.putLong(o + bb_pos, coOwningReference.toLong()) in mutateCoOwningReference()
646 val o = __offset(84) in vectorOfCoOwningReferences() constant
647 return if (o != 0) { in vectorOfCoOwningReferences()
648 bb.getLong(__vector(o) + j * 8).toULong() in vectorOfCoOwningReferences()
655 val o = __offset(84); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
660 val o = __offset(84) in vectorOfCoOwningReferencesInByteBuffer() constant
661 return if (o != 0) { in vectorOfCoOwningReferencesInByteBuffer()
662 bb.putLong(__vector(o) + j * 8, vectorOfCoOwningReferences.toLong()) in vectorOfCoOwningReferencesInByteBuffer()
670 val o = __offset(86) constant
671 return if(o != 0) bb.getLong(o + bb_pos).toULong() else 0UL
674 val o = __offset(86) in mutateNonOwningReference() constant
675 return if (o != 0) { in mutateNonOwningReference()
676 bb.putLong(o + bb_pos, nonOwningReference.toLong()) in mutateNonOwningReference()
683 val o = __offset(88) in vectorOfNonOwningReferences() constant
684 return if (o != 0) { in vectorOfNonOwningReferences()
685 bb.getLong(__vector(o) + j * 8).toULong() in vectorOfNonOwningReferences()
692 val o = __offset(88); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
697 val o = __offset(88) in vectorOfNonOwningReferencesInByteBuffer() constant
698 return if (o != 0) { in vectorOfNonOwningReferencesInByteBuffer()
699 bb.putLong(__vector(o) + j * 8, vectorOfNonOwningReferences.toLong()) in vectorOfNonOwningReferencesInByteBuffer()
707 val o = __offset(90) constant in MyGame.Example.Monster
708 return if(o != 0) bb.get(o + bb_pos).toUByte() else 0u
711 val o = __offset(90) in mutateAnyUniqueType() constant
712 return if (o != 0) { in mutateAnyUniqueType()
713 bb.put(o + bb_pos, anyUniqueType.toByte()) in mutateAnyUniqueType()
720 val o = __offset(92); return if (o != 0) __union(obj, o + bb_pos) else null in anyUnique() constant
724 val o = __offset(94) constant
725 return if(o != 0) bb.get(o + bb_pos).toUByte() else 0u
728 val o = __offset(94) in mutateAnyAmbiguousType() constant
729 return if (o != 0) { in mutateAnyAmbiguousType()
730 bb.put(o + bb_pos, anyAmbiguousType.toByte()) in mutateAnyAmbiguousType()
737 val o = __offset(96); return if (o != 0) __union(obj, o + bb_pos) else null in anyAmbiguous() constant
740 val o = __offset(98) in vectorOfEnums() constant
741 return if (o != 0) { in vectorOfEnums()
742 bb.get(__vector(o) + j * 1).toUByte() in vectorOfEnums()
749 val o = __offset(98); return if (o != 0) __vector_len(o) else 0 constant
754 val o = __offset(98) in vectorOfEnumsInByteBuffer() constant
755 return if (o != 0) { in vectorOfEnumsInByteBuffer()
756 bb.put(__vector(o) + j * 1, vectorOfEnums.toByte()) in vectorOfEnumsInByteBuffer()
764 val o = __offset(100) constant in MyGame.Example.Monster
765 return if(o != 0) bb.get(o + bb_pos) else -1
768 val o = __offset(100) in mutateSignedEnum() constant
769 return if (o != 0) { in mutateSignedEnum()
770 bb.put(o + bb_pos, signedEnum) in mutateSignedEnum()
960 val o = builder.endTable() in startVectorOfEnumsVector() constant
961 builder.required(o, 10) in startVectorOfEnumsVector()
962 return o in startVectorOfEnumsVector()