-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidentifier-index.html
More file actions
1471 lines (1461 loc) · 127 KB
/
identifier-index.html
File metadata and controls
1471 lines (1461 loc) · 127 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Identifier Index</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="google.protobuf-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th bgcolor="#70b0f0" class="navbar-select"
> Indices </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%"> </td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="identifier-index.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<table border="0" width="100%">
<tr valign="bottom"><td>
<h1 class="epydoc">Identifier Index</h1>
</td><td>
[
<a href="#A">A</a>
<a href="#B">B</a>
<a href="#C">C</a>
<a href="#D">D</a>
<a href="#E">E</a>
<a href="#F">F</a>
<a href="#G">G</a>
<a href="#H">H</a>
<a href="#I">I</a>
<a href="#J">J</a>
K
<a href="#L">L</a>
<a href="#M">M</a>
<a href="#N">N</a>
<a href="#O">O</a>
<a href="#P">P</a>
Q
<a href="#R">R</a>
<a href="#S">S</a>
<a href="#T">T</a>
<a href="#U">U</a>
V
<a href="#W">W</a>
X
Y
Z
<a href="#_">_</a>
]
</td></table>
<table border="0" width="100%">
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="A">A</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html#Add">Add()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html">DescriptorDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#AddEnumDescriptor">AddEnumDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#AddSerializedFile">AddSerializedFile()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#Add">Add()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#AddExtensionDescriptor">AddExtensionDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#AddServiceDescriptor">AddServiceDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#AddDescriptor">AddDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#AddFileDescriptor">AddFileDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#AtEnd">AtEnd()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="B">B</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service_reflection._ServiceBuilder-class.html#BuildService">BuildService()</a><br />
<span class="index-where">(in <a href="google.protobuf.service_reflection._ServiceBuilder-class.html" onclick="show_private();">_ServiceBuilder</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service_reflection._ServiceStubBuilder-class.html#BuildServiceStub">BuildServiceStub()</a><br />
<span class="index-where">(in <a href="google.protobuf.service_reflection._ServiceStubBuilder-class.html" onclick="show_private();">_ServiceStubBuilder</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#ByteSize">ByteSize()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="C">C</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcChannel-class.html#CallMethod">CallMethod()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcChannel-class.html">RpcChannel</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeCommentOrTrailingComment">ConsumeCommentOrTrailingComment()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor._NestedDescriptorBase-class.html#CopyToProto">CopyToProto()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor._NestedDescriptorBase-class.html" onclick="show_private();">_NestedDescriptorBase</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service.Service-class.html#CallMethod">CallMethod()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.Service-class.html">Service</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeEnum">ConsumeEnum()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.pyext.cpp_message-module.html">cpp_message</a><br />
<span class="index-where">(in <a href="google.protobuf.pyext-module.html">google.protobuf.pyext</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#camelcase_name">camelcase_name</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeFloat">ConsumeFloat()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_BOOL">CPPTYPE_BOOL</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_encoding-module.html#CEscape">CEscape()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_encoding-module.html">google.protobuf.text_encoding</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeIdentifier">ConsumeIdentifier()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_DOUBLE">CPPTYPE_DOUBLE</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#Clear">Clear()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeIdentifierOrNumber">ConsumeIdentifierOrNumber()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_ENUM">CPPTYPE_ENUM</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#ClearExtension">ClearExtension()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeInteger">ConsumeInteger()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_FLOAT">CPPTYPE_FLOAT</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#ClearField">ClearField()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeString">ConsumeString()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_INT32">CPPTYPE_INT32</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.TextWriter-class.html#close">close()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.TextWriter-class.html" onclick="show_private();">TextWriter</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format._Parser-class.html#ConvertMessage">ConvertMessage()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_INT64">CPPTYPE_INT64</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.compiler-module.html">compiler</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#CopyFrom">CopyFrom()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_MESSAGE">CPPTYPE_MESSAGE</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#Consume">Consume()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.Descriptor-class.html#CopyToProto">CopyToProto()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.Descriptor-class.html">Descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_STRING">CPPTYPE_STRING</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeBool">ConsumeBool()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.EnumDescriptor-class.html#CopyToProto">CopyToProto()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.EnumDescriptor-class.html">EnumDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_UINT32">CPPTYPE_UINT32</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeByteString">ConsumeByteString()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FileDescriptor-class.html#CopyToProto">CopyToProto()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FileDescriptor-class.html">FileDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#CPPTYPE_UINT64">CPPTYPE_UINT64</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ConsumeComment">ConsumeComment()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.ServiceDescriptor-class.html#CopyToProto">CopyToProto()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.ServiceDescriptor-class.html">ServiceDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_encoding-module.html#CUnescape">CUnescape()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_encoding-module.html">google.protobuf.text_encoding</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="D">D</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.DecodeError-class.html">DecodeError</a><br />
<span class="index-where">(in <a href="google.protobuf.message-module.html">google.protobuf.message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#DESCRIPTOR">DESCRIPTOR</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabaseConflictingDefinitionError-class.html">DescriptorDatabaseConflictingDefinitionError</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database-module.html">google.protobuf.descriptor_database</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool-module.html#Default">Default()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool-module.html">google.protobuf.descriptor_pool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database-module.html">descriptor_database</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool-module.html">google.protobuf.descriptor_pool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database-module.html#Default">Default()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database-module.html">google.protobuf.symbol_database</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool-module.html">descriptor_pool</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#DiscardUnknownFields">DiscardUnknownFields()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor-module.html">descriptor</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.DescriptorBase-class.html">DescriptorBase</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.Descriptor-class.html">Descriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html">DescriptorDatabase</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database-module.html">google.protobuf.descriptor_database</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="E">E</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.EncodeError-class.html">EncodeError</a><br />
<span class="index-where">(in <a href="google.protobuf.message-module.html">google.protobuf.message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.Error-class.html">Error</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Error-class.html">Error</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.EnumDescriptor-class.html">EnumDescriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.Error-class.html">Error</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database-module.html">google.protobuf.descriptor_database</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html#ErrorText">ErrorText()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcController-class.html">RpcController</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.EnumValueDescriptor-class.html">EnumValueDescriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format.Error-class.html">Error</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.Descriptor-class.html#EnumValueName">EnumValueName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.Descriptor-class.html">Descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Error-class.html">Error</a><br />
<span class="index-where">(in <a href="google.protobuf.message-module.html">google.protobuf.message</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="F">F</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html#Failed">Failed()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcController-class.html">RpcController</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindExtensionByName">FindExtensionByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindFileContainingSymbol">FindFileContainingSymbol()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindExtensionByNumber">FindExtensionByNumber()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindMessageTypeByName">FindMessageTypeByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.Descriptor-class.html#fields_by_camelcase_name">fields_by_camelcase_name</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.Descriptor-class.html">Descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindFieldByName">FindFieldByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.ServiceDescriptor-class.html#FindMethodByName">FindMethodByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.ServiceDescriptor-class.html">ServiceDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FileDescriptor-class.html">FileDescriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html#FindFileByName">FindFileByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html">DescriptorDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindMethodByName">FindMethodByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html#FindAllExtensionNumbers">FindAllExtensionNumbers()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html">DescriptorDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindFileByName">FindFileByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindOneofByName">FindOneofByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindAllExtensions">FindAllExtensions()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html#FindFileContainingExtension">FindFileContainingExtension()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html">DescriptorDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindServiceByName">FindServiceByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#FindEnumTypeByName">FindEnumTypeByName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html#FindFileContainingSymbol">FindFileContainingSymbol()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html">DescriptorDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#FIRST_RESERVED_FIELD_NUMBER">FIRST_RESERVED_FIELD_NUMBER</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="G">G</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.pyext.cpp_message.GeneratedProtocolMessageType-class.html">GeneratedProtocolMessageType</a><br />
<span class="index-where">(in <a href="google.protobuf.pyext.cpp_message-module.html">google.protobuf.pyext.cpp_message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.ParseError-class.html#GetLine">GetLine()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.ParseError-class.html" onclick="show_private();">ParseError</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message_factory.MessageFactory-class.html#GetPrototype">GetPrototype()</a><br />
<span class="index-where">(in <a href="google.protobuf.message_factory.MessageFactory-class.html">MessageFactory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service_reflection.GeneratedServiceStubType-class.html">GeneratedServiceStubType</a><br />
<span class="index-where">(in <a href="google.protobuf.service_reflection-module.html">google.protobuf.service_reflection</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message_factory-module.html#GetMessages">GetMessages()</a><br />
<span class="index-where">(in <a href="google.protobuf.message_factory-module.html">google.protobuf.message_factory</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.Service-class.html#GetRequestClass">GetRequestClass()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.Service-class.html">Service</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service_reflection.GeneratedServiceType-class.html">GeneratedServiceType</a><br />
<span class="index-where">(in <a href="google.protobuf.service_reflection-module.html">google.protobuf.service_reflection</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message_factory.MessageFactory-class.html#GetMessages">GetMessages()</a><br />
<span class="index-where">(in <a href="google.protobuf.message_factory.MessageFactory-class.html">MessageFactory</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.Service-class.html#GetResponseClass">GetResponseClass()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.Service-class.html">Service</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.ParseError-class.html#GetColumn">GetColumn()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.ParseError-class.html" onclick="show_private();">ParseError</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html#GetMessages">GetMessages()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html#GetSymbol">GetSymbol()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service.Service-class.html#GetDescriptor">GetDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.Service-class.html">Service</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.DescriptorBase-class.html#GetOptions">GetOptions()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.DescriptorBase-class.html">DescriptorBase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.TextWriter-class.html#getvalue">getvalue()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.TextWriter-class.html" onclick="show_private();">TextWriter</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="H">H</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#HasExtension">HasExtension()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#HasField">HasField()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="I">I</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_encoding-module.html#i">i</a><br />
<span class="index-where">(in <a href="google.protobuf.text_encoding-module.html">google.protobuf.text_encoding</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.internal-module.html">internal</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#IsInitialized">IsInitialized()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="int-class.html">int</a></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html#IsCanceled">IsCanceled()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcController-class.html">RpcController</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="J">J</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html">json_format</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"> </td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="L">L</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#LABEL_OPTIONAL">LABEL_OPTIONAL</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#LABEL_REQUIRED">LABEL_REQUIRED</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#ListFields">ListFields()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#LABEL_REPEATED">LABEL_REPEATED</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#LAST_RESERVED_FIELD_NUMBER">LAST_RESERVED_FIELD_NUMBER</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#LookingAt">LookingAt()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="M">M</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.reflection-module.html#MakeClass">MakeClass()</a><br />
<span class="index-where">(in <a href="google.protobuf.reflection-module.html">google.protobuf.reflection</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#Merge">Merge()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message_factory-module.html">message_factory</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor-module.html#MakeDescriptor">MakeDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#MergeFrom">MergeFrom()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message_factory.MessageFactory-class.html">MessageFactory</a><br />
<span class="index-where">(in <a href="google.protobuf.message_factory-module.html">google.protobuf.message_factory</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.proto_builder-module.html#MakeSimpleProtoClass">MakeSimpleProtoClass()</a><br />
<span class="index-where">(in <a href="google.protobuf.proto_builder-module.html">google.protobuf.proto_builder</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#MergeFromString">MergeFromString()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#MessageToBytes">MessageToBytes()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#mark">mark</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#MergeLines">MergeLines()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html#MessageToDict">MessageToDict()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#MAX_CPPTYPE">MAX_CPPTYPE</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Parser-class.html#MergeLines">MergeLines()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html#MessageToJson">MessageToJson()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#MAX_FIELD_NUMBER">MAX_FIELD_NUMBER</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message-module.html">message</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#MessageToString">MessageToString()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#MAX_LABEL">MAX_LABEL</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html">Message</a><br />
<span class="index-where">(in <a href="google.protobuf.message-module.html">google.protobuf.message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.MethodDescriptor-class.html">MethodDescriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#MAX_TYPE">MAX_TYPE</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.reflection-module.html#MESSAGE_CLASS_CACHE">MESSAGE_CLASS_CACHE</a><br />
<span class="index-where">(in <a href="google.protobuf.reflection-module.html">google.protobuf.reflection</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="N">N</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#NextToken">NextToken()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html#NotifyOnCancel">NotifyOnCancel()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcController-class.html">RpcController</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="O">O</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.OneofDescriptor-class.html">OneofDescriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"> </td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="P">P</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html#Parse">Parse()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#ParseFloat">ParseFloat()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Printer-class.html#PrintFieldValue">PrintFieldValue()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Printer-class.html" onclick="show_private();">_Printer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#Parse">Parse()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#ParseFromString">ParseFromString()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#PrintMessage">PrintMessage()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#ParseBool">ParseBool()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#ParseInteger">ParseInteger()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Printer-class.html#PrintMessage">PrintMessage()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Printer-class.html" onclick="show_private();">_Printer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html#ParseDict">ParseDict()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#ParseLines">ParseLines()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.proto_builder-module.html">proto_builder</a><br />
<span class="index-where">(in google.protobuf)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#ParseEnum">ParseEnum()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Parser-class.html#ParseLines">ParseLines()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf-module.html">protobuf</a><br />
<span class="index-where">(in google)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.json_format.ParseError-class.html">ParseError</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.reflection-module.html#ParseMessage">ParseMessage()</a><br />
<span class="index-where">(in <a href="google.protobuf.reflection-module.html">google.protobuf.reflection</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#ProtoTypeToCppProtoType">ProtoTypeToCppProtoType()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.ParseError-class.html">ParseError</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#PrintField">PrintField()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.pyext-module.html">pyext</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ParseError">ParseError()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Printer-class.html#PrintField">PrintField()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Printer-class.html" onclick="show_private();">_Printer</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#ParseErrorPreviousToken">ParseErrorPreviousToken()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#PrintFieldValue">PrintFieldValue()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="R">R</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.reflection-module.html">reflection</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html#RegisterMessageDescriptor">RegisterMessageDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html">RpcController</a><br />
<span class="index-where">(in <a href="google.protobuf.service-module.html">google.protobuf.service</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html#RegisterEnumDescriptor">RegisterEnumDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html#RegisterServiceDescriptor">RegisterServiceDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcException-class.html">RpcException</a><br />
<span class="index-where">(in <a href="google.protobuf.service-module.html">google.protobuf.service</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html#RegisterFileDescriptor">RegisterFileDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html#Reset">Reset()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcController-class.html">RpcController</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html#RegisterMessage">RegisterMessage()</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcChannel-class.html">RpcChannel</a><br />
<span class="index-where">(in <a href="google.protobuf.service-module.html">google.protobuf.service</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="S">S</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#SerializePartialToString">SerializePartialToString()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.Service-class.html">Service</a><br />
<span class="index-where">(in <a href="google.protobuf.service-module.html">google.protobuf.service</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#SetInParent">SetInParent()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.json_format.SerializeToJsonError-class.html">SerializeToJsonError</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service_reflection-module.html">service_reflection</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html#StartCancel">StartCancel()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcController-class.html">RpcController</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#SerializeToString">SerializeToString()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.ServiceDescriptor-class.html">ServiceDescriptor</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database-module.html">symbol_database</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.service-module.html">service</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service.RpcController-class.html#SetFailed">SetFailed()</a><br />
<span class="index-where">(in <a href="google.protobuf.service.RpcController-class.html">RpcController</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.symbol_database.SymbolDatabase-class.html">SymbolDatabase</a><br />
<span class="index-where">(in <a href="google.protobuf.symbol_database-module.html">google.protobuf.symbol_database</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="T">T</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_encoding-module.html">text_encoding</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#TryConsumeInteger">TryConsumeInteger()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_INT64">TYPE_INT64</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html">text_format</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_BOOL">TYPE_BOOL</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_MESSAGE">TYPE_MESSAGE</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.TextWriter-class.html">TextWriter</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_BYTES">TYPE_BYTES</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_SFIXED32">TYPE_SFIXED32</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.json_format._Printer-class.html#ToJsonString">ToJsonString()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format._Printer-class.html" onclick="show_private();">_Printer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_DOUBLE">TYPE_DOUBLE</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_SFIXED64">TYPE_SFIXED64</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html">Tokenizer</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_ENUM">TYPE_ENUM</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_SINT32">TYPE_SINT32</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#TryConsume">TryConsume()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_FIXED32">TYPE_FIXED32</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_SINT64">TYPE_SINT64</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#TryConsumeByteString">TryConsumeByteString()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_FIXED64">TYPE_FIXED64</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_STRING">TYPE_STRING</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#TryConsumeFloat">TryConsumeFloat()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_FLOAT">TYPE_FLOAT</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_UINT32">TYPE_UINT32</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#TryConsumeIdentifier">TryConsumeIdentifier()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_GROUP">TYPE_GROUP</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_UINT64">TYPE_UINT64</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#TryConsumeIdentifierOrNumber">TryConsumeIdentifierOrNumber()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#TYPE_INT32">TYPE_INT32</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.TypeTransformationError-class.html">TypeTransformationError</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="U">U</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#UnknownFields">UnknownFields()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.util-module.html">util</a><br />
<span class="index-where">(in <a href="google.protobuf-module.html">google.protobuf</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr><td class="link-index"> </td><td class="link-index"> </td><td class="link-index"> </td></tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="W">W</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#WhichOneof">WhichOneof()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#WIRETYPE_START_GROUP">WIRETYPE_START_GROUP</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#WIRETYPE_LENGTH_DELIMITED">WIRETYPE_LENGTH_DELIMITED</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.TextWriter-class.html#write">write()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.TextWriter-class.html" onclick="show_private();">TextWriter</a>)</span></td>
<td width="33%" class="link-index"> </td>
</tr>
</table>
</td></tr>
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="_">_</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#__deepcopy__">__deepcopy__()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.EnumDescriptor-class.html#_C_DESCRIPTOR_CLASS">_C_DESCRIPTOR_CLASS</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.EnumDescriptor-class.html">EnumDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Parser-class.html#_IsProto3Syntax">_IsProto3Syntax()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor._Lock-class.html#__enter__">__enter__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor._Lock-class.html" onclick="show_private();">_Lock</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.EnumValueDescriptor-class.html#_C_DESCRIPTOR_CLASS">_C_DESCRIPTOR_CLASS</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.EnumValueDescriptor-class.html">EnumValueDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html#_IsWrapperMessage">_IsWrapperMessage()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#__eq__">__eq__()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#_C_DESCRIPTOR_CLASS">_C_DESCRIPTOR_CLASS</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format._Printer-class.html#_ListValueMessageToJsonObject">_ListValueMessageToJsonObject()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format._Printer-class.html" onclick="show_private();">_Printer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor._Lock-class.html#__exit__">__exit__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor._Lock-class.html" onclick="show_private();">_Lock</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FileDescriptor-class.html#_C_DESCRIPTOR_CLASS">_C_DESCRIPTOR_CLASS</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FileDescriptor-class.html">FileDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor._Lock-class.html">_Lock</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#__getstate__">__getstate__()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.MethodDescriptor-class.html#_C_DESCRIPTOR_CLASS">_C_DESCRIPTOR_CLASS</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.MethodDescriptor-class.html">MethodDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor-module.html#_lock">_lock</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.message.Message-class.html#__hash__">__hash__()</a><br />
<span class="index-where">(in <a href="google.protobuf.message.Message-class.html">Message</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.OneofDescriptor-class.html#_C_DESCRIPTOR_CLASS">_C_DESCRIPTOR_CLASS</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.OneofDescriptor-class.html">OneofDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#_MakeEnumValueDescriptor">_MakeEnumValueDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.Descriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.Descriptor-class.html">Descriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.ServiceDescriptor-class.html#_C_DESCRIPTOR_CLASS">_C_DESCRIPTOR_CLASS</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.ServiceDescriptor-class.html">ServiceDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#_MakeFieldDescriptor">_MakeFieldDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.DescriptorBase-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.DescriptorBase-class.html">DescriptorBase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service_reflection._ServiceBuilder-class.html#_CallMethod">_CallMethod()</a><br />
<span class="index-where">(in <a href="google.protobuf.service_reflection._ServiceBuilder-class.html" onclick="show_private();">_ServiceBuilder</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.proto_builder-module.html#_MakeFileDescriptorProto">_MakeFileDescriptorProto()</a><br />
<span class="index-where">(in <a href="google.protobuf.proto_builder-module.html">google.protobuf.proto_builder</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.EnumDescriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.EnumDescriptor-class.html">EnumDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_encoding-module.html#_cescape_byte_to_str">_cescape_byte_to_str</a><br />
<span class="index-where">(in <a href="google.protobuf.text_encoding-module.html">google.protobuf.text_encoding</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#_MakeMethodDescriptor">_MakeMethodDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.EnumValueDescriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.EnumValueDescriptor-class.html">EnumValueDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_encoding-module.html#_cescape_chr_to_symbol_map">_cescape_chr_to_symbol_map</a><br />
<span class="index-where">(in <a href="google.protobuf.text_encoding-module.html">google.protobuf.text_encoding</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#_MakeServiceDescriptor">_MakeServiceDescriptor()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FieldDescriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FieldDescriptor-class.html">FieldDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_encoding-module.html#_cescape_unicode_to_str">_cescape_unicode_to_str</a><br />
<span class="index-where">(in <a href="google.protobuf.text_encoding-module.html">google.protobuf.text_encoding</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Parser-class.html#_MergeField">_MergeField()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.FileDescriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.FileDescriptor-class.html">FileDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#_CheckConflictRegister">_CheckConflictRegister()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Parser-class.html#_MergeMessageField">_MergeMessageField()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.MethodDescriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.MethodDescriptor-class.html">MethodDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#_COMMENT">_COMMENT</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Parser-class.html#_MergeScalarField">_MergeScalarField()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.OneofDescriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.OneofDescriptor-class.html">OneofDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format._Parser-class.html#_ConsumeAnyTypeUrl">_ConsumeAnyTypeUrl()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format._Printer-class.html#_MessageToJsonObject">_MessageToJsonObject()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format._Printer-class.html" onclick="show_private();">_Printer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor.ServiceDescriptor-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor.ServiceDescriptor-class.html">ServiceDescriptor</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#_ConsumeInt32">_ConsumeInt32()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html#_NAN">_NAN</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor._NestedDescriptorBase-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor._NestedDescriptorBase-class.html" onclick="show_private();">_NestedDescriptorBase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#_ConsumeInt64">_ConsumeInt64()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.json_format-module.html#_NEG_INFINITY">_NEG_INFINITY</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format-module.html">google.protobuf.json_format</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_database.DescriptorDatabase-class.html">DescriptorDatabase</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#_ConsumeInteger">_ConsumeInteger()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor._NestedDescriptorBase-class.html">_NestedDescriptorBase</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor-module.html">google.protobuf.descriptor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool.DescriptorPool-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool.DescriptorPool-class.html">DescriptorPool</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format.Tokenizer-class.html#_ConsumeSingleByteString">_ConsumeSingleByteString()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format.Tokenizer-class.html" onclick="show_private();">Tokenizer</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.service_reflection._ServiceBuilder-class.html#_NonImplementedMethod">_NonImplementedMethod()</a><br />
<span class="index-where">(in <a href="google.protobuf.service_reflection._ServiceBuilder-class.html" onclick="show_private();">_ServiceBuilder</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="google.protobuf.json_format._Parser-class.html#__init__">__init__()</a><br />
<span class="index-where">(in <a href="google.protobuf.json_format._Parser-class.html" onclick="show_private();">_Parser</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.text_format-module.html#_ConsumeUint32">_ConsumeUint32()</a><br />
<span class="index-where">(in <a href="google.protobuf.text_format-module.html">google.protobuf.text_format</a>)</span></td>
<td width="33%" class="link-index"><a href="google.protobuf.descriptor_pool-module.html#_NormalizeFullyQualifiedName">_NormalizeFullyQualifiedName()</a><br />
<span class="index-where">(in <a href="google.protobuf.descriptor_pool-module.html">google.protobuf.descriptor_pool</a>)</span></td>
</tr>
<tr>