- 20 May, 2015 10 commits
-
-
Wouter van Oortmerssen authored
Change-Id: I290c33c475f7b019ab0d3c571245d27351d22fa1 Tested: on Linux.
-
Wouter van Oortmerssen authored
Change-Id: Iea5fab66047ac0a5057a743dbb1fdb27c063188c Tested: on Linux.
-
Wouter van Oortmerssen authored
Change-Id: Id268e35de207c25c809a09071b81eea873c9123e Tested: on Linux.
-
gwvo authored
Add include for cstdlib for std::bsearch definition
-
Zach Reizner authored
-
Robert authored
Go: CreateString now needs zero allocs.
-
rw authored
-
rw authored
-
rw authored
Big speed boost for the typical use case of building with strings.
-
gwvo authored
Fixed endianness Vector's begin() and end()
-
- 19 May, 2015 2 commits
-
-
gwvo authored
Use std::bsearch in LookupByKey for binary search
-
Zach Reizner authored
-
- 18 May, 2015 1 commit
-
-
gwvo authored
Update Python docs and package description
-
- 15 May, 2015 2 commits
- 14 May, 2015 2 commits
-
-
Wouter van Oortmerssen authored
-
Wouter van Oortmerssen authored
-
- 13 May, 2015 4 commits
-
-
Robert authored
Port FlatBuffers to Python.
-
rw authored
-
rw authored
-
Raphael Zulliger authored
-
- 12 May, 2015 2 commits
-
-
rw authored
Implement code generation and self-contained runtime library for Python. The test suite verifies: - Correctness of generated Python code by comparing output to that of the other language ports. - The exact bytes in the Builder buffer during many scenarios. - Vtable deduplication correctness. - Edge cases for table construction, via a fuzzer derived from the Go implementation. - All code is simultaneously valid in Python 2.6, 2.7, and 3.4. The test suite includes benchmarks for: - Building 'gold' data. - Parsing 'gold' data. - Deduplicating vtables. All tests pass on this author's system for the following Python implementations: - CPython 2.6.7 - CPython 2.7.8 - CPython 3.4.2 - PyPy 2.5.0 (CPython 2.7.8 compatible)
-
Robert authored
Go speed improvements
-
- 11 May, 2015 4 commits
-
-
gwvo authored
Issue #188
-
gwvo authored
Added a default constructor for Java's FlatBufferBuilder.
-
Wouter van Oortmerssen authored
Change-Id: Ib561430b235eddf4bfe20f68409e1dfdb359ef2b Tested: on Linux.
-
Jean-Baptiste "Jiboo" Lepesme authored
Default's size of 1024b like in cpp. Fixes #190.
-
- 09 May, 2015 5 commits
- 08 May, 2015 5 commits
-
-
Mormegil authored
When accessing a union field, we should return the same object type as was given to the method, i.e. the parameter should have a generic type for any Table-derived type. This way, we do not need to make superfluous casts (which also reduce type safety) like var myUnionType = (MyUnionType)buff.GetUnionField(new MyUnionType()); when we can do just var myUnionType = buff.GetUnionField(new MyUnionType()); Change-Id: Idac1b638e46cc50b1f2dc19f10741481202b1515
-
pjulien authored
Change-Id: I17a7896e257c0ab7e4cd1b22c928d4cee21fbf11
-
pjulien authored
Allows adding an already encoded UTF-8 string directly without having to convert to a ``String`` first. Change-Id: I23f9c738eec18fd35f4c14f58dbd0f6cf0970dc7
-
Wouter van Oortmerssen authored
Also made proper namespacing work for enums. You can now say namespace.MyTable as the type when declaring a field that refers to a type in a different namespace. Previously, it would work just referring to MyTable, however with the recent commit fixing namespaced types this now is ambiguous. Change-Id: Ieaa3f4ac1662b8c4dc1f16e1898ea3cdb02e10fd Tested: on Linux.
-
Brett Cooley authored
Merge "Initial support for propagating namespaces from schema files to generated code" into ub-games-master
-
- 07 May, 2015 1 commit
-
-
Jason Sanmiya authored
Tested: Help text displays correctly now. Change-Id: Ibbdc810ae41e24321860879064bdc64f78a67cb9
-
- 06 May, 2015 2 commits
-
-
Mormegil authored
In C#, plain field accessors should not be nonparametric methods but should be standard property getters. The accessor methods with parameters were renamed to `GetXxx` because a method cannot be named identically to a property. Also, `ByteBuffer.Position`, `FlatBufferBuilder.Offset` and `FlatBufferBuilder.DataBuffer` are now properties instead of nonparametric accessor methods, for more idiomatic C# style. This is a breaking change, all client C# code accessing these fields needs to be changed (i.e. remove those `()` or add the `Get` prefix). Issue: #77 Change-Id: Iaabe9ada076e5ea2c69911cf6170fdda2df3487e
-
yinlei authored
Change-Id: I475ef9454f51f1b7ec2a7f9086d711359456677a
-