Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Issue 21208003: Update protobuf to r428, part 1. (Closed)

Created:
7 years, 4 months ago by Alexander Potapenko
Modified:
7 years, 4 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org
Visibility:
Public.

Description

Update protobuf to r428, part 1. This has been done by: - patching third_party/protobuf with the upstream diff for r423:426 and r428 (427 has already been cherrypicked) - manually applying the rejected hunks in the following files: src/google/protobuf/wire_format.cc src/google/protobuf/wire_format_lite.h src/google/protobuf/unknown_field_set.cc src/google/protobuf/descriptor.pb.h src/google/protobuf/extension_set.cc src/google/protobuf/wire_format_lite.cc src/google/protobuf/descriptor.pb.cc src/google/protobuf/wire_format.h src/google/protobuf/compiler/plugin.pb.h src/google/protobuf/compiler/cpp/cpp_helpers.h src/google/protobuf/compiler/cpp/cpp_file.cc vsprojects/lite-test.vcproj.rej vsprojects/libprotobuf-lite.vcproj.rej vsprojects/libprotobuf.vcproj.rej vsprojects/tests.vcproj.rej vsprojects/extract_includes.bat.rej - adding the new cc/h files to protobuf.gyp and disabling MSVC warning C4291 - rebuilding descriptor.pb.{cc,h} using the upstream protoc r425 - fixing compilation (replaced WireFormat with WireFormatLite where applicable) - cherry-picking the upstream r505 - applying patch from https://code.google.com/p/protobuf/issues/detail?id=539 To reduce the changelist size, some of the test files were excluded. They will be committed separately: https://codereview.chromium.org/21231003 BUG=259808 TBR=agl@chromium.org, pliard@google.com Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=216961

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Patch Set 9 : #

Patch Set 10 : #

Patch Set 11 : #

Patch Set 12 : #

Patch Set 13 : #

Patch Set 14 : #

Patch Set 15 : #

Patch Set 16 : #

Patch Set 17 : #

Patch Set 18 : #

Patch Set 19 : #

Patch Set 20 : #

Patch Set 21 : #

Patch Set 22 : #

Patch Set 23 : #

Patch Set 24 : #

Patch Set 25 : #

Patch Set 26 : #

Patch Set 27 : #

Patch Set 28 : #

Patch Set 29 : #

Patch Set 30 : #

Patch Set 31 : #

Patch Set 32 : #

Patch Set 33 : #

Patch Set 34 : #

Total comments: 1

Patch Set 35 : #

Patch Set 36 : #

Patch Set 37 : #

Patch Set 38 : #

Patch Set 39 : #

Patch Set 40 : #

Patch Set 41 : #

