Searched refs:ForceDefaults (Results 1 – 8 of 8) sorted by relevance
/third_party/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 106 public bool ForceDefaults { get; set; } property in FlatBuffers.FlatBufferBuilder 450 …public void AddBool(int o, bool x, bool d) { if (ForceDefaults || x != d) { AddBool(x); Slot(o); }… in AddBool() 468 …public void AddSbyte(int o, sbyte x, sbyte d) { if (ForceDefaults || x != d) { AddSbyte(x); Slot(o… in AddSbyte() 485 …public void AddByte(int o, byte x, byte d) { if (ForceDefaults || x != d) { AddByte(x); Slot(o); }… in AddByte() 502 …public void AddShort(int o, short x, int d) { if (ForceDefaults || x != d) { AddShort(x); Slot(o);… in AddShort() 519 …public void AddUshort(int o, ushort x, ushort d) { if (ForceDefaults || x != d) { AddUshort(x); Sl… in AddUshort() 536 … public void AddInt(int o, int x, int d) { if (ForceDefaults || x != d) { AddInt(x); Slot(o); } } in AddInt() 553 …public void AddUint(int o, uint x, uint d) { if (ForceDefaults || x != d) { AddUint(x); Slot(o); }… in AddUint() 570 …public void AddLong(int o, long x, long d) { if (ForceDefaults || x != d) { AddLong(x); Slot(o); }… in AddLong() 587 …public void AddUlong(int o, ulong x, ulong d) { if (ForceDefaults || x != d) { AddUlong(x); Slot(o… in AddUlong() [all …]
|
/third_party/flatbuffers/tests/FlatBuffers.Test/ |
D | FlatBufferBuilderTests.cs | 26 var fbb = new FlatBufferBuilder(16) {ForceDefaults = forceDefaults}; in CreateBuffer()
|
/third_party/flatbuffers/python/flatbuffers/ |
D | builder.py | 706 def ForceDefaults(self, forceDefaults): member in Builder
|
/third_party/flatbuffers/include/flatbuffers/ |
D | idl.h | 787 if (opts.force_defaults) { builder_.ForceDefaults(true); } in current_namespace_()
|
D | flatbuffers.h | 1324 void ForceDefaults(bool fd) { force_defaults_ = fd; }
|
/third_party/flatbuffers/tests/ |
D | test.cpp | 1559 parser.builder_.ForceDefaults(true); in FuzzTest2() 1706 parser.builder_.ForceDefaults(true); // return defaults in TestValue()
|
D | py_test.py | 1636 b.ForceDefaults(True)
|
/third_party/flatbuffers/docs/source/ |
D | Tutorial.md | 3288 One way to solve this is to call `ForceDefaults` on a FlatBufferBuilder to
|