Searched refs:PrependSlot (Results 1 – 4 of 4) sorted by relevance
/external/flatbuffers/lobster/ |
D | flatbuffers.lobster | 260 def PrependSlot(o:int, x, d, f): 265 def PrependSlot(o:int, x, f): 269 def PrependBoolSlot(o, x, d): PrependSlot(o, x, d): PrependBool(_) 270 def PrependByteSlot(o, x, d): PrependSlot(o, x, d): PrependByte(_) 271 def PrependUint8Slot(o, x, d): PrependSlot(o, x, d): PrependUint8(_) 272 def PrependUint16Slot(o, x, d): PrependSlot(o, x, d): PrependUint16(_) 273 def PrependUint32Slot(o, x, d): PrependSlot(o, x, d): PrependUint32(_) 274 def PrependUint64Slot(o, x, d): PrependSlot(o, x, d): PrependUint64(_) 275 def PrependInt8Slot(o, x, d): PrependSlot(o, x, d): PrependInt8(_) 276 def PrependInt16Slot(o, x, d): PrependSlot(o, x, d): PrependInt16(_) [all …]
|
/external/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 …]
|
/external/flatbuffers/python/flatbuffers/ |
D | builder.py | 580 def PrependSlot(self, flags, o, x, d): member in Builder 589 def PrependBoolSlot(self, *args): self.PrependSlot(N.BoolFlags, *args) 591 def PrependByteSlot(self, *args): self.PrependSlot(N.Uint8Flags, *args) 593 def PrependUint8Slot(self, *args): self.PrependSlot(N.Uint8Flags, *args) 595 def PrependUint16Slot(self, *args): self.PrependSlot(N.Uint16Flags, *args) 597 def PrependUint32Slot(self, *args): self.PrependSlot(N.Uint32Flags, *args) 599 def PrependUint64Slot(self, *args): self.PrependSlot(N.Uint64Flags, *args) 601 def PrependInt8Slot(self, *args): self.PrependSlot(N.Int8Flags, *args) 603 def PrependInt16Slot(self, *args): self.PrependSlot(N.Int16Flags, *args) 605 def PrependInt32Slot(self, *args): self.PrependSlot(N.Int32Flags, *args) [all …]
|
/external/flatbuffers/tests/ |
D | py_test.py | 2066 b.PrependSlot(flag, 0, 0, 0) 2080 b.PrependSlot(flag, 0, 0, 0)
|