Searched refs:ForceDefaults (Results 1 – 5 of 5) sorted by relevance
/external/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 87 public bool ForceDefaults { get; set; } property in FlatBuffers.FlatBufferBuilder 363 …public void AddBool(int o, bool x, bool d) { if (ForceDefaults || x != d) { AddBool(x); Slot(o); }… in AddBool() 372 …public void AddSbyte(int o, sbyte x, sbyte d) { if (ForceDefaults || x != d) { AddSbyte(x); Slot(o… in AddSbyte() 381 …public void AddByte(int o, byte x, byte d) { if (ForceDefaults || x != d) { AddByte(x); Slot(o); }… in AddByte() 390 …public void AddShort(int o, short x, int d) { if (ForceDefaults || x != d) { AddShort(x); Slot(o);… in AddShort() 399 …public void AddUshort(int o, ushort x, ushort d) { if (ForceDefaults || x != d) { AddUshort(x); Sl… in AddUshort() 408 … public void AddInt(int o, int x, int d) { if (ForceDefaults || x != d) { AddInt(x); Slot(o); } } in AddInt() 417 …public void AddUint(int o, uint x, uint d) { if (ForceDefaults || x != d) { AddUint(x); Slot(o); }… in AddUint() 426 …public void AddLong(int o, long x, long d) { if (ForceDefaults || x != d) { AddLong(x); Slot(o); }… in AddLong() 435 …public void AddUlong(int o, ulong x, ulong d) { if (ForceDefaults || x != d) { AddUlong(x); Slot(o… in AddUlong() [all …]
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | FlatBufferBuilderTests.cs | 24 var fbb = new FlatBufferBuilder(16) {ForceDefaults = forceDefaults}; in CreateBuffer()
|
/external/flatbuffers/tests/ |
D | test.cpp | 897 parser.builder_.ForceDefaults(true); in FuzzTest2()
|
/external/flatbuffers/include/flatbuffers/ |
D | flatbuffers.h | 736 void ForceDefaults(bool fd) { force_defaults_ = fd; }
|
/external/flatbuffers/docs/source/ |
D | Tutorial.md | 1852 One way to solve this is to call `ForceDefaults` on a FlatBufferBuilder to
|