Home
last modified time | relevance | path

Searched refs:force_defaults (Results 1 – 7 of 7) sorted by relevance

/external/flatbuffers/php/
DFlatbufferBuilder.php81 protected $force_defaults = false; variable in Google\\FlatBuffers\\FlatbufferBuilder
410 if ($this->force_defaults || $x != $d) {
423 if ($this->force_defaults || $x != $d) {
436 if ($this->force_defaults || $x != $d) {
449 if ($this->force_defaults || $x != $d) {
462 if ($this->force_defaults || $x != $d) {
475 if ($this->force_defaults || $x != $d) {
488 if ($this->force_defaults || $x != $d) {
501 if ($this->force_defaults || $x != $d) {
514 if ($this->force_defaults || $x != $d) {
[all …]
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java47 boolean force_defaults = false; // False omits default values from the serialized data. field in FlatBufferBuilder
653 …public void addBoolean(int o, boolean x, boolean d) { if(force_defaults || x != d) { addBoolean(x)… in addBoolean()
664 …public void addByte (int o, byte x, int d) { if(force_defaults || x != d) { addByte (x)… in addByte()
675 …public void addShort (int o, short x, int d) { if(force_defaults || x != d) { addShort (x)… in addShort()
686 …public void addInt (int o, int x, int d) { if(force_defaults || x != d) { addInt (x)… in addInt()
697 …public void addLong (int o, long x, long d) { if(force_defaults || x != d) { addLong (x)… in addLong()
708 …public void addFloat (int o, float x, double d) { if(force_defaults || x != d) { addFloat (x)… in addFloat()
719 …public void addDouble (int o, double x, double d) { if(force_defaults || x != d) { addDouble (x)… in addDouble()
730 …public void addOffset (int o, int x, int d) { if(force_defaults || x != d) { addOffset (x)… in addOffset()
920 this.force_defaults = forceDefaults; in forceDefaults()
/external/flatbuffers/js/
Dflatbuffers.js226 this.force_defaults = false;
239 this.force_defaults = false;
250 this.force_defaults = forceDefaults;
417 if (this.force_defaults || value != defaultValue) {
429 if (this.force_defaults || value != defaultValue) {
441 if (this.force_defaults || value != defaultValue) {
453 if (this.force_defaults || !value.equals(defaultValue)) {
465 if (this.force_defaults || value != defaultValue) {
477 if (this.force_defaults || value != defaultValue) {
489 if (this.force_defaults || value != defaultValue) {
/external/flatbuffers/include/flatbuffers/
Didl.h432 bool force_defaults; member
503 force_defaults(false), in IDLOptions()
606 if (opts.force_defaults) { in current_namespace_()
/external/flatbuffers/tests/fuzzer/
Dflatbuffers_scalar_fuzzer.cc248 opts.force_defaults = true; in LLVMFuzzerTestOneInput()
/external/flatbuffers/src/
Dflatc.cpp307 opts.force_defaults = true; in Compile()
/external/flatbuffers/docs/source/
DSchemas.md595 Some `FlatBufferBuilder` implementations have an option called `force_defaults`