aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Removal of null checkGravatar eissajamil@gmail.com2015-03-29
| | | | | Removed the redundant check for NULL which is already handled by using delete
* Removal of null checkGravatar eissajamil@gmail.com2015-03-29
| | | | | Removed the redundant check for NULL which is already correctly handled by used the delete
* Fix tile atomicops macro.Gravatar Jisi Liu2015-03-05
| | | | Change-Id: I1a3acadd059f87c26a2e26f3b7a169c0780e981e
* Merge pull request #175 from martiert/tile-supportGravatar Jisi Liu2015-03-05
|\ | | | | Add support for the TILE-Gx processor family.
* | Initialize data members in constructors instead of direct initialize inGravatar Jisi Liu2015-03-01
| | | | | | | | | | | | class definition, which is a C++11 extension. Change-Id: I477fe484d737f4c60c519d68f431940ffaa33431
* | use is_proto_enum instead of is_enum for repeated accessor field.Gravatar Jisi Liu2015-03-01
| | | | | | | | | | | | | | The later is not supported by some versions of MSVC and the former is more accurate for the use case. Change-Id: I7096226b1ebfef8340d288bbaf2788540aa3e97f
* | Fix hash.h for MSVC and platforms without hash map/set support.Gravatar Jisi Liu2015-03-01
| | | | | | | | Change-Id: Ic0fdb52c17b9495c73b8ce15879531383a148585
* | Fix hash_map type parameter to add Alloc for other platforms.Gravatar Jisi Liu2015-03-01
| | | | | | | | Change-Id: Idc5fb65a2cc469d55aff6f2cde0b51b326be0963
* | Use portable GOOGLE_PROTOBUF_THREAD_LOCAL instead of __thread.Gravatar Jisi Liu2015-03-01
| | | | | | | | Change-Id: Iaa75f8333541bc378bea699e7f147c7f17b652ad
* | Down integrate from Google internal branch for C++ and Java.Gravatar Jisi Liu2015-02-28
| | | | | | | | | | | | | | | | - Maps for C++ lite - C++ Arena optimizations. - Java Lite runtime code size optimization. Change-Id: I7537a4357c1cb385d23f9e8aa7ffdfeefe079f13
* | Merge pull request #185 from mzhaom/remove-unusedGravatar Jisi Liu2015-02-26
|\ \ | | | | | | Remove unused methods:
* \ \ Merge pull request #199 from google/wktGravatar Jisi Liu2015-02-26
|\ \ \ | | | | | | | | Add the .proto files for well-known types.
* | | | Fix the order of BUILT_FILES so that pbconfig.h will be built beforeGravatar Jisi Liu2015-02-25
| | | | | | | | | | | | | | | | | | | | | | | | anyother targets. Change-Id: I507009cd92a711739d7d58ccee93dfbf0a9fe135
* | | | Exclude pbconfg.h from dist, otherwise it breaks VS builds.Gravatar Jisi Liu2015-02-25
| | | | | | | | | | | | | | | | Change-Id: I7f745929b137b93c122448a4a2d9a7bbab6648d6
* | | | Merge pull request #221 from google/python_proto3Gravatar Jisi Liu2015-02-25
|\ \ \ \ | | | | | | | | | | Proto3 Python changes for v3.0.0-alpha-2
| * | | | Fixes for Python/C++ implementation in open-source:Gravatar Josh Haberman2015-02-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rosy hack doesn't apply (that test should be removed for the open-source release). * Added our own copy of parameterized.py (the open-source version of Google Apputils doesn't contain it). * The C++ Descriptor object didn't implement extension_ranges. * Had to implement a hack around returning EncodeError, to work around the module-loading behavior of the test runner.
* | | | | Include shared_ptr.h into headers to make maps proto work. It is usedGravatar Jisi Liu2015-02-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in the map_field_inl.h Change-Id: Ieeaab5507ee34b317d76b5937beb67c298905eb4
| * | | | Down integrate from Google internal.Gravatar Jisi Liu2015-02-25
| | | | | | | | | | | | | | | | | | | | Change-Id: I34d301133eea9c6f3a822c47d1f91e136fd33145
* | | | | Make maps fields work on installed C++ protobufs.Gravatar Jisi Liu2015-02-25
|/ / / / | | | | | | | | | | | | Change-Id: Id937e25bbb35968ee76c92bd4a8ce6247408c443
* | | | Propogate onChange() event when getFooBuilder() is on an oneof messageGravatar Jisi Liu2015-02-23
| | | | | | | | | | | | | | | | | | | | | | | | field. Change-Id: Idb5b53da5accd24038a895aba49b684eeee95814
* | | | Add shutdown code for several newly introduced leaks;Gravatar Jisi Liu2015-02-21
| | | | | | | | | | | | | | | | | | | | | | | | Disable commandline interface test for heap check tests. Change-Id: I02aa2ad9704e3c70dcecae8b3b3557b18607d455
* | | | Use static_cast instead of dynamic_cast in arena unittest so that it canGravatar Jisi Liu2015-02-20
| | | | | | | | | | | | | | | | | | | | | | | | pass in systems without rtti. Change-Id: Ib32b47a66f14928de9399c49dbdb07263a30d1bc
* | | | Fix review comments.Gravatar Jisi Liu2015-02-19
| | | | | | | | | | | | | | | | Change-Id: Iafd4a3aa9d55e31478bf070311eeadfe95ece4d7
* | | | Remove the unused set common oneof variables in helperGravatar Jisi Liu2015-02-19
| | | |
* | | | fix equal and hash for bytes field for javanano oneofGravatar Jisi Liu2015-02-19
| | | |
* | | | Clear oneofs.Gravatar Jisi Liu2015-02-19
| | | |
* | | | hashcode and equals for oneofs in nano.Gravatar Jisi Liu2015-02-19
| | | |
* | | | Equals for message oneof field in nano.Gravatar Jisi Liu2015-02-19
| | | |
* | | | Oneof message level elements (consts, case getter/clear) and messsage type ↵Gravatar Jisi Liu2015-02-19
| | | | | | | | | | | | | | | | field oneof support.
* | | | Initial check-in for message oneof.Gravatar Jisi Liu2015-02-19
| | | |
* | | | Initial check in for primitive oneof fields.Gravatar Jisi Liu2015-02-19
| | | |
* | | | Merge branch 'master' of github.com:google/protobufGravatar Josh Haberman2015-02-17
|\ \ \ \
* | | | | Integrate changes from Google open-source branch.Gravatar Josh Haberman2015-02-17
| | | | |
| * | | | Merge pull request #204 from pherl/masterGravatar Jisi Liu2015-02-17
| |\ \ \ \ | | | | | | | | | | | | Implement maps for JavaNano
| * | | | | Properly support maps in Ruby protoc and another bugfix.Gravatar Chris Fallin2015-02-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, we supported map fields in the Ruby DSL. However, we never connected the final link in the chain and generated `map` DSL commands for map fields in `.proto` files. My apologies -- I had been testing with the DSL directly so I missed this. Also fixed a handlerdata-setup-infinite-loop when a map value field's type is its containing message.
| * | | | | MIPS: remove immediate constraint within CompareAndSwap.Gravatar Gordana Cmiljanovic2015-02-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improper use of immediate constraint is slightly non-optimal with gcc/gnu-as but may cause breakage with clang.
| | | * | | Add the .proto files for well-known types.Gravatar Feng Xiao2015-02-09
| | |/ / / | |/| | |
| * | | | Add missing LIBPROTOC_EXPORT to ruby generatorGravatar Nobuaki Sukegawa2015-02-08
| | | | |
| | * | | Get the map factory per mergeFrom() call for JavaNano.Gravatar Jisi Liu2015-02-07
| | | | |
| | * | | implement hashCode() for JavaNano maps.Gravatar Jisi Liu2015-02-06
| | | | |
| | * | | Implement Equals for nano.Gravatar Jisi Liu2015-02-06
| | | | |
| | * | | Fix the behavior when merging conflicting keys, the new value alwaysGravatar Jisi Liu2015-02-05
| | | | | | | | | | | | | | | | | | | | override the existing one even for message types.
| | * | | Moving internal code to InternalNano and rename MapUtil to MapFactories.Gravatar Jisi Liu2015-02-04
| | | | |
| | * | | parsing and serialzation for maps in JavaNano.Gravatar Jisi Liu2015-02-03
| | | | |
| | * | | Parsing for Maps in JavaNanoGravatar Jisi Liu2015-02-02
| | | | |
| * | | | Merge pull request #186 from ennerf/win32-msvc-fixGravatar Feng Xiao2015-02-02
| |\ \ \ \ | | | | | | | | | | | | MSVC protoc compiler fix
| | | * | | Use map generator for maps field; skip entry message.Gravatar Jisi Liu2015-02-02
| | | | | |
| * | | | | Merge pull request #168 from cfallin/ruby-oneofGravatar Joshua Haberman2015-02-02
| |\ \ \ \ \ | | | | | | | | | | | | | | Support oneofs in MRI Ruby C extension.
| | | * | | | removed accidental whitespaceGravatar Florian Enner2015-02-02
| | | | | | |
| | | * | | | replaced type fix with the recommended wayGravatar Florian Enner2015-01-31
| | | | | | |