Searched refs:PrependSlot (Results 1 – 4 of 4) sorted by relevance
/third_party/flatbuffers/lobster/ |
D | flatbuffers.lobster | 255 def PrependSlot(o:int, x, d, f): 260 def PrependSlot(o:int, x, f): 264 def PrependBoolSlot(o, x, d): PrependSlot(o, x, d): PrependBool(_) 265 def PrependByteSlot(o, x, d): PrependSlot(o, x, d): PrependByte(_) 266 def PrependUint8Slot(o, x, d): PrependSlot(o, x, d): PrependUint8(_) 267 def PrependUint16Slot(o, x, d): PrependSlot(o, x, d): PrependUint16(_) 268 def PrependUint32Slot(o, x, d): PrependSlot(o, x, d): PrependUint32(_) 269 def PrependUint64Slot(o, x, d): PrependSlot(o, x, d): PrependUint64(_) 270 def PrependInt8Slot(o, x, d): PrependSlot(o, x, d): PrependInt8(_) 271 def PrependInt16Slot(o, x, d): PrependSlot(o, x, d): PrependInt16(_) [all …]
|
/third_party/flatbuffers/lua/flatbuffers/ |
D | builder.lua | 325 function mt:PrependSlot(flags, o, x, d) function 335 function mt:PrependBoolSlot(...) self:PrependSlot(Bool, ...) end 336 function mt:PrependByteSlot(...) self:PrependSlot(Uint8, ...) end 337 function mt:PrependUint8Slot(...) self:PrependSlot(Uint8, ...) end 338 function mt:PrependUint16Slot(...) self:PrependSlot(Uint16, ...) end 339 function mt:PrependUint32Slot(...) self:PrependSlot(Uint32, ...) end 340 function mt:PrependUint64Slot(...) self:PrependSlot(Uint64, ...) end 341 function mt:PrependInt8Slot(...) self:PrependSlot(Int8, ...) end 342 function mt:PrependInt16Slot(...) self:PrependSlot(Int16, ...) end 343 function mt:PrependInt32Slot(...) self:PrependSlot(Int32, ...) end [all …]
|
/third_party/flatbuffers/python/flatbuffers/ |
D | builder.py | 564 def PrependSlot(self, flags, o, x, d): member in Builder 571 def PrependBoolSlot(self, *args): self.PrependSlot(N.BoolFlags, *args) 573 def PrependByteSlot(self, *args): self.PrependSlot(N.Uint8Flags, *args) 575 def PrependUint8Slot(self, *args): self.PrependSlot(N.Uint8Flags, *args) 577 def PrependUint16Slot(self, *args): self.PrependSlot(N.Uint16Flags, *args) 579 def PrependUint32Slot(self, *args): self.PrependSlot(N.Uint32Flags, *args) 581 def PrependUint64Slot(self, *args): self.PrependSlot(N.Uint64Flags, *args) 583 def PrependInt8Slot(self, *args): self.PrependSlot(N.Int8Flags, *args) 585 def PrependInt16Slot(self, *args): self.PrependSlot(N.Int16Flags, *args) 587 def PrependInt32Slot(self, *args): self.PrependSlot(N.Int32Flags, *args) [all …]
|
/third_party/flatbuffers/tests/ |
D | py_test.py | 1626 b.PrependSlot(flag, 0, 0, 0) 1640 b.PrependSlot(flag, 0, 0, 0)
|