Patch Set 42 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+24686 lines, -4003 lines) Patch
M third_party/protobuf/CHANGES.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +58 lines, -0 lines 0 comments Download
M third_party/protobuf/README.chromium View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -4 lines 0 comments Download
M third_party/protobuf/java/pom.xml View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +9 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 16 chunks +251 lines, -85 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +22 lines, -4 lines 0 comments Download
A third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +261 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/main/java/com/google/protobuf/BoundedByteString.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +163 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/ByteString.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +718 lines, -159 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +38 lines, -3 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/CodedOutputStream.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +32 lines, -2 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 29 chunks +120 lines, -37 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 13 chunks +56 lines, -12 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +17 lines, -1 line 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 24 chunks +105 lines, -32 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 17 chunks +142 lines, -37 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +171 lines, -105 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/Internal.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +21 lines, -74 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +21 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/main/java/com/google/protobuf/LazyField.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +216 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +27 lines, -3 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringList.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +13 lines, -4 lines 0 comments Download
A third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +349 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +26 lines, -4 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 10 chunks +17 lines, -23 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/MessageOrBuilder.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +21 lines, -2 lines 0 comments Download
A third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +259 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +7 lines, -7 lines 0 comments Download
A third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +945 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/SingleFieldBuilder.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/SmallSortedMap.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +5 lines, -5 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 16 chunks +102 lines, -19 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +27 lines, -2 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +7 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/main/java/com/google/protobuf/Utf8.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +349 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/main/java/com/google/protobuf/WireFormat.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +50 lines, -1 line 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/BoundedByteStringTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +68 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/ByteStringTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +692 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +8 lines, -9 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +190 lines, -2 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/DynamicMessageTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +55 lines, -17 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/GeneratedMessageTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +167 lines, -1 line 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8Test.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +180 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +421 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +44 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +28 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +396 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/MessageTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +40 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/ParserTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +375 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +97 lines, -0 lines 0 comments Download
A third_party/protobuf/java/src/test/java/com/google/protobuf/RopeByteStringTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +115 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/TestBadIdentifiers.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +16 lines, -2 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 67 chunks +177 lines, -33 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +34 lines, -0 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +155 lines, -2 lines 0 comments Download
M third_party/protobuf/java/src/test/java/com/google/protobuf/test_bad_identifiers.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +18 lines, -0 lines 0 comments Download
M third_party/protobuf/protobuf.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +16 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/descriptor.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +120 lines, -5 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/descriptor_database.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +120 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/descriptor_pool.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +527 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/api_implementation.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +23 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/containers.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +12 lines, -2 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/cpp_message.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 13 chunks +82 lines, -35 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/decoder.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +6 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/descriptor_database_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +63 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/descriptor_pool_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +220 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/descriptor_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +279 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/enum_type_wrapper.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +89 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/factory_test1.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +55 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/factory_test2.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +77 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/generator_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +25 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/message_cpp_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +45 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/message_factory_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +113 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/message_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 13 chunks +166 lines, -15 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/more_extensions_dynamic.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +49 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/python_message.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 20 chunks +59 lines, -7 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/reflection_cpp_generated_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +91 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/reflection_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 15 chunks +269 lines, -19 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/test_bad_identifiers.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +52 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/test_util.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 11 chunks +18 lines, -2 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/internal/text_format_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 7 chunks +40 lines, -14 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/internal/unknown_fields_test.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +170 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/message.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +12 lines, -0 lines 0 comments Download
A third_party/protobuf/python/google/protobuf/message_factory.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +113 lines, -0 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 11 chunks +77 lines, -14 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +6 lines, -3 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/reflection.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +31 lines, -4 lines 0 comments Download
M third_party/protobuf/python/google/protobuf/text_format.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 15 chunks +150 lines, -107 lines 0 comments Download
M third_party/protobuf/python/setup.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +65 lines, -24 lines 0 comments Download
M third_party/protobuf/src/Makefile.am View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 10 chunks +22 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +40 lines, -5 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 24 chunks +156 lines, -76 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +114 lines, -6 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +4 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +4 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +14 lines, -9 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +4 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +13 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +17 lines, -14 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_file.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +3 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_file.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 12 chunks +42 lines, -16 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +5 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +8 lines, -4 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +38 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +3 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 15 chunks +41 lines, -14 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +4 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +21 lines, -8 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +58 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +4 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +11 lines, -6 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +6 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 11 chunks +60 lines, -23 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +10 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +51 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +72 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/importer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +3 lines, -2 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +69 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +236 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +66 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_enum.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_enum.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 7 chunks +35 lines, -7 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 13 chunks +87 lines, -21 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_extension.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_file.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +81 lines, -19 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +17 lines, -10 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +40 lines, -18 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_message.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_message.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 19 chunks +302 lines, -154 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_message_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_message_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 30 chunks +118 lines, -28 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 13 chunks +86 lines, -18 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +3 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_string_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/java/java_string_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 18 chunks +140 lines, -24 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/main.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +11 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/parser.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +48 lines, -5 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/parser.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 31 chunks +269 lines, -131 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 chunks +510 lines, -258 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/plugin.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +0 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 24 chunks +129 lines, -64 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 34 chunks +48 lines, -41 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/python/python_generator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/python/python_generator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 20 chunks +171 lines, -20 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/subprocess.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/compiler/subprocess.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 23 chunks +156 lines, -6 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 45 chunks +549 lines, -111 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 10 chunks +91 lines, -9 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor.pb.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 170 chunks +1250 lines, -482 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor.pb.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 254 chunks +935 lines, -502 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor_database.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor_database.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/descriptor_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 28 chunks +661 lines, -41 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/dynamic_message.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/dynamic_message.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 7 chunks +32 lines, -11 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/dynamic_message_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/extension_set.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 10 chunks +165 lines, -62 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/extension_set.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 21 chunks +204 lines, -208 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/extension_set_heavy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +265 lines, -10 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/extension_set_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +86 lines, -6 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/generated_enum_reflection.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +85 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/generated_message_reflection.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +22 lines, -27 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/generated_message_reflection.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 10 chunks +81 lines, -16 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +100 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/generated_message_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +8 lines, -13 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/generated_message_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +0 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/io/coded_stream.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 12 chunks +33 lines, -14 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/coded_stream.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +33 lines, -15 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/coded_stream_inl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +61 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/io/gzip_stream.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +8 lines, -6 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/gzip_stream.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +5 lines, -14 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/printer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +3 lines, -4 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/printer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +25 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/io/tokenizer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +78 lines, -7 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/tokenizer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 13 chunks +446 lines, -49 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +238 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +94 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/lite_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +74 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/message.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 10 chunks +143 lines, -19 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/message.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +41 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/message_lite.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +8 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/message_lite.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/message_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +73 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/reflection_ops.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/reflection_ops.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +12 lines, -7 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/repeated_field.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 38 chunks +299 lines, -75 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/repeated_field.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +5 lines, -16 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +193 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 29 chunks +313 lines, -40 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_macosx.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +6 lines, -7 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/common.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +24 lines, -11 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/common.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +18 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/hash.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +12 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/map-util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +24 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/stl_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +121 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/stringprintf.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +76 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/stringprintf.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +175 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/stringprintf_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +152 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/strutil.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +12 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/strutil.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +38 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/stubs/substitute.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -1 line 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/template_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +138 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/template_util_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +130 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/type_traits.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +346 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +647 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/test_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +20 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/test_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 64 chunks +248 lines, -55 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/test_util_lite.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 30 chunks +98 lines, -52 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_data.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +12 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_extensions_data.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +12 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/testing/googletest.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +5 lines, -6 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/testing/googletest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +6 lines, -5 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/text_format.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +63 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/text_format.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 16 chunks +250 lines, -14 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/text_format_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +102 lines, -2 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unittest.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 9 chunks +88 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unittest_custom_options.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +21 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unittest_import.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unittest_import_lite.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/unittest_import_public.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +40 lines, -0 lines 0 comments Download
A third_party/protobuf/src/google/protobuf/unittest_import_public_lite.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +42 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unittest_lite.proto View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +48 lines, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unknown_field_set.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 7 chunks +59 lines, -16 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unknown_field_set.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +70 lines, -8 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 5 chunks +85 lines, -3 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/wire_format.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -0 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/wire_format.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4 chunks +9 lines, -10 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/wire_format_lite.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +7 lines, -5 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/wire_format_lite.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +3 lines, -1 line 0 comments Download
M third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +7 lines, -5 lines 0 comments Download
M third_party/protobuf/src/google/protobuf/wire_format_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +83 lines, -10 lines 0 comments Download
M third_party/protobuf/vsprojects/extract_includes.bat View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
Alexander Potapenko
Please take a look. This is part 1/2 of the update, part 2 is at ...
7 years, 4 months ago (2013-07-31 16:14:33 UTC) #1
Alexander Potapenko
On 2013/07/31 16:14:33, Alexander Potapenko wrote: > Please take a look. > This is part ...
7 years, 4 months ago (2013-08-05 09:06:52 UTC) #2
pliard
lgtm, thanks a lot Alexander for doing this! Sorry for the delay. https://codereview.chromium.org/21208003/diff/197106/third_party/protobuf/README.chromium File third_party/protobuf/README.chromium ...
7 years, 4 months ago (2013-08-06 11:48:16 UTC) #3
agl
lgtm Rubber stamp LGTM.
7 years, 4 months ago (2013-08-06 14:38:51 UTC) #4
Alexander Potapenko
I've managed to join this CL with Part 2 (https://codereview.chromium.org/21231003) and will be committing them ...
7 years, 4 months ago (2013-08-12 08:57:40 UTC) #5
Alexander Potapenko
(actually sending email to Brett)
7 years, 4 months ago (2013-08-12 08:58:25 UTC) #6
Alexander Potapenko
Committed patchset #42 manually as r216961 (presubmit successful).
7 years, 4 months ago (2013-08-12 08:59:50 UTC) #7
Nico
7 years, 4 months ago (2013-08-13 14:56:54 UTC) #8
Message was sent while issue was closed.
(this likely caused http://crbug.com/272212)

Powered by Google App Engine
This is Rietveld 408576698