Home
last modified time | relevance | path

Searched refs:goog (Results 1 – 25 of 155) sorted by relevance

1234567

/third_party/protobuf/js/binary/
Dencoder.js38 goog.provide('jspb.BinaryEncoder');
40 goog.require('goog.asserts');
41 goog.require('jspb.BinaryConstants');
42 goog.require('jspb.utils');
84 goog.asserts.assert(lowBits == Math.floor(lowBits));
85 goog.asserts.assert(highBits == Math.floor(highBits));
86 goog.asserts.assert((lowBits >= 0) &&
88 goog.asserts.assert((highBits >= 0) &&
109 goog.asserts.assert(lowBits == Math.floor(lowBits));
110 goog.asserts.assert(highBits == Math.floor(highBits));
[all …]
Dconstants.js38 goog.provide('jspb.AnyFieldType');
39 goog.provide('jspb.BinaryConstants');
40 goog.provide('jspb.BinaryMessage');
41 goog.provide('jspb.BuilderFunction');
42 goog.provide('jspb.ByteSource');
43 goog.provide('jspb.ClonerFunction');
44 goog.provide('jspb.ComparerFunction');
45 goog.provide('jspb.ConstBinaryMessage');
46 goog.provide('jspb.PrunerFunction');
47 goog.provide('jspb.ReaderFunction');
[all …]
Dreader.js47 goog.provide('jspb.BinaryReader');
49 goog.require('goog.asserts');
50 goog.require('jspb.BinaryConstants');
51 goog.require('jspb.BinaryDecoder');
52 goog.require('jspb.utils');
275 goog.asserts.fail('Decoder hit an error');
294 goog.asserts.fail(
338 goog.asserts.fail('Invalid wire type for skipVarintField');
352 goog.asserts.fail('Invalid wire type for skipDelimitedField');
367 goog.asserts.fail('Invalid wire type for skipFixed32Field');
[all …]
Dproto_test.js33 goog.require('goog.crypt.base64');
34 goog.require('goog.testing.asserts');
35 goog.require('jspb.BinaryWriter');
36 goog.require('jspb.Message');
39 goog.require('proto.jspb.test.ExtendsWithMessage');
40 goog.require('proto.jspb.test.ForeignEnum');
41 goog.require('proto.jspb.test.ForeignMessage');
42 goog.require('proto.jspb.test.TestAllTypes');
43 goog.require('proto.jspb.test.TestExtendable');
44 goog.require('proto.jspb.test.extendOptionalBool');
[all …]
Ddecoder.js46 goog.provide('jspb.BinaryDecoder');
48 goog.require('goog.asserts');
49 goog.require('goog.crypt');
50 goog.require('jspb.utils');
238 goog.asserts.assert(this.cursor_ <= this.end_);
321 goog.asserts.fail('Failed to read varint, encoding is invalid.');
427 goog.asserts.assert(this.cursor_ <= this.end_);
435 goog.asserts.assert(this.cursor_ <= this.end_);
443 goog.asserts.assert(this.cursor_ <= this.end_);
451 goog.asserts.assert(this.cursor_ <= this.end_);
[all …]
/third_party/protobuf/js/commonjs/
Dexport_testdeps.js12 goog.provide('jspb.ExportTestDeps');
14 goog.require('goog.crypt.base64');
15 goog.require('goog.testing.PropertyReplacer');
16 goog.require('jspb.arith.Int64');
17 goog.require('jspb.arith.UInt64');
18 goog.require('jspb.BinaryEncoder');
19 goog.require('jspb.BinaryDecoder');
20 goog.require('jspb.BinaryWriter');
21 goog.require('jspb.utils');
23 exports.goog = goog;
Dexport.js10 goog.provide('jspb.Export');
12 goog.require('goog.object');
13 goog.require('jspb.BinaryReader');
14 goog.require('jspb.BinaryWriter');
15 goog.require('jspb.ExtensionFieldBinaryInfo');
16 goog.require('jspb.ExtensionFieldInfo');
17 goog.require('jspb.Message');
18 goog.require('jspb.Map');
28 exports.exportSymbol = goog.exportSymbol;
29 exports.inherits = goog.inherits;
[all …]
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Dproto_test.js33 goog.require('goog.crypt.base64');
34 goog.require('goog.testing.asserts');
35 goog.require('jspb.Message');
38 goog.require('proto.jspb.test.ExtendsWithMessage');
39 goog.require('proto.jspb.test.ForeignEnum');
40 goog.require('proto.jspb.test.ForeignMessage');
41 goog.require('proto.jspb.test.TestAllTypes');
42 goog.require('proto.jspb.test.TestExtendable');
43 goog.require('proto.jspb.test.extendOptionalBool');
44 goog.require('proto.jspb.test.extendOptionalBytes');
[all …]
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Dproto_test.js33 goog.require('goog.crypt.base64');
34 goog.require('goog.testing.asserts');
35 goog.require('jspb.Message');
38 goog.require('proto.jspb.test.ExtendsWithMessage');
39 goog.require('proto.jspb.test.ForeignEnum');
40 goog.require('proto.jspb.test.ForeignMessage');
41 goog.require('proto.jspb.test.TestAllTypes');
42 goog.require('proto.jspb.test.TestExtendable');
43 goog.require('proto.jspb.test.extendOptionalBool');
44 goog.require('proto.jspb.test.extendOptionalBytes');
[all …]
/third_party/protobuf/js/
Ddebug.js35 goog.provide('jspb.debug');
37 goog.require('goog.array');
38 goog.require('goog.asserts');
39 goog.require('goog.object');
40 goog.require('jspb.Map');
41 goog.require('jspb.Message');
55 if (!goog.DEBUG) {
58 goog.asserts.assert(message instanceof jspb.Message,
62 goog.asserts.assert(object['getExtension'],
77 var type = goog.typeOf(thing);
[all …]
Dmessage_test.js33 goog.setTestOnly();
35 goog.require('goog.testing.PropertyReplacer');
36 goog.require('goog.testing.asserts');
37 goog.require('goog.userAgent');
40 goog.require('jspb.Message');
43 goog.require('proto.jspb.filenametest.package1.b');
46 goog.require('proto.jspb.filenametest.package2.TestMessage');
49 goog.require('proto.jspb.filenametest.package1.a');
50 goog.require('proto.jspb.filenametest.package1.TestMessage');
53 goog.require('proto.jspb.circulartest.ExtensionContainingType1');
[all …]
Dmessage.js37 goog.provide('jspb.ExtensionFieldBinaryInfo');
38 goog.provide('jspb.ExtensionFieldInfo');
39 goog.provide('jspb.Message');
41 goog.require('goog.array');
42 goog.require('goog.asserts');
43 goog.require('goog.crypt.base64');
44 goog.require('jspb.BinaryReader');
45 goog.require('jspb.Map');
174 goog.define('jspb.Message.GENERATE_TO_OBJECT', true);
186 jspb.Message.GENERATE_FROM_OBJECT = goog.define(
[all …]
Ddebug_test.js31 goog.setTestOnly();
33 goog.require('goog.testing.asserts');
36 goog.require('jspb.debug');
39 goog.require('proto.jspb.test.HasExtensions');
40 goog.require('proto.jspb.test.IsExtension');
41 goog.require('proto.jspb.test.MapValueMessageNoBinary');
42 goog.require('proto.jspb.test.Simple1');
43 goog.require('proto.jspb.test.TestMapFieldsNoBinary');
47 goog.require('proto.jspb.test.TestAllTypes');
Dmaps_test.js31 goog.require('goog.testing.asserts');
32 goog.require('goog.userAgent');
35 goog.require('proto.jspb.test.MapValueEnum');
36 goog.require('proto.jspb.test.MapValueMessage');
37 goog.require('proto.jspb.test.TestMapFields');
38 goog.require('proto.jspb.test.TestMapFieldsOptionalKeys');
39 goog.require('proto.jspb.test.TestMapFieldsOptionalValues');
40 goog.require('proto.jspb.test.MapEntryOptionalKeysStringKey');
41 goog.require('proto.jspb.test.MapEntryOptionalKeysInt32Key');
42 goog.require('proto.jspb.test.MapEntryOptionalKeysInt64Key');
[all …]
/third_party/protobuf/js/experimental/runtime/kernel/
Dreader_test.js4 goog.module('protobuf.binary.ReaderTest');
6 goog.setTestOnly();
12 const BufferDecoder = goog.require('protobuf.binary.BufferDecoder');
13 const ByteString = goog.require('protobuf.ByteString');
14 const reader = goog.require('protobuf.binary.reader');
15 const {CHECK_CRITICAL_STATE} = goog.require('protobuf.internal.checks');
16 const {createBufferDecoder} = goog.require('protobuf.binary.bufferDecoderHelper');
17 const {encode} = goog.require('protobuf.binary.textencoding');
18 const {getBoolPairs} = goog.require('protobuf.binary.boolTestPairs');
19 const {getDoublePairs} = goog.require('protobuf.binary.doubleTestPairs');
[all …]
Dindexer.js5 goog.module('protobuf.binary.indexer');
7 const BinaryStorage = goog.require('protobuf.runtime.BinaryStorage');
8 const BufferDecoder = goog.require('protobuf.binary.BufferDecoder');
9 const WireType = goog.require('protobuf.binary.WireType');
10 const {Field} = goog.require('protobuf.binary.field');
11 const {checkCriticalState} = goog.require('protobuf.internal.checks');
12 const {skipField, tagToFieldNumber, tagToWireType} = goog.require('protobuf.binary.tag');
Dwriter_test.js4 goog.module('protobuf.binary.WriterTest');
6 goog.setTestOnly();
12 const BufferDecoder = goog.require('protobuf.binary.BufferDecoder');
13 const ByteString = goog.require('protobuf.ByteString');
14 const WireType = goog.require('protobuf.binary.WireType');
15 const Writer = goog.require('protobuf.binary.Writer');
16 const {CHECK_BOUNDS, CHECK_TYPE, MAX_FIELD_NUMBER} = goog.require('protobuf.internal.checks');
17 const {arrayBufferSlice} = goog.require('protobuf.binary.typedArrays');
18 const {getDoublePairs} = goog.require('protobuf.binary.doubleTestPairs');
19 const {getFixed32Pairs} = goog.require('protobuf.binary.fixed32TestPairs');
[all …]
/third_party/protobuf/js/compatibility_tests/v3.0.0/commonjs/
Dexport_testdeps.js10 goog.require('goog.crypt.base64');
11 goog.require('jspb.arith.Int64');
12 goog.require('jspb.arith.UInt64');
13 goog.require('jspb.BinaryEncoder');
14 goog.require('jspb.BinaryDecoder');
15 goog.require('jspb.utils');
17 exports.goog = goog;
/third_party/libphonenumber/javascript/i18n/phonenumbers/
Ddemo.js23 goog.provide('i18n.phonenumbers.demo');
25 goog.require('goog.dom');
26 goog.require('goog.json');
27 goog.require('goog.proto2.ObjectSerializer');
28 goog.require('goog.string.StringBuffer');
29 goog.require('i18n.phonenumbers.AsYouTypeFormatter');
30 goog.require('i18n.phonenumbers.PhoneNumberFormat');
31 goog.require('i18n.phonenumbers.PhoneNumberType');
32 goog.require('i18n.phonenumbers.PhoneNumberUtil');
33 goog.require('i18n.phonenumbers.PhoneNumberUtil.ValidationResult');
[all …]
Dphonemetadata.pb.js24 goog.provide('i18n.phonenumbers.NumberFormat');
25 goog.provide('i18n.phonenumbers.PhoneNumberDesc');
26 goog.provide('i18n.phonenumbers.PhoneMetadata');
27 goog.provide('i18n.phonenumbers.PhoneMetadataCollection');
29 goog.require('goog.proto2.Message');
30 goog.require('goog.proto2.Descriptor');
41 goog.proto2.Message.call(this);
43 goog.inherits(i18n.phonenumbers.NumberFormat, goog.proto2.Message);
386 goog.proto2.Message.call(this);
388 goog.inherits(i18n.phonenumbers.PhoneNumberDesc, goog.proto2.Message);
[all …]
Dphonenumber.pb.js25 goog.provide('i18n.phonenumbers.PhoneNumber');
26 goog.provide('i18n.phonenumbers.PhoneNumber.CountryCodeSource');
28 goog.require('goog.proto2.Message');
29 goog.require('goog.proto2.Descriptor');
40 goog.proto2.Message.call(this);
42 goog.inherits(i18n.phonenumbers.PhoneNumber, goog.proto2.Message);
494 fieldType: goog.proto2.Message.FieldType.INT32,
500 fieldType: goog.proto2.Message.FieldType.UINT64,
505 fieldType: goog.proto2.Message.FieldType.STRING,
510 fieldType: goog.proto2.Message.FieldType.BOOL,
[all …]
/third_party/protobuf/js/experimental/runtime/kernel/conformance/
Dconformance_testee.js1 goog.module('javascript.protobuf.conformance');
3 const ConformanceRequest = goog.require('proto.conformance.ConformanceRequest');
4 const ConformanceResponse = goog.require('proto.conformance.ConformanceResponse');
5 const TestAllTypesProto2 = goog.require('proto.conformance.TestAllTypesProto2');
6 const TestAllTypesProto3 = goog.require('proto.conformance.TestAllTypesProto3');
7 const WireFormat = goog.require('proto.conformance.WireFormat');
8 const base64 = goog.require('goog.crypt.base64');
103 goog.exportSymbol('runConformanceTest', runConformanceTest);
/third_party/protobuf/js/compatibility_tests/v3.1.0/
Ddebug_test.js31 goog.setTestOnly();
33 goog.require('goog.testing.asserts');
36 goog.require('jspb.debug');
39 goog.require('proto.jspb.test.HasExtensions');
40 goog.require('proto.jspb.test.IsExtension');
41 goog.require('proto.jspb.test.Simple1');
/third_party/protobuf/js/compatibility_tests/v3.0.0/
Ddebug_test.js31 goog.setTestOnly();
33 goog.require('goog.testing.asserts');
36 goog.require('jspb.debug');
39 goog.require('proto.jspb.test.HasExtensions');
40 goog.require('proto.jspb.test.IsExtension');
41 goog.require('proto.jspb.test.Simple1');
/third_party/protobuf/js/experimental/benchmarks/code_size/kernel/
Dpopular_types.js20 goog.module('protobuf.benchmark.KernelCodeSizeBenchmarkPopularTypes');
22 const Int64 = goog.require('protobuf.Int64');
23 const Kernel = goog.require('protobuf.runtime.Kernel');
24 const TestMessage = goog.require('protobuf.testing.binary.TestMessage');
25 const {ensureCommonBaseLine} = goog.require('protobuf.benchmark.codeSize.codeSizeBase');
68 goog.global['__hiddenTest'] += accessAllTypes();

1234567