SYMBOL INDEX (2706 symbols across 183 files) FILE: python/setup.py function long_description (line 31) | def long_description(): function run_pkg_config (line 42) | def run_pkg_config(section, pkg_config_path=None): function is_sentencepiece_installed (line 56) | def is_sentencepiece_installed(): function is_gil_disabled (line 64) | def is_gil_disabled(): function get_cflags_and_libs (line 68) | def get_cflags_and_libs(root): class build_ext (line 84) | class build_ext(_build_ext): method build_extension (line 87) | def build_extension(self, ext): function copy_package_data (line 123) | def copy_package_data(): function get_win_arch (line 155) | def get_win_arch(): FILE: python/src/sentencepiece/__init__.py function _swig_repr (line 19) | def _swig_repr(self): function _swig_setattr_nondynamic_instance_variable (line 27) | def _swig_setattr_nondynamic_instance_variable(set): function _swig_setattr_nondynamic_class_variable (line 40) | def _swig_setattr_nondynamic_class_variable(set): function _swig_add_metaclass (line 49) | def _swig_add_metaclass(metaclass): class _SwigNonDynamicMeta (line 56) | class _SwigNonDynamicMeta(type): class ImmutableSentencePieceText_ImmutableSentencePiece (line 61) | class ImmutableSentencePieceText_ImmutableSentencePiece(object): method __init__ (line 65) | def __init__(self): method _piece (line 69) | def _piece(self): method _surface (line 72) | def _surface(self): method _id (line 75) | def _id(self): method _begin (line 78) | def _begin(self): method _end (line 81) | def _end(self): method _surface_as_bytes (line 84) | def _surface_as_bytes(self): method _piece_as_bytes (line 87) | def _piece_as_bytes(self): method __str__ (line 98) | def __str__(self): method __eq__ (line 106) | def __eq__(self, other): method __hash__ (line 109) | def __hash__(self): class ImmutableSentencePieceText (line 117) | class ImmutableSentencePieceText(object): method __init__ (line 121) | def __init__(self): method _pieces_size (line 125) | def _pieces_size(self): method _pieces (line 128) | def _pieces(self, index): method _text (line 131) | def _text(self): method _score (line 134) | def _score(self): method SerializeAsString (line 137) | def SerializeAsString(self): method _text_as_bytes (line 140) | def _text_as_bytes(self): class ImmutableSentencePieceIterator (line 147) | class ImmutableSentencePieceIterator: method __init__ (line 148) | def __init__(self, proto): method __len__ (line 152) | def __len__(self): method __getitem__ (line 155) | def __getitem__(self, index): method __str__ (line 164) | def __str__(self): method pieces (line 170) | def pieces(self): method __eq__ (line 173) | def __eq__(self, other): method __hash__ (line 176) | def __hash__(self): method __str__ (line 179) | def __str__(self): class ImmutableNBestSentencePieceText (line 190) | class ImmutableNBestSentencePieceText(object): method __init__ (line 194) | def __init__(self): method _nbests_size (line 198) | def _nbests_size(self): method _nbests (line 201) | def _nbests(self, index): method SerializeAsString (line 204) | def SerializeAsString(self): class ImmutableSentencePieceTextIterator (line 207) | class ImmutableSentencePieceTextIterator: method __init__ (line 208) | def __init__(self, proto): method __len__ (line 212) | def __len__(self): method __getitem__ (line 215) | def __getitem__(self, index): method __str__ (line 224) | def __str__(self): method nbests (line 230) | def nbests(self): method __eq__ (line 233) | def __eq__(self, other): method __hash__ (line 236) | def __hash__(self): method __str__ (line 239) | def __str__(self): class SentencePieceProcessor (line 247) | class SentencePieceProcessor(object): method __init__ (line 251) | def __init__(self): method LoadFromSerializedProto (line 255) | def LoadFromSerializedProto(self, serialized): method SetEncodeExtraOptions (line 258) | def SetEncodeExtraOptions(self, extra_option): method SetDecodeExtraOptions (line 261) | def SetDecodeExtraOptions(self, extra_option): method SetVocabulary (line 264) | def SetVocabulary(self, valid_vocab): method ResetVocabulary (line 267) | def ResetVocabulary(self): method LoadVocabulary (line 270) | def LoadVocabulary(self, filename, threshold): method CalculateEntropy (line 273) | def CalculateEntropy(self, *args): method GetPieceSize (line 276) | def GetPieceSize(self): method PieceToId (line 279) | def PieceToId(self, piece): method IdToPiece (line 282) | def IdToPiece(self, id): method GetScore (line 285) | def GetScore(self, id): method IsUnknown (line 288) | def IsUnknown(self, id): method IsControl (line 291) | def IsControl(self, id): method IsUnused (line 294) | def IsUnused(self, id): method IsByte (line 297) | def IsByte(self, id): method unk_id (line 300) | def unk_id(self): method bos_id (line 303) | def bos_id(self): method eos_id (line 306) | def eos_id(self): method pad_id (line 309) | def pad_id(self): method serialized_model_proto (line 312) | def serialized_model_proto(self): method LoadFromFile (line 315) | def LoadFromFile(self, arg): method _EncodeAsIds (line 318) | def _EncodeAsIds(self, text, enable_sampling, nbest_size, alpha, add_b... method _EncodeAsPieces (line 321) | def _EncodeAsPieces(self, text, enable_sampling, nbest_size, alpha, ad... method _EncodeAsSerializedProto (line 324) | def _EncodeAsSerializedProto(self, text, enable_sampling, nbest_size, ... method _EncodeAsImmutableProto (line 327) | def _EncodeAsImmutableProto(self, text, enable_sampling, nbest_size, a... method _EncodeAsIdsBatch (line 330) | def _EncodeAsIdsBatch(self, ins, num_threads, enable_sampling, nbest_s... method _EncodeAsPiecesBatch (line 333) | def _EncodeAsPiecesBatch(self, ins, num_threads, enable_sampling, nbes... method _EncodeAsSerializedProtoBatch (line 336) | def _EncodeAsSerializedProtoBatch(self, ins, num_threads, enable_sampl... method _EncodeAsImmutableProtoBatch (line 339) | def _EncodeAsImmutableProtoBatch(self, ins, num_threads, enable_sampli... method _DecodeIds (line 342) | def _DecodeIds(self, ids): method _DecodeIdsAsBytes (line 345) | def _DecodeIdsAsBytes(self, ids): method _DecodePieces (line 348) | def _DecodePieces(self, pieces): method _DecodeIdsAsSerializedProto (line 351) | def _DecodeIdsAsSerializedProto(self, ids): method _DecodePiecesAsSerializedProto (line 354) | def _DecodePiecesAsSerializedProto(self, pieces): method _DecodeIdsAsImmutableProto (line 357) | def _DecodeIdsAsImmutableProto(self, ids): method _DecodePiecesAsImmutableProto (line 360) | def _DecodePiecesAsImmutableProto(self, pieces): method _DecodeIdsBatch (line 363) | def _DecodeIdsBatch(self, ins, num_threads): method _DecodeIdsAsBytesBatch (line 366) | def _DecodeIdsAsBytesBatch(self, ins, num_threads): method _DecodeIdsAsSerializedProtoBatch (line 369) | def _DecodeIdsAsSerializedProtoBatch(self, ins, num_threads): method _DecodeIdsAsImmutableProtoBatch (line 372) | def _DecodeIdsAsImmutableProtoBatch(self, ins, num_threads): method _DecodePiecesBatch (line 375) | def _DecodePiecesBatch(self, ins, num_threads): method _DecodePiecesAsSerializedProtoBatch (line 378) | def _DecodePiecesAsSerializedProtoBatch(self, ins, num_threads): method _DecodePiecesAsImmutableProtoBatch (line 381) | def _DecodePiecesAsImmutableProtoBatch(self, ins, num_threads): method _NBestEncodeAsIds (line 384) | def _NBestEncodeAsIds(self, text, nbest_size, add_bos, add_eos, revers... method _NBestEncodeAsPieces (line 387) | def _NBestEncodeAsPieces(self, text, nbest_size, add_bos, add_eos, rev... method _NBestEncodeAsSerializedProto (line 390) | def _NBestEncodeAsSerializedProto(self, text, nbest_size, add_bos, add... method _NBestEncodeAsImmutableProto (line 393) | def _NBestEncodeAsImmutableProto(self, text, nbest_size, add_bos, add_... method _SampleEncodeAndScoreAsIds (line 396) | def _SampleEncodeAndScoreAsIds(self, text, num_samples, alpha, wor, in... method _SampleEncodeAndScoreAsPieces (line 399) | def _SampleEncodeAndScoreAsPieces(self, text, num_samples, alpha, wor,... method _SampleEncodeAndScoreAsSerializedProto (line 402) | def _SampleEncodeAndScoreAsSerializedProto(self, text, num_samples, al... method _SampleEncodeAndScoreAsImmutableProto (line 405) | def _SampleEncodeAndScoreAsImmutableProto(self, text, num_samples, alp... method _Normalize (line 408) | def _Normalize(self, text): method _NormalizeWithOffsets (line 411) | def _NormalizeWithOffsets(self, text): method _CalculateEntropy (line 414) | def _CalculateEntropy(self, text, alpha): method _CalculateEntropyBatch (line 417) | def _CalculateEntropyBatch(self, ins, alpha, num_threads): method _OverrideNormalizerSpec (line 420) | def _OverrideNormalizerSpec(self, args): method Init (line 423) | def Init(self, method Encode (line 471) | def Encode(self, method EncodeAsPieces (line 565) | def EncodeAsPieces(self, input, **kwargs): method EncodeAsIds (line 569) | def EncodeAsIds(self, input, **kwargs): method EncodeAsSerializedProto (line 573) | def EncodeAsSerializedProto(self, input, **kwargs): method EncodeAsImmutableProto (line 577) | def EncodeAsImmutableProto(self, input, **kwargs): method SampleEncodeAsPieces (line 581) | def SampleEncodeAsPieces(self, input, nbest_size=None, alpha=None, **k... method SampleEncodeAsIds (line 586) | def SampleEncodeAsIds(self, input, nbest_size=None, alpha=None,**kwargs): method SampleEncodeAsSerializedProto (line 591) | def SampleEncodeAsSerializedProto(self, input, nbest_size=None, alpha=... method SampleEncodeAsImmutableProto (line 596) | def SampleEncodeAsImmutableProto(self, input, nbest_size=None, alpha=N... method NBestEncode (line 601) | def NBestEncode(self, method NBestEncodeAsPieces (line 659) | def NBestEncodeAsPieces(self, input, nbest_size=None, **kwargs): method NBestEncodeAsIds (line 664) | def NBestEncodeAsIds(self, input, nbest_size=None, **kwargs): method NBestEncodeAsSerializedProto (line 669) | def NBestEncodeAsSerializedProto(self, input, nbest_size=None, **kwargs): method NBestEncodeAsImmutableProto (line 674) | def NBestEncodeAsImmutableProto(self, input, nbest_size=None, **kwargs): method SampleEncodeAndScore (line 679) | def SampleEncodeAndScore(self, method SampleEncodeAndScoreAsPieces (line 756) | def SampleEncodeAndScoreAsPieces(self, input, num_samples=None, alpha=... method SampleEncodeAndScoreAsIds (line 761) | def SampleEncodeAndScoreAsIds(self, input, num_samples=None, alpha=Non... method SampleEncodeAndScoreAsSerializedProto (line 766) | def SampleEncodeAndScoreAsSerializedProto(self, input, num_samples=Non... method SampleEncodeAndScoreAsImmutableProto (line 771) | def SampleEncodeAndScoreAsImmutableProto(self, input, num_samples=None... method Decode (line 776) | def Decode(self, input, out_type=str, num_threads=None): method DecodePieces (line 871) | def DecodePieces(self, input, out_type=str, **kwargs): method DecodeIds (line 875) | def DecodeIds(self, input, out_type=str, **kwargs): method DecodePiecesAsSerializedProto (line 879) | def DecodePiecesAsSerializedProto(self, input, out_type='serialized_pr... method DecodeIdsAsSerializedProto (line 883) | def DecodeIdsAsSerializedProto(self, input, out_type='serialized_proto... method DecodePiecesAsImmutableProto (line 887) | def DecodePiecesAsImmutableProto(self, input, out_type='immutable_prot... method DecodeIdsAsImmutableProto (line 891) | def DecodeIdsAsImmutableProto(self, input, out_type='immutable_proto',... method CalculateEntropy (line 895) | def CalculateEntropy(self, input, alpha, num_threads=None): method Normalize (line 907) | def Normalize(self, input, with_offsets=None): method OverrideNormalizerSpec (line 917) | def OverrideNormalizerSpec(self, **kwargs): method piece_size (line 924) | def piece_size(self): method vocab_size (line 928) | def vocab_size(self): method __getstate__ (line 932) | def __getstate__(self): method __setstate__ (line 936) | def __setstate__(self, serialized_model_proto): method __len__ (line 941) | def __len__(self): method __getitem__ (line 945) | def __getitem__(self, piece): method Load (line 949) | def Load(self, model_file=None, model_proto=None): function SetRandomGeneratorSeed (line 967) | def SetRandomGeneratorSeed(seed): function SetMinLogLevel (line 970) | def SetMinLogLevel(v): class SentencePieceTrainer (line 972) | class SentencePieceTrainer(object): method __init__ (line 975) | def __init__(self, *args, **kwargs): method _TrainFromString (line 980) | def _TrainFromString(arg): method _TrainFromMap (line 984) | def _TrainFromMap(args): method _TrainFromMap2 (line 988) | def _TrainFromMap2(args, iter): method _TrainFromMap3 (line 992) | def _TrainFromMap3(args): method _TrainFromMap4 (line 996) | def _TrainFromMap4(args, iter): method _Train (line 1000) | def _Train(arg=None, **kwargs): method Train (line 1045) | def Train(arg=None, logstream=None, **kwargs): class SentencePieceNormalizer (line 1052) | class SentencePieceNormalizer(object): method __init__ (line 1056) | def __init__(self): method LoadFromSerializedProto (line 1060) | def LoadFromSerializedProto(self, serialized): method LoadFromRuleTSV (line 1063) | def LoadFromRuleTSV(self, filename): method LoadFromRuleName (line 1066) | def LoadFromRuleName(self, name): method serialized_model_proto (line 1069) | def serialized_model_proto(self): method LoadFromFile (line 1072) | def LoadFromFile(self, arg): method _Normalize (line 1075) | def _Normalize(self, text): method _NormalizeWithOffsets (line 1078) | def _NormalizeWithOffsets(self, text): method _SetProtoField (line 1081) | def _SetProtoField(self, name, value): method Init (line 1084) | def Init(self, method Normalize (line 1122) | def Normalize(self, input, with_offsets=None): method __getstate__ (line 1133) | def __getstate__(self): method __setstate__ (line 1137) | def __setstate__(self, serialized_model_proto): function SetDataDir (line 1145) | def SetDataDir(data_dir): function _add_snake_case (line 1158) | def _add_snake_case(classname): function _batchnize (line 1171) | def _batchnize(classname, name): class _LogStream (line 1212) | class _LogStream(object): method __init__ (line 1213) | def __init__(self, ostream=None): method __enter__ (line 1218) | def __enter__(self): method __exit__ (line 1223) | def __exit__(self, type, value, traceback): FILE: python/src/sentencepiece/sentencepiece_wrap.cxx function SWIGINTERNINLINE (line 397) | SWIGINTERNINLINE int SWIG_AddCast(int r) { function SWIGINTERNINLINE (line 400) | SWIGINTERNINLINE int SWIG_CheckState(int r) { type swig_type_info (line 416) | struct swig_type_info type swig_cast_info (line 423) | struct swig_cast_info type swig_type_info (line 419) | struct swig_type_info { type swig_cast_info (line 423) | struct swig_cast_info type swig_cast_info (line 429) | struct swig_cast_info { type swig_cast_info (line 432) | struct swig_cast_info type swig_cast_info (line 433) | struct swig_cast_info type swig_module_info (line 439) | struct swig_module_info { type swig_module_info (line 442) | struct swig_module_info function SWIGRUNTIME (line 455) | SWIGRUNTIME int function SWIGRUNTIME (line 470) | SWIGRUNTIME int function SWIGRUNTIME (line 489) | SWIGRUNTIME int function SWIGRUNTIME (line 497) | SWIGRUNTIME swig_cast_info * function SWIGRUNTIME (line 524) | SWIGRUNTIME swig_cast_info * function SWIGRUNTIMEINLINE (line 551) | SWIGRUNTIMEINLINE void * function SWIGRUNTIME (line 559) | SWIGRUNTIME swig_type_info * function SWIGRUNTIMEINLINE (line 573) | SWIGRUNTIMEINLINE const char * function SWIGRUNTIME (line 582) | SWIGRUNTIME const char * function SWIGRUNTIME (line 603) | SWIGRUNTIME void function SWIGRUNTIME (line 619) | SWIGRUNTIME void function SWIGRUNTIME (line 633) | SWIGRUNTIME swig_type_info * function SWIGRUNTIME (line 678) | SWIGRUNTIME swig_type_info * function SWIGRUNTIME (line 707) | SWIGRUNTIME char * function SWIGRUNTIME (line 723) | SWIGRUNTIME const char * function SWIGRUNTIME (line 751) | SWIGRUNTIME char * function SWIGRUNTIME (line 762) | SWIGRUNTIME const char * function SWIGRUNTIME (line 775) | SWIGRUNTIME char * function SWIGRUNTIME (line 790) | SWIGRUNTIME const char * function SWIGINTERN (line 852) | SWIGINTERN const char * function SWIGINTERN (line 875) | SWIGINTERN PyObject* function SWIGRUNTIME (line 931) | SWIGRUNTIME PyObject* function SWIGRUNTIME (line 978) | SWIGRUNTIME void function SWIGRUNTIME (line 1005) | SWIGRUNTIME int function SWIGRUNTIME (line 1015) | SWIGRUNTIME void class SWIG_Python_Thread_Block (line 1058) | class SWIG_Python_Thread_Block { method end (line 1062) | void end() { if (status) { PyGILState_Release(state); status = false;} } method SWIG_Python_Thread_Block (line 1063) | SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} class SWIG_Python_Thread_Allow (line 1066) | class SWIG_Python_Thread_Allow { method end (line 1070) | void end() { if (status) { status = false; PyEval_RestoreThread(save); }} method SWIG_Python_Thread_Allow (line 1071) | SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} type swig_const_info (line 1126) | struct swig_const_info { function SWIGINTERN (line 1210) | SWIGINTERN void function SWIGINTERN (line 1218) | SWIGINTERN void function SWIGINTERN (line 1231) | SWIGINTERN void function SWIGINTERN (line 1238) | SWIGINTERN void function SWIGINTERN (line 1248) | SWIGINTERN void function SWIGINTERN (line 1258) | SWIGINTERN PyObject* function SWIGINTERN (line 1284) | SWIGINTERN Py_ssize_t function SWIGINTERN (line 1330) | SWIGINTERN int type swig_globalvar (line 1369) | struct swig_globalvar { type swig_globalvar (line 1373) | struct swig_globalvar type swig_varlinkobject (line 1376) | struct swig_varlinkobject { function SWIGINTERN (line 1381) | SWIGINTERN PyObject * function SWIGINTERN (line 1390) | SWIGINTERN PyObject * function SWIGINTERN (line 1429) | SWIGINTERN void function SWIGINTERN (line 1441) | SWIGINTERN PyObject * function SWIGINTERN (line 1459) | SWIGINTERN int function SWIGINTERN (line 1477) | SWIGINTERN PyTypeObject* function SWIGINTERN (line 1573) | SWIGINTERN PyObject * function SWIGINTERN (line 1582) | SWIGINTERN void function SWIGINTERN (line 1602) | SWIGINTERN PyObject * function SWIGRUNTIMEINLINE (line 1633) | SWIGRUNTIMEINLINE PyObject * function SWIGRUNTIMEINLINE (line 1653) | SWIGRUNTIMEINLINE int function SWIGRUNTIMEINLINE (line 1663) | SWIGRUNTIMEINLINE PyObject * function SWIGRUNTIME (line 1671) | SWIGRUNTIME SwigPyClientData * function SWIGRUNTIME (line 1721) | SWIGRUNTIME void function SWIGRUNTIME (line 1747) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 1761) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 1767) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 1792) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 1798) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 1804) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 1830) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 1836) | SWIGRUNTIME int function SWIGRUNTIME (line 1845) | SWIGRUNTIME PyObject* function SWIGRUNTIME (line 1864) | SWIGRUNTIME PyTypeObject* function SWIGRUNTIME (line 1874) | SWIGRUNTIME PyTypeObject* function SWIGRUNTIMEINLINE (line 1881) | SWIGRUNTIMEINLINE int function SWIGRUNTIME (line 1914) | SWIGRUNTIME void function SWIGRUNTIME (line 1973) | SWIGRUNTIME PyObject* function SWIGRUNTIME (line 1987) | SWIGRUNTIME PyObject* function SWIGINTERN (line 1999) | SWIGINTERN PyObject* function SWIGINTERN (line 2007) | SWIGINTERN PyObject* function SWIGINTERN (line 2015) | SWIGINTERN PyObject* function SWIGRUNTIME (line 2046) | SWIGRUNTIME PyTypeObject* function SWIGRUNTIME (line 2209) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 2242) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 2253) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 2264) | SWIGRUNTIME int function SWIGRUNTIME (line 2275) | SWIGRUNTIME PyTypeObject* function SWIGRUNTIMEINLINE (line 2281) | SWIGRUNTIMEINLINE int function SWIGRUNTIME (line 2302) | SWIGRUNTIME void function SWIGRUNTIME (line 2312) | SWIGRUNTIME PyTypeObject* function SWIGRUNTIME (line 2429) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 2448) | SWIGRUNTIME swig_type_info * function SWIGRUNTIME (line 2467) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 2482) | SWIGRUNTIME SwigPyObject * function SWIGRUNTIME (line 2553) | SWIGRUNTIME int function SWIGRUNTIME (line 2568) | SWIGRUNTIME int function SWIGRUNTIME (line 2680) | SWIGRUNTIME int function SWIGRUNTIME (line 2719) | SWIGRUNTIME int function SWIGRUNTIME (line 2742) | SWIGRUNTIME PyObject* function SWIGRUNTIME (line 2808) | SWIGRUNTIME int function SWIGINTERN (line 2830) | SWIGINTERN PyObject * function SWIGRUNTIME (line 2849) | SWIGRUNTIME PyObject * function SWIGRUNTIMEINLINE (line 2910) | SWIGRUNTIMEINLINE PyObject * function SWIGRUNTIME (line 2926) | SWIGRUNTIME PyObject * function SWIGRUNTIME (line 2934) | SWIGRUNTIME swig_module_info * function SWIGRUNTIME (line 2955) | SWIGRUNTIME void function SWIGRUNTIME (line 2980) | SWIGRUNTIME void function SWIGRUNTIME (line 3002) | SWIGRUNTIME swig_type_info * function SWIGRUNTIME (line 3033) | SWIGRUNTIME int function SWIGRUNTIME (line 3062) | SWIGRUNTIME int function SWIGRUNTIMEINLINE (line 3075) | SWIGRUNTIMEINLINE const char * function SWIGRUNTIME (line 3083) | SWIGRUNTIME void function SWIGRUNTIME (line 3127) | SWIGRUNTIME void * class SwigValueWrapper (line 3250) | class SwigValueWrapper { type SwigSmartPointer (line 3251) | struct SwigSmartPointer { method SwigSmartPointer (line 3253) | SwigSmartPointer(T *p) : ptr(p) { } method SwigSmartPointer (line 3255) | SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr... method reset (line 3256) | void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; } method SwigValueWrapper (line 3261) | SwigValueWrapper() : pointer(0) { } method SwigValueWrapper (line 3262) | SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t... method SwigValueWrapper (line 3264) | SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::m... method T (line 3269) | T *operator&() const { return pointer.ptr; } method reset (line 3270) | static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); } function T (line 3282) | T SwigValueInit() { type swig (line 3302) | namespace swig { class SwigPtr_PyObject (line 3303) | class SwigPtr_PyObject { method SwigPtr_PyObject (line 3308) | SwigPtr_PyObject() :_obj(0) method SwigPtr_PyObject (line 3312) | SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj) method SwigPtr_PyObject (line 3319) | SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj) method SwigPtr_PyObject (line 3328) | SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) method PyObject (line 3350) | PyObject *operator->() const type SwigVar_PyObject (line 3359) | struct SwigVar_PyObject : SwigPtr_PyObject { method SwigVar_PyObject (line 3360) | SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { } method SwigVar_PyObject (line 3362) | SwigVar_PyObject & operator = (PyObject* obj) type swig (line 3358) | namespace swig { class SwigPtr_PyObject (line 3303) | class SwigPtr_PyObject { method SwigPtr_PyObject (line 3308) | SwigPtr_PyObject() :_obj(0) method SwigPtr_PyObject (line 3312) | SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj) method SwigPtr_PyObject (line 3319) | SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj) method SwigPtr_PyObject (line 3328) | SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) method PyObject (line 3350) | PyObject *operator->() const type SwigVar_PyObject (line 3359) | struct SwigVar_PyObject : SwigPtr_PyObject { method SwigVar_PyObject (line 3360) | SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { } method SwigVar_PyObject (line 3362) | SwigVar_PyObject & operator = (PyObject* obj) function ReleaseResultObject (line 3390) | inline void ReleaseResultObject(PyObject *obj) { class PyInputString (line 3396) | class PyInputString { method PyInputString (line 3398) | explicit PyInputString(PyObject* obj) { method str (line 3409) | absl::string_view str() const { return absl::string_view(data(), size(... method Py_ssize_t (line 3411) | Py_ssize_t size() const { return size_; } method IsAvalable (line 3412) | bool IsAvalable() const { return str_ != nullptr; } method PyObject (line 3413) | PyObject *input_type() const { return input_type_; } method IsUnicode (line 3415) | static bool IsUnicode(PyObject *resultobj) { function PyObject (line 3425) | PyObject* MakePyOutputString(const std::string& output, function PyObject (line 3433) | PyObject* MakePyOutputBytes(const sentencepiece::util::bytes& output) { function ToSwigError (line 3437) | int ToSwigError(sentencepiece::util::StatusCode code) { class PySentenceIterator (line 3451) | class PySentenceIterator : public sentencepiece::SentenceIterator { method PySentenceIterator (line 3453) | PySentenceIterator(PyObject *iter) : iter_(iter) { method done (line 3462) | bool done() const override { method Next (line 3466) | void Next() override { method status (line 3475) | sentencepiece::util::Status status() const override { method CopyValue (line 3480) | void CopyValue() { function RewriteIds (line 3505) | inline void RewriteIds(const sentencepiece::SentencePieceProcessor &sp, function RewriteIds (line 3514) | inline void RewriteIds(const sentencepiece::SentencePieceProcessor &sp, function RewriteIds (line 3532) | inline void RewriteIds(const sentencepiece::SentencePieceProcessor &sp, function RewriteIds (line 3542) | inline void RewriteIds(const sentencepiece::SentencePieceProcessor &sp, function CheckIds (line 3552) | inline void CheckIds(const std::vector &ids, int num_pieces) { function CheckIds (line 3562) | inline void CheckIds(const std::vector &ids, int num_... function CheckIdsBatch (line 3564) | inline void CheckIdsBatch(const std::vector> &ids, int ... function ConvertToUnicodeSpans (line 3569) | inline void ConvertToUnicodeSpans(T *proto) {} function ConvertToUnicodeSpans (line 3572) | inline void ConvertToUnicodeSpans(sentencepiece::ImmutableSentencePieceT... function ConvertToUnicodeSpans (line 3577) | inline void ConvertToUnicodeSpans(sentencepiece::ImmutableNBestSentenceP... class ThreadPool (line 3581) | class ThreadPool { method ThreadPool (line 3583) | explicit ThreadPool(size_t request_size) : method Schedule (line 3592) | void Schedule(std::function closure) { function InitNumThreads (line 3607) | inline void InitNumThreads(const std::vector &ins, int *num_threads) { function SWIGINTERNINLINE (line 3662) | SWIGINTERNINLINE PyObject* function SWIGINTERN (line 3668) | SWIGINTERN sentencepiece::util::bytes const &sentencepiece_ImmutableSent... function SWIGINTERN (line 3671) | SWIGINTERN sentencepiece::util::bytes const &sentencepiece_ImmutableSent... function SWIGINTERNINLINE (line 3678) | SWIGINTERNINLINE PyObject* function SWIGINTERNINLINE (line 3702) | SWIGINTERNINLINE PyObject* function SWIGINTERNINLINE (line 3711) | SWIGINTERNINLINE PyObject * function SWIGINTERN (line 3727) | SWIGINTERN int function SWIGINTERNINLINE (line 3779) | SWIGINTERNINLINE int function SWIGINTERN (line 3811) | SWIGINTERN int function SWIGINTERN (line 3859) | SWIGINTERN int function SWIGINTERNINLINE (line 3878) | SWIGINTERNINLINE PyObject * function SWIGINTERN (line 3884) | SWIGINTERN sentencepiece::util::bytes const &sentencepiece_ImmutableSent... function SWIGINTERN (line 3888) | SWIGINTERN swig_type_info* function SWIGINTERN (line 3901) | SWIGINTERN int type std (line 4003) | namespace std { } function SWIG_isfinite_func (line 4004) | typename T> function SWIGINTERN (line 4029) | SWIGINTERN int function SWIGINTERNINLINE (line 4045) | SWIGINTERNINLINE PyObject* function SWIGINTERNINLINE (line 4052) | SWIGINTERNINLINE PyObject* function SWIGINTERN (line 4058) | SWIGINTERN sentencepiece::util::Status sentencepiece_SentencePieceProces... function SWIGINTERN (line 4062) | SWIGINTERN int function SWIGINTERN (line 4075) | SWIGINTERN std::vector< int > sentencepiece_SentencePieceProcessor__Enco... function SWIGINTERN (line 4082) | SWIGINTERN std::vector< std::string > sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4089) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4096) | SWIGINTERN sentencepiece::ImmutableSentencePieceText sentencepiece_Sente... function SWIGINTERN (line 4104) | SWIGINTERN std::vector< std::vector< int > > sentencepiece_SentencePiece... function SWIGINTERN (line 4108) | SWIGINTERN std::vector< std::vector< std::string > > sentencepiece_Sente... function SWIGINTERN (line 4112) | SWIGINTERN BytesArray sentencepiece_SentencePieceProcessor__EncodeAsSeri... function SWIGINTERN (line 4117) | SWIGINTERN std::vector< sentencepiece::ImmutableSentencePieceText > sent... function SWIGINTERN (line 4122) | SWIGINTERN std::string sentencepiece_SentencePieceProcessor__DecodeIds(s... function SWIGINTERN (line 4126) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4130) | SWIGINTERN std::string sentencepiece_SentencePieceProcessor__DecodePiece... function SWIGINTERN (line 4133) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4137) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4141) | SWIGINTERN sentencepiece::ImmutableSentencePieceText sentencepiece_Sente... function SWIGINTERN (line 4147) | SWIGINTERN sentencepiece::ImmutableSentencePieceText sentencepiece_Sente... function SWIGINTERN (line 4153) | SWIGINTERN std::vector< std::string > sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4157) | SWIGINTERN BytesArray sentencepiece_SentencePieceProcessor__DecodeIdsAsB... function SWIGINTERN (line 4161) | SWIGINTERN BytesArray sentencepiece_SentencePieceProcessor__DecodeIdsAsS... function SWIGINTERN (line 4166) | SWIGINTERN std::vector< sentencepiece::ImmutableSentencePieceText > sent... function SWIGINTERN (line 4171) | SWIGINTERN std::vector< std::string > sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4174) | SWIGINTERN BytesArray sentencepiece_SentencePieceProcessor__DecodePieces... function SWIGINTERN (line 4178) | SWIGINTERN std::vector< sentencepiece::ImmutableSentencePieceText > sent... function SWIGINTERN (line 4182) | SWIGINTERN std::vector< std::vector< int > > sentencepiece_SentencePiece... function SWIGINTERN (line 4189) | SWIGINTERN std::vector< std::vector< std::string > > sentencepiece_Sente... function SWIGINTERN (line 4196) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4201) | SWIGINTERN sentencepiece::ImmutableNBestSentencePieceText sentencepiece_... function SWIGINTERN (line 4208) | SWIGINTERN std::vector< std::pair< std::vector< int >,float > > sentence... function SWIGINTERN (line 4216) | SWIGINTERN std::vector< std::pair< std::vector< std::string >,float > > ... function SWIGINTERN (line 4224) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceProcess... function SWIGINTERN (line 4230) | SWIGINTERN sentencepiece::ImmutableNBestSentencePieceText sentencepiece_... function SWIGINTERN (line 4238) | SWIGINTERN std::string sentencepiece_SentencePieceProcessor__Normalize(s... function SWIGINTERN (line 4241) | SWIGINTERN std::pair< std::string,std::vector< size_t > > sentencepiece_... function SWIGINTERN (line 4246) | SWIGINTERN float sentencepiece_SentencePieceProcessor__CalculateEntropy(... function SWIGINTERN (line 4249) | SWIGINTERN std::vector< float > sentencepiece_SentencePieceProcessor__Ca... function SWIGINTERN (line 4266) | SWIGINTERN sentencepiece::util::Status sentencepiece_SentencePieceProces... function SWIGINTERN (line 4277) | SWIGINTERN int function SWIGINTERN (line 4329) | SWIGINTERN int function SWIGINTERN (line 4344) | SWIGINTERN void sentencepiece_SentencePieceTrainer__TrainFromString(absl... function SWIGINTERN (line 4349) | SWIGINTERN void sentencepiece_SentencePieceTrainer__TrainFromMap(std::un... function SWIGINTERN (line 4354) | SWIGINTERN void sentencepiece_SentencePieceTrainer__TrainFromMap2(std::u... function SWIGINTERN (line 4359) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceTrainer... function SWIGINTERN (line 4365) | SWIGINTERN sentencepiece::util::bytes sentencepiece_SentencePieceTrainer... function SWIGINTERN (line 4371) | SWIGINTERN sentencepiece::util::Status sentencepiece_SentencePieceNormal... function SWIGINTERN (line 4374) | SWIGINTERN std::string sentencepiece_SentencePieceNormalizer__Normalize(... function SWIGINTERN (line 4380) | SWIGINTERN std::pair< std::string,std::vector< size_t > > sentencepiece_... function SWIGINTERN (line 4386) | SWIGINTERN void sentencepiece_SentencePieceNormalizer__SetProtoField(sen... function SWIGINTERN (line 4395) | SWIGINTERN PyObject *_wrap_new_ImmutableSentencePieceText_ImmutableSente... function SWIGINTERN (line 4417) | SWIGINTERN PyObject *_wrap_delete_ImmutableSentencePieceText_ImmutableSe... function SWIGINTERN (line 4448) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_ImmutableSentenceP... function SWIGINTERN (line 4483) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_ImmutableSentenceP... function SWIGINTERN (line 4518) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_ImmutableSentenceP... function SWIGINTERN (line 4550) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_ImmutableSentenceP... function SWIGINTERN (line 4582) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_ImmutableSentenceP... function SWIGINTERN (line 4614) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_ImmutableSentenceP... function SWIGINTERN (line 4648) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_ImmutableSentenceP... function SWIGINTERN (line 4682) | SWIGINTERN PyObject *ImmutableSentencePieceText_ImmutableSentencePiece_s... function SWIGINTERN (line 4689) | SWIGINTERN PyObject *ImmutableSentencePieceText_ImmutableSentencePiece_s... function SWIGINTERN (line 4693) | SWIGINTERN PyObject *_wrap_new_ImmutableSentencePieceText(PyObject *self... function SWIGINTERN (line 4715) | SWIGINTERN PyObject *_wrap_delete_ImmutableSentencePieceText(PyObject *s... function SWIGINTERN (line 4746) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText__pieces_size(PyObj... function SWIGINTERN (line 4778) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText__pieces(PyObject *... function SWIGINTERN (line 4817) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText__text(PyObject *se... function SWIGINTERN (line 4852) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText__score(PyObject *s... function SWIGINTERN (line 4884) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText_SerializeAsString(... function SWIGINTERN (line 4918) | SWIGINTERN PyObject *_wrap_ImmutableSentencePieceText__text_as_bytes(PyO... function SWIGINTERN (line 4952) | SWIGINTERN PyObject *ImmutableSentencePieceText_swigregister(PyObject *S... function SWIGINTERN (line 4959) | SWIGINTERN PyObject *ImmutableSentencePieceText_swiginit(PyObject *SWIGU... function SWIGINTERN (line 4963) | SWIGINTERN PyObject *_wrap_new_ImmutableNBestSentencePieceText(PyObject ... function SWIGINTERN (line 4985) | SWIGINTERN PyObject *_wrap_delete_ImmutableNBestSentencePieceText(PyObje... function SWIGINTERN (line 5016) | SWIGINTERN PyObject *_wrap_ImmutableNBestSentencePieceText__nbests_size(... function SWIGINTERN (line 5048) | SWIGINTERN PyObject *_wrap_ImmutableNBestSentencePieceText__nbests(PyObj... function SWIGINTERN (line 5087) | SWIGINTERN PyObject *_wrap_ImmutableNBestSentencePieceText_SerializeAsSt... function SWIGINTERN (line 5121) | SWIGINTERN PyObject *ImmutableNBestSentencePieceText_swigregister(PyObje... function SWIGINTERN (line 5128) | SWIGINTERN PyObject *ImmutableNBestSentencePieceText_swiginit(PyObject *... function SWIGINTERN (line 5132) | SWIGINTERN PyObject *_wrap_new_SentencePieceProcessor(PyObject *self, Py... function SWIGINTERN (line 5154) | SWIGINTERN PyObject *_wrap_delete_SentencePieceProcessor(PyObject *self,... function SWIGINTERN (line 5185) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_LoadFromSerializedProt... function SWIGINTERN (line 5231) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_SetEncodeExtraOptions(... function SWIGINTERN (line 5277) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_SetDecodeExtraOptions(... function SWIGINTERN (line 5323) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_SetVocabulary(PyObject... function SWIGINTERN (line 5387) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_ResetVocabulary(PyObje... function SWIGINTERN (line 5424) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_LoadVocabulary(PyObjec... function SWIGINTERN (line 5478) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_CalculateEntropy__SWIG... function SWIGINTERN (line 5539) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_CalculateEntropy__SWIG... function SWIGINTERN (line 5587) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_CalculateEntropy(PyObj... function SWIGINTERN (line 5648) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_GetPieceSize(PyObject ... function SWIGINTERN (line 5680) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_PieceToId(PyObject *se... function SWIGINTERN (line 5721) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_IdToPiece(PyObject *se... function SWIGINTERN (line 5763) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_GetScore(PyObject *sel... function SWIGINTERN (line 5802) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_IsUnknown(PyObject *se... function SWIGINTERN (line 5841) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_IsControl(PyObject *se... function SWIGINTERN (line 5880) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_IsUnused(PyObject *sel... function SWIGINTERN (line 5919) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_IsByte(PyObject *self,... function SWIGINTERN (line 5958) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_unk_id(PyObject *self,... function SWIGINTERN (line 5990) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_bos_id(PyObject *self,... function SWIGINTERN (line 6022) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_eos_id(PyObject *self,... function SWIGINTERN (line 6054) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_pad_id(PyObject *self,... function SWIGINTERN (line 6086) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_serialized_model_proto... function SWIGINTERN (line 6120) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor_LoadFromFile(PyObject ... function SWIGINTERN (line 6166) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsIds(PyObject ... function SWIGINTERN (line 6268) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsPieces(PyObje... function SWIGINTERN (line 6371) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsSerializedPro... function SWIGINTERN (line 6470) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsImmutableProt... function SWIGINTERN (line 6567) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsIdsBatch(PyOb... function SWIGINTERN (line 6699) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsPiecesBatch(P... function SWIGINTERN (line 6832) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsSerializedPro... function SWIGINTERN (line 6960) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__EncodeAsImmutableProt... function SWIGINTERN (line 7089) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIds(PyObject *s... function SWIGINTERN (line 7150) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIdsAsBytes(PyOb... function SWIGINTERN (line 7210) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodePieces(PyObject... function SWIGINTERN (line 7272) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIdsAsSerialized... function SWIGINTERN (line 7332) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodePiecesAsSeriali... function SWIGINTERN (line 7393) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIdsAsImmutableP... function SWIGINTERN (line 7451) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodePiecesAsImmutab... function SWIGINTERN (line 7510) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIdsBatch(PyObje... function SWIGINTERN (line 7592) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIdsAsBytesBatch... function SWIGINTERN (line 7673) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIdsAsSerialized... function SWIGINTERN (line 7754) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodeIdsAsImmutableP... function SWIGINTERN (line 7836) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodePiecesBatch(PyO... function SWIGINTERN (line 7913) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodePiecesAsSeriali... function SWIGINTERN (line 7989) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__DecodePiecesAsImmutab... function SWIGINTERN (line 8066) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__NBestEncodeAsIds(PyOb... function SWIGINTERN (line 8156) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__NBestEncodeAsPieces(P... function SWIGINTERN (line 8247) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__NBestEncodeAsSerializ... function SWIGINTERN (line 8330) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__NBestEncodeAsImmutabl... function SWIGINTERN (line 8411) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__SampleEncodeAndScoreA... function SWIGINTERN (line 8525) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__SampleEncodeAndScoreA... function SWIGINTERN (line 8640) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__SampleEncodeAndScoreA... function SWIGINTERN (line 8747) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__SampleEncodeAndScoreA... function SWIGINTERN (line 8852) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__Normalize(PyObject *s... function SWIGINTERN (line 8896) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__NormalizeWithOffsets(... function SWIGINTERN (line 8947) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__CalculateEntropy(PyOb... function SWIGINTERN (line 8996) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__CalculateEntropyBatch... function SWIGINTERN (line 9076) | SWIGINTERN PyObject *_wrap_SentencePieceProcessor__OverrideNormalizerSpe... function SWIGINTERN (line 9143) | SWIGINTERN PyObject *SentencePieceProcessor_swigregister(PyObject *SWIGU... function SWIGINTERN (line 9150) | SWIGINTERN PyObject *SentencePieceProcessor_swiginit(PyObject *SWIGUNUSE... function SWIGINTERN (line 9154) | SWIGINTERN PyObject *_wrap_SetRandomGeneratorSeed(PyObject *self, PyObje... function SWIGINTERN (line 9185) | SWIGINTERN PyObject *_wrap_SetMinLogLevel(PyObject *self, PyObject *args) { function SWIGINTERN (line 9216) | SWIGINTERN PyObject *_wrap_SentencePieceTrainer__TrainFromString(PyObjec... function SWIGINTERN (line 9249) | SWIGINTERN PyObject *_wrap_SentencePieceTrainer__TrainFromMap(PyObject *... function SWIGINTERN (line 9303) | SWIGINTERN PyObject *_wrap_SentencePieceTrainer__TrainFromMap2(PyObject ... function SWIGINTERN (line 9373) | SWIGINTERN PyObject *_wrap_SentencePieceTrainer__TrainFromMap3(PyObject ... function SWIGINTERN (line 9430) | SWIGINTERN PyObject *_wrap_SentencePieceTrainer__TrainFromMap4(PyObject ... function SWIGINTERN (line 9503) | SWIGINTERN PyObject *SentencePieceTrainer_swigregister(PyObject *SWIGUNU... function SWIGINTERN (line 9510) | SWIGINTERN PyObject *_wrap_new_SentencePieceNormalizer(PyObject *self, P... function SWIGINTERN (line 9532) | SWIGINTERN PyObject *_wrap_delete_SentencePieceNormalizer(PyObject *self... function SWIGINTERN (line 9563) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer_LoadFromSerializedPro... function SWIGINTERN (line 9609) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer_LoadFromRuleTSV(PyObj... function SWIGINTERN (line 9655) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer_LoadFromRuleName(PyOb... function SWIGINTERN (line 9701) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer_serialized_model_prot... function SWIGINTERN (line 9736) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer_LoadFromFile(PyObject... function SWIGINTERN (line 9782) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer__Normalize(PyObject *... function SWIGINTERN (line 9826) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer__NormalizeWithOffsets... function SWIGINTERN (line 9877) | SWIGINTERN PyObject *_wrap_SentencePieceNormalizer__SetProtoField(PyObje... function SWIGINTERN (line 9925) | SWIGINTERN PyObject *SentencePieceNormalizer_swigregister(PyObject *SWIG... function SWIGINTERN (line 9932) | SWIGINTERN PyObject *SentencePieceNormalizer_swiginit(PyObject *SWIGUNUS... function SWIGINTERN (line 9936) | SWIGINTERN PyObject *_wrap_SetDataDir(PyObject *self, PyObject *args) { function SWIGRUNTIME (line 10218) | SWIGRUNTIME void function SWIGRUNTIME (line 10365) | SWIGRUNTIME void function SWIGINTERN (line 10407) | SWIGINTERN void function SWIGINTERN (line 10434) | SWIGINTERN void FILE: python/test/sentencepiece_test.py class TestSentencepieceProcessor (line 35) | class TestSentencepieceProcessor(unittest.TestCase): method setUp (line 38) | def setUp(self): method test_load (line 48) | def test_load(self): method test_roundtrip (line 75) | def test_roundtrip(self): method test_ja_load (line 134) | def test_ja_load(self): method test_ja_roundtrip (line 157) | def test_ja_roundtrip(self): method test_train (line 206) | def test_train(self): method test_train_iterator (line 220) | def test_train_iterator(self): method test_train_kwargs (line 269) | def test_train_kwargs(self): method test_serialized_proto (line 289) | def test_serialized_proto(self): method test_decode_bytes (line 335) | def test_decode_bytes(self): method test_immutable_proto (line 369) | def test_immutable_proto(self): method test_new_api (line 488) | def test_new_api(self): method test_new_api_init (line 583) | def test_new_api_init(self): method test_sampling (line 597) | def test_sampling(self): method test_nbest (line 630) | def test_nbest(self): method test_sample_and_score (line 689) | def test_sample_and_score(self): method test_valid_range (line 723) | def test_valid_range(self): method test_batch (line 745) | def test_batch(self): method test_pickle (line 781) | def test_pickle(self): method test_global_params (line 795) | def test_global_params(self): method test_normalize (line 801) | def test_normalize(self): method test_normalizer (line 844) | def test_normalizer(self): method test_normalizer_rule (line 906) | def test_normalizer_rule(self): method test_override_normalize_spec (line 913) | def test_override_normalize_spec(self): function suite (line 931) | def suite(): FILE: src/bpe_model.cc type sentencepiece (line 28) | namespace sentencepiece { type bpe (line 29) | namespace bpe { type SymbolPair (line 44) | struct SymbolPair { class SymbolPairComparator (line 51) | class SymbolPairComparator { type Symbol (line 59) | struct Symbol { FILE: src/bpe_model.h function namespace (line 21) | namespace sentencepiece { FILE: src/bpe_model_test.cc type sentencepiece (line 22) | namespace sentencepiece { type bpe (line 23) | namespace bpe { function ModelProto (line 26) | ModelProto MakeBaseModelProto() { function AddPiece (line 42) | void AddPiece(ModelProto *model_proto, const std::string &piece, function TEST (line 49) | TEST(BPEModelTest, EncodeTest) { function TEST (line 143) | TEST(BPEModelTest, EncodeAmbiguousTest) { function TEST (line 189) | TEST(BPEModelTest, NotSupportedTest) { function TEST (line 195) | TEST(BPEModelTest, EncodeWithUnusedTest) { function TEST (line 252) | TEST(SampleModelTest, EncodeTest) { FILE: src/bpe_model_trainer.cc type sentencepiece (line 28) | namespace sentencepiece { type bpe (line 29) | namespace bpe { FILE: src/bpe_model_trainer.h function namespace (line 28) | namespace sentencepiece { FILE: src/bpe_model_trainer_test.cc type sentencepiece (line 27) | namespace sentencepiece { type bpe (line 28) | namespace bpe { function RunTrainer (line 34) | std::string RunTrainer( function TEST (line 81) | TEST(BPETrainerTest, BasicTest) { function TEST (line 94) | TEST(BPETrainerTest, EndToEndTest) { FILE: src/builder.cc type sentencepiece (line 47) | namespace sentencepiece { type normalizer (line 48) | namespace normalizer { function UnicodeNormalize (line 62) | Builder::Chars UnicodeNormalize(UNormalizationMode mode, function ToNFKD (line 79) | Builder::Chars ToNFKD(const Builder::Chars &input) { function ToNFKC (line 83) | Builder::Chars ToNFKC(const Builder::Chars &input) { function ToNFC (line 87) | Builder::Chars ToNFC(const Builder::Chars &input) { function ToNFD (line 91) | Builder::Chars ToNFD(const Builder::Chars &input) { function ExpandUnnormalized (line 98) | std::vector ExpandUnnormalized( function Normalize (line 124) | Builder::Chars Normalize(const Builder::CharsMap &chars_map, function IsValidNormalizerData (line 156) | util::Status IsValidNormalizerData(absl::string_view blob_data) { function BuildMapInternal (line 332) | util::Status BuildMapInternal( FILE: src/builder.h function namespace (line 27) | namespace sentencepiece { FILE: src/builder_test.cc type sentencepiece (line 25) | namespace sentencepiece { type normalizer (line 26) | namespace normalizer { function TEST (line 31) | TEST(BuilderTest, RemoveRedundantMapTest) { function TEST (line 48) | TEST(BuilderTest, GetPrecompiledCharsMapWithInvalidNameTest) { function TEST (line 54) | TEST(BuilderTest, BuildNFKCMapTest) { function TEST (line 64) | TEST(BuilderTest, GetPrecompiledCharsMapTest) { function TEST (line 103) | TEST(BuilderTest, CompileCharsMap) { function TEST (line 145) | TEST(BuilderTest, LoadCharsMapTest) { function TEST (line 179) | TEST(BuilderTest, LoadCharsMapWithEmptyeTest) { function TEST (line 211) | TEST(BuilderTest, ContainsTooManySharedPrefixTest) { FILE: src/builtin_pb/sentencepiece.pb.cc type sentencepiece (line 16) | namespace sentencepiece { class SentencePieceText_SentencePieceDefaultTypeInternal (line 17) | class SentencePieceText_SentencePieceDefaultTypeInternal { class SentencePieceTextDefaultTypeInternal (line 21) | class SentencePieceTextDefaultTypeInternal { class NBestSentencePieceTextDefaultTypeInternal (line 25) | class NBestSentencePieceTextDefaultTypeInternal { class SentencePieceText_SentencePiece::_Internal (line 75) | class SentencePieceText_SentencePiece::_Internal { method set_has_piece (line 78) | static void set_has_piece(HasBits* has_bits) { method set_has_id (line 81) | static void set_has_id(HasBits* has_bits) { method set_has_surface (line 84) | static void set_has_surface(HasBits* has_bits) { method set_has_begin (line 87) | static void set_has_begin(HasBits* has_bits) { method set_has_end (line 90) | static void set_has_end(HasBits* has_bits) { function SentencePieceText_SentencePiece (line 154) | const SentencePieceText_SentencePiece& SentencePieceText_SentencePiece... class SentencePieceText::_Internal (line 439) | class SentencePieceText::_Internal { method set_has_text (line 442) | static void set_has_text(HasBits* has_bits) { method set_has_score (line 445) | static void set_has_score(HasBits* has_bits) { function SentencePieceText (line 499) | const SentencePieceText& SentencePieceText::default_instance() { class NBestSentencePieceText::_Internal (line 726) | class NBestSentencePieceText::_Internal { function NBestSentencePieceText (line 767) | const NBestSentencePieceText& NBestSentencePieceText::default_instance... function InitDefaultsscc_info_NBestSentencePieceText_sentencepiece_2eproto (line 30) | static void InitDefaultsscc_info_NBestSentencePieceText_sentencepiece_2e... function InitDefaultsscc_info_SentencePieceText_sentencepiece_2eproto (line 44) | static void InitDefaultsscc_info_SentencePieceText_sentencepiece_2eproto... function InitDefaultsscc_info_SentencePieceText_SentencePiece_sentencepiece_2eproto (line 58) | static void InitDefaultsscc_info_SentencePieceText_SentencePiece_sentenc... type sentencepiece (line 71) | namespace sentencepiece { class SentencePieceText_SentencePieceDefaultTypeInternal (line 17) | class SentencePieceText_SentencePieceDefaultTypeInternal { class SentencePieceTextDefaultTypeInternal (line 21) | class SentencePieceTextDefaultTypeInternal { class NBestSentencePieceTextDefaultTypeInternal (line 25) | class NBestSentencePieceTextDefaultTypeInternal { class SentencePieceText_SentencePiece::_Internal (line 75) | class SentencePieceText_SentencePiece::_Internal { method set_has_piece (line 78) | static void set_has_piece(HasBits* has_bits) { method set_has_id (line 81) | static void set_has_id(HasBits* has_bits) { method set_has_surface (line 84) | static void set_has_surface(HasBits* has_bits) { method set_has_begin (line 87) | static void set_has_begin(HasBits* has_bits) { method set_has_end (line 90) | static void set_has_end(HasBits* has_bits) { function SentencePieceText_SentencePiece (line 154) | const SentencePieceText_SentencePiece& SentencePieceText_SentencePiece... class SentencePieceText::_Internal (line 439) | class SentencePieceText::_Internal { method set_has_text (line 442) | static void set_has_text(HasBits* has_bits) { method set_has_score (line 445) | static void set_has_score(HasBits* has_bits) { function SentencePieceText (line 499) | const SentencePieceText& SentencePieceText::default_instance() { class NBestSentencePieceText::_Internal (line 726) | class NBestSentencePieceText::_Internal { function NBestSentencePieceText (line 767) | const NBestSentencePieceText& NBestSentencePieceText::default_instance... function PROTOBUF_NAMESPACE_OPEN (line 910) | PROTOBUF_NAMESPACE_OPEN FILE: src/builtin_pb/sentencepiece.pb.h function PROTOBUF_NAMESPACE_OPEN (line 35) | PROTOBUF_NAMESPACE_OPEN function PROTOBUF_NAMESPACE_CLOSE (line 39) | PROTOBUF_NAMESPACE_CLOSE function namespace (line 53) | namespace sentencepiece { function PROTOBUF_NAMESPACE_CLOSE (line 68) | PROTOBUF_NAMESPACE_CLOSE function std (line 101) | inline std::string* mutable_unknown_fields() { function SentencePieceText_SentencePiece (line 107) | static inline const SentencePieceText_SentencePiece* internal_default_in... function Swap (line 117) | inline void Swap(SentencePieceText_SentencePiece* other) { function UnsafeArenaSwap (line 125) | void UnsafeArenaSwap(SentencePieceText_SentencePiece* other) { function SentencePieceText_SentencePiece (line 133) | inline SentencePieceText_SentencePiece* New() const final { function final (line 137) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 144) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 160) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { function std (line 189) | const std::string& piece() const; function std (line 311) | inline std::string* mutable_unknown_fields() { function SentencePieceText (line 317) | static inline const SentencePieceText* internal_default_instance() { function Swap (line 327) | inline void Swap(SentencePieceText* other) { function UnsafeArenaSwap (line 335) | void UnsafeArenaSwap(SentencePieceText* other) { function SentencePieceText (line 343) | inline SentencePieceText* New() const final { function final (line 347) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 354) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 370) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { type SentencePieceText_SentencePiece (line 384) | typedef SentencePieceText_SentencePiece SentencePiece; function PROTOBUF_NAMESPACE_ID (line 408) | const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece::Senten... function std (line 491) | inline std::string* mutable_unknown_fields() { function NBestSentencePieceText (line 497) | static inline const NBestSentencePieceText* internal_default_instance() { function Swap (line 507) | inline void Swap(NBestSentencePieceText* other) { function UnsafeArenaSwap (line 515) | void UnsafeArenaSwap(NBestSentencePieceText* other) { function NBestSentencePieceText (line 523) | inline NBestSentencePieceText* New() const final { function final (line 527) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 534) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 550) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { function _internal_has_piece (line 610) | inline bool SentencePieceText_SentencePiece::_internal_has_piece() const { function clear_piece (line 617) | inline void SentencePieceText_SentencePiece::clear_piece() { function set_piece (line 625) | inline void SentencePieceText_SentencePiece::set_piece(const std::string... function std (line 629) | inline std::string* SentencePieceText_SentencePiece::mutable_piece() { function _internal_set_piece (line 636) | inline void SentencePieceText_SentencePiece::_internal_set_piece(const s... function set_piece (line 640) | inline void SentencePieceText_SentencePiece::set_piece(std::string&& val... function set_piece (line 646) | inline void SentencePieceText_SentencePiece::set_piece(const char* value) { function set_piece (line 652) | inline void SentencePieceText_SentencePiece::set_piece(const char* value, function std (line 659) | inline std::string* SentencePieceText_SentencePiece::_internal_mutable_p... function std (line 663) | inline std::string* SentencePieceText_SentencePiece::release_piece() { function set_allocated_piece (line 671) | inline void SentencePieceText_SentencePiece::set_allocated_piece(std::st... function _internal_has_id (line 683) | inline bool SentencePieceText_SentencePiece::_internal_has_id() const { function clear_id (line 690) | inline void SentencePieceText_SentencePiece::clear_id() { function _internal_set_id (line 701) | inline void SentencePieceText_SentencePiece::_internal_set_id(::PROTOBUF... function set_id (line 705) | inline void SentencePieceText_SentencePiece::set_id(::PROTOBUF_NAMESPACE... function _internal_has_surface (line 711) | inline bool SentencePieceText_SentencePiece::_internal_has_surface() con... function clear_surface (line 718) | inline void SentencePieceText_SentencePiece::clear_surface() { function set_surface (line 726) | inline void SentencePieceText_SentencePiece::set_surface(const std::stri... function std (line 730) | inline std::string* SentencePieceText_SentencePiece::mutable_surface() { function _internal_set_surface (line 737) | inline void SentencePieceText_SentencePiece::_internal_set_surface(const... function set_surface (line 741) | inline void SentencePieceText_SentencePiece::set_surface(std::string&& v... function set_surface (line 747) | inline void SentencePieceText_SentencePiece::set_surface(const char* val... function set_surface (line 753) | inline void SentencePieceText_SentencePiece::set_surface(const char* value, function std (line 760) | inline std::string* SentencePieceText_SentencePiece::_internal_mutable_s... function std (line 764) | inline std::string* SentencePieceText_SentencePiece::release_surface() { function set_allocated_surface (line 772) | inline void SentencePieceText_SentencePiece::set_allocated_surface(std::... function _internal_has_begin (line 784) | inline bool SentencePieceText_SentencePiece::_internal_has_begin() const { function clear_begin (line 791) | inline void SentencePieceText_SentencePiece::clear_begin() { function _internal_set_begin (line 802) | inline void SentencePieceText_SentencePiece::_internal_set_begin(::PROTO... function set_begin (line 806) | inline void SentencePieceText_SentencePiece::set_begin(::PROTOBUF_NAMESP... function _internal_has_end (line 812) | inline bool SentencePieceText_SentencePiece::_internal_has_end() const { function clear_end (line 819) | inline void SentencePieceText_SentencePiece::clear_end() { function _internal_set_end (line 830) | inline void SentencePieceText_SentencePiece::_internal_set_end(::PROTOBU... function set_end (line 834) | inline void SentencePieceText_SentencePiece::set_end(::PROTOBUF_NAMESPAC... function _internal_has_text (line 844) | inline bool SentencePieceText::_internal_has_text() const { function clear_text (line 851) | inline void SentencePieceText::clear_text() { function set_text (line 859) | inline void SentencePieceText::set_text(const std::string& value) { function std (line 863) | inline std::string* SentencePieceText::mutable_text() { function _internal_set_text (line 870) | inline void SentencePieceText::_internal_set_text(const std::string& val... function set_text (line 874) | inline void SentencePieceText::set_text(std::string&& value) { function set_text (line 880) | inline void SentencePieceText::set_text(const char* value) { function set_text (line 886) | inline void SentencePieceText::set_text(const char* value, function std (line 893) | inline std::string* SentencePieceText::_internal_mutable_text() { function std (line 897) | inline std::string* SentencePieceText::release_text() { function set_allocated_text (line 905) | inline void SentencePieceText::set_allocated_text(std::string* text) { function clear_pieces (line 923) | inline void SentencePieceText::clear_pieces() { function sentencepiece (line 926) | inline ::sentencepiece::SentencePieceText_SentencePiece* SentencePieceTe... function PROTOBUF_NAMESPACE_ID (line 930) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece::Sente... function sentencepiece (line 935) | inline const ::sentencepiece::SentencePieceText_SentencePiece& SentenceP... function sentencepiece (line 938) | inline const ::sentencepiece::SentencePieceText_SentencePiece& SentenceP... function sentencepiece (line 942) | inline ::sentencepiece::SentencePieceText_SentencePiece* SentencePieceTe... function sentencepiece (line 945) | inline ::sentencepiece::SentencePieceText_SentencePiece* SentencePieceTe... function PROTOBUF_NAMESPACE_ID (line 949) | inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece:... function clear_score (line 963) | inline void SentencePieceText::clear_score() { function _internal_set_score (line 974) | inline void SentencePieceText::_internal_set_score(float value) { function set_score (line 978) | inline void SentencePieceText::set_score(float value) { function clear_nbests (line 994) | inline void NBestSentencePieceText::clear_nbests() { function sentencepiece (line 997) | inline ::sentencepiece::SentencePieceText* NBestSentencePieceText::mutab... function PROTOBUF_NAMESPACE_ID (line 1001) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece::Sente... function sentencepiece (line 1006) | inline const ::sentencepiece::SentencePieceText& NBestSentencePieceText:... function sentencepiece (line 1009) | inline const ::sentencepiece::SentencePieceText& NBestSentencePieceText:... function sentencepiece (line 1013) | inline ::sentencepiece::SentencePieceText* NBestSentencePieceText::_inte... function sentencepiece (line 1016) | inline ::sentencepiece::SentencePieceText* NBestSentencePieceText::add_n... FILE: src/builtin_pb/sentencepiece_model.pb.cc type sentencepiece (line 19) | namespace sentencepiece { class TrainerSpecDefaultTypeInternal (line 20) | class TrainerSpecDefaultTypeInternal { class NormalizerSpecDefaultTypeInternal (line 24) | class NormalizerSpecDefaultTypeInternal { class SelfTestData_SampleDefaultTypeInternal (line 28) | class SelfTestData_SampleDefaultTypeInternal { class SelfTestDataDefaultTypeInternal (line 32) | class SelfTestDataDefaultTypeInternal { class ModelProto_SentencePieceDefaultTypeInternal (line 36) | class ModelProto_SentencePieceDefaultTypeInternal { class ModelProtoDefaultTypeInternal (line 40) | class ModelProtoDefaultTypeInternal { function TrainerSpec_ModelType_IsValid (line 129) | bool TrainerSpec_ModelType_IsValid(int value) { function TrainerSpec_ModelType_Parse (line 178) | bool TrainerSpec_ModelType_Parse( function ModelProto_SentencePiece_Type_IsValid (line 197) | bool ModelProto_SentencePiece_Type_IsValid(int value) { function ModelProto_SentencePiece_Type_Parse (line 254) | bool ModelProto_SentencePiece_Type_Parse( class TrainerSpec::_Internal (line 278) | class TrainerSpec::_Internal { method set_has_input_format (line 281) | static void set_has_input_format(HasBits* has_bits) { method set_has_model_prefix (line 284) | static void set_has_model_prefix(HasBits* has_bits) { method set_has_model_type (line 287) | static void set_has_model_type(HasBits* has_bits) { method set_has_vocab_size (line 290) | static void set_has_vocab_size(HasBits* has_bits) { method set_has_self_test_sample_size (line 293) | static void set_has_self_test_sample_size(HasBits* has_bits) { method set_has_enable_differential_privacy (line 296) | static void set_has_enable_differential_privacy(HasBits* has_bits) { method set_has_differential_privacy_noise_level (line 299) | static void set_has_differential_privacy_noise_level(HasBits* has_bi... method set_has_differential_privacy_clipping_threshold (line 302) | static void set_has_differential_privacy_clipping_threshold(HasBits*... method set_has_character_coverage (line 305) | static void set_has_character_coverage(HasBits* has_bits) { method set_has_input_sentence_size (line 308) | static void set_has_input_sentence_size(HasBits* has_bits) { method set_has_shuffle_input_sentence (line 311) | static void set_has_shuffle_input_sentence(HasBits* has_bits) { method set_has_mining_sentence_size (line 314) | static void set_has_mining_sentence_size(HasBits* has_bits) { method set_has_training_sentence_size (line 317) | static void set_has_training_sentence_size(HasBits* has_bits) { method set_has_seed_sentencepiece_size (line 320) | static void set_has_seed_sentencepiece_size(HasBits* has_bits) { method set_has_shrinking_factor (line 323) | static void set_has_shrinking_factor(HasBits* has_bits) { method set_has_max_sentence_length (line 326) | static void set_has_max_sentence_length(HasBits* has_bits) { method set_has_num_threads (line 329) | static void set_has_num_threads(HasBits* has_bits) { method set_has_num_sub_iterations (line 332) | static void set_has_num_sub_iterations(HasBits* has_bits) { method set_has_max_sentencepiece_length (line 335) | static void set_has_max_sentencepiece_length(HasBits* has_bits) { method set_has_split_by_unicode_script (line 338) | static void set_has_split_by_unicode_script(HasBits* has_bits) { method set_has_split_by_number (line 341) | static void set_has_split_by_number(HasBits* has_bits) { method set_has_split_by_whitespace (line 344) | static void set_has_split_by_whitespace(HasBits* has_bits) { method set_has_treat_whitespace_as_suffix (line 347) | static void set_has_treat_whitespace_as_suffix(HasBits* has_bits) { method set_has_allow_whitespace_only_pieces (line 350) | static void set_has_allow_whitespace_only_pieces(HasBits* has_bits) { method set_has_split_digits (line 353) | static void set_has_split_digits(HasBits* has_bits) { method set_has_pretokenization_delimiter (line 356) | static void set_has_pretokenization_delimiter(HasBits* has_bits) { method set_has_required_chars (line 359) | static void set_has_required_chars(HasBits* has_bits) { method set_has_byte_fallback (line 362) | static void set_has_byte_fallback(HasBits* has_bits) { method set_has_vocabulary_output_piece_score (line 365) | static void set_has_vocabulary_output_piece_score(HasBits* has_bits) { method set_has_hard_vocab_limit (line 368) | static void set_has_hard_vocab_limit(HasBits* has_bits) { method set_has_use_all_vocab (line 371) | static void set_has_use_all_vocab(HasBits* has_bits) { method set_has_unk_id (line 374) | static void set_has_unk_id(HasBits* has_bits) { method set_has_bos_id (line 377) | static void set_has_bos_id(HasBits* has_bits) { method set_has_eos_id (line 380) | static void set_has_eos_id(HasBits* has_bits) { method set_has_pad_id (line 383) | static void set_has_pad_id(HasBits* has_bits) { method set_has_unk_piece (line 386) | static void set_has_unk_piece(HasBits* has_bits) { method set_has_bos_piece (line 389) | static void set_has_bos_piece(HasBits* has_bits) { method set_has_eos_piece (line 392) | static void set_has_eos_piece(HasBits* has_bits) { method set_has_pad_piece (line 395) | static void set_has_pad_piece(HasBits* has_bits) { method set_has_unk_surface (line 398) | static void set_has_unk_surface(HasBits* has_bits) { method set_has_train_extremely_large_corpus (line 401) | static void set_has_train_extremely_large_corpus(HasBits* has_bits) { method set_has_seed_sentencepieces_file (line 404) | static void set_has_seed_sentencepieces_file(HasBits* has_bits) { function TrainerSpec (line 555) | const TrainerSpec& TrainerSpec::default_instance() { class NormalizerSpec::_Internal (line 1933) | class NormalizerSpec::_Internal { method set_has_name (line 1936) | static void set_has_name(HasBits* has_bits) { method set_has_precompiled_charsmap (line 1939) | static void set_has_precompiled_charsmap(HasBits* has_bits) { method set_has_add_dummy_prefix (line 1942) | static void set_has_add_dummy_prefix(HasBits* has_bits) { method set_has_remove_extra_whitespaces (line 1945) | static void set_has_remove_extra_whitespaces(HasBits* has_bits) { method set_has_escape_whitespaces (line 1948) | static void set_has_escape_whitespaces(HasBits* has_bits) { method set_has_normalization_rule_tsv (line 1951) | static void set_has_normalization_rule_tsv(HasBits* has_bits) { function NormalizerSpec (line 2021) | const NormalizerSpec& NormalizerSpec::default_instance() { class SelfTestData_Sample::_Internal (line 2323) | class SelfTestData_Sample::_Internal { method set_has_input (line 2326) | static void set_has_input(HasBits* has_bits) { method set_has_expected (line 2329) | static void set_has_expected(HasBits* has_bits) { function SelfTestData_Sample (line 2384) | const SelfTestData_Sample& SelfTestData_Sample::default_instance() { class SelfTestData::_Internal (line 2566) | class SelfTestData::_Internal { function SelfTestData (line 2609) | const SelfTestData& SelfTestData::default_instance() { class ModelProto_SentencePiece::_Internal (line 2770) | class ModelProto_SentencePiece::_Internal { method set_has_piece (line 2773) | static void set_has_piece(HasBits* has_bits) { method set_has_score (line 2776) | static void set_has_score(HasBits* has_bits) { method set_has_type (line 2779) | static void set_has_type(HasBits* has_bits) { function ModelProto_SentencePiece (line 2834) | const ModelProto_SentencePiece& ModelProto_SentencePiece::default_inst... class ModelProto::_Internal (line 3062) | class ModelProto::_Internal { method set_has_trainer_spec (line 3066) | static void set_has_trainer_spec(HasBits* has_bits) { method set_has_normalizer_spec (line 3070) | static void set_has_normalizer_spec(HasBits* has_bits) { method set_has_self_test_data (line 3074) | static void set_has_self_test_data(HasBits* has_bits) { method set_has_denormalizer_spec (line 3078) | static void set_has_denormalizer_spec(HasBits* has_bits) { function ModelProto (line 3167) | const ModelProto& ModelProto::default_instance() { function InitDefaultsscc_info_ModelProto_sentencepiece_5fmodel_2eproto (line 45) | static void InitDefaultsscc_info_ModelProto_sentencepiece_5fmodel_2eprot... function InitDefaultsscc_info_ModelProto_SentencePiece_sentencepiece_5fmodel_2eproto (line 62) | static void InitDefaultsscc_info_ModelProto_SentencePiece_sentencepiece_... function InitDefaultsscc_info_NormalizerSpec_sentencepiece_5fmodel_2eproto (line 75) | static void InitDefaultsscc_info_NormalizerSpec_sentencepiece_5fmodel_2e... function InitDefaultsscc_info_SelfTestData_sentencepiece_5fmodel_2eproto (line 88) | static void InitDefaultsscc_info_SelfTestData_sentencepiece_5fmodel_2epr... function InitDefaultsscc_info_SelfTestData_Sample_sentencepiece_5fmodel_2eproto (line 102) | static void InitDefaultsscc_info_SelfTestData_Sample_sentencepiece_5fmod... function InitDefaultsscc_info_TrainerSpec_sentencepiece_5fmodel_2eproto (line 115) | static void InitDefaultsscc_info_TrainerSpec_sentencepiece_5fmodel_2epro... type sentencepiece (line 128) | namespace sentencepiece { class TrainerSpecDefaultTypeInternal (line 20) | class TrainerSpecDefaultTypeInternal { class NormalizerSpecDefaultTypeInternal (line 24) | class NormalizerSpecDefaultTypeInternal { class SelfTestData_SampleDefaultTypeInternal (line 28) | class SelfTestData_SampleDefaultTypeInternal { class SelfTestDataDefaultTypeInternal (line 32) | class SelfTestDataDefaultTypeInternal { class ModelProto_SentencePieceDefaultTypeInternal (line 36) | class ModelProto_SentencePieceDefaultTypeInternal { class ModelProtoDefaultTypeInternal (line 40) | class ModelProtoDefaultTypeInternal { function TrainerSpec_ModelType_IsValid (line 129) | bool TrainerSpec_ModelType_IsValid(int value) { function TrainerSpec_ModelType_Parse (line 178) | bool TrainerSpec_ModelType_Parse( function ModelProto_SentencePiece_Type_IsValid (line 197) | bool ModelProto_SentencePiece_Type_IsValid(int value) { function ModelProto_SentencePiece_Type_Parse (line 254) | bool ModelProto_SentencePiece_Type_Parse( class TrainerSpec::_Internal (line 278) | class TrainerSpec::_Internal { method set_has_input_format (line 281) | static void set_has_input_format(HasBits* has_bits) { method set_has_model_prefix (line 284) | static void set_has_model_prefix(HasBits* has_bits) { method set_has_model_type (line 287) | static void set_has_model_type(HasBits* has_bits) { method set_has_vocab_size (line 290) | static void set_has_vocab_size(HasBits* has_bits) { method set_has_self_test_sample_size (line 293) | static void set_has_self_test_sample_size(HasBits* has_bits) { method set_has_enable_differential_privacy (line 296) | static void set_has_enable_differential_privacy(HasBits* has_bits) { method set_has_differential_privacy_noise_level (line 299) | static void set_has_differential_privacy_noise_level(HasBits* has_bi... method set_has_differential_privacy_clipping_threshold (line 302) | static void set_has_differential_privacy_clipping_threshold(HasBits*... method set_has_character_coverage (line 305) | static void set_has_character_coverage(HasBits* has_bits) { method set_has_input_sentence_size (line 308) | static void set_has_input_sentence_size(HasBits* has_bits) { method set_has_shuffle_input_sentence (line 311) | static void set_has_shuffle_input_sentence(HasBits* has_bits) { method set_has_mining_sentence_size (line 314) | static void set_has_mining_sentence_size(HasBits* has_bits) { method set_has_training_sentence_size (line 317) | static void set_has_training_sentence_size(HasBits* has_bits) { method set_has_seed_sentencepiece_size (line 320) | static void set_has_seed_sentencepiece_size(HasBits* has_bits) { method set_has_shrinking_factor (line 323) | static void set_has_shrinking_factor(HasBits* has_bits) { method set_has_max_sentence_length (line 326) | static void set_has_max_sentence_length(HasBits* has_bits) { method set_has_num_threads (line 329) | static void set_has_num_threads(HasBits* has_bits) { method set_has_num_sub_iterations (line 332) | static void set_has_num_sub_iterations(HasBits* has_bits) { method set_has_max_sentencepiece_length (line 335) | static void set_has_max_sentencepiece_length(HasBits* has_bits) { method set_has_split_by_unicode_script (line 338) | static void set_has_split_by_unicode_script(HasBits* has_bits) { method set_has_split_by_number (line 341) | static void set_has_split_by_number(HasBits* has_bits) { method set_has_split_by_whitespace (line 344) | static void set_has_split_by_whitespace(HasBits* has_bits) { method set_has_treat_whitespace_as_suffix (line 347) | static void set_has_treat_whitespace_as_suffix(HasBits* has_bits) { method set_has_allow_whitespace_only_pieces (line 350) | static void set_has_allow_whitespace_only_pieces(HasBits* has_bits) { method set_has_split_digits (line 353) | static void set_has_split_digits(HasBits* has_bits) { method set_has_pretokenization_delimiter (line 356) | static void set_has_pretokenization_delimiter(HasBits* has_bits) { method set_has_required_chars (line 359) | static void set_has_required_chars(HasBits* has_bits) { method set_has_byte_fallback (line 362) | static void set_has_byte_fallback(HasBits* has_bits) { method set_has_vocabulary_output_piece_score (line 365) | static void set_has_vocabulary_output_piece_score(HasBits* has_bits) { method set_has_hard_vocab_limit (line 368) | static void set_has_hard_vocab_limit(HasBits* has_bits) { method set_has_use_all_vocab (line 371) | static void set_has_use_all_vocab(HasBits* has_bits) { method set_has_unk_id (line 374) | static void set_has_unk_id(HasBits* has_bits) { method set_has_bos_id (line 377) | static void set_has_bos_id(HasBits* has_bits) { method set_has_eos_id (line 380) | static void set_has_eos_id(HasBits* has_bits) { method set_has_pad_id (line 383) | static void set_has_pad_id(HasBits* has_bits) { method set_has_unk_piece (line 386) | static void set_has_unk_piece(HasBits* has_bits) { method set_has_bos_piece (line 389) | static void set_has_bos_piece(HasBits* has_bits) { method set_has_eos_piece (line 392) | static void set_has_eos_piece(HasBits* has_bits) { method set_has_pad_piece (line 395) | static void set_has_pad_piece(HasBits* has_bits) { method set_has_unk_surface (line 398) | static void set_has_unk_surface(HasBits* has_bits) { method set_has_train_extremely_large_corpus (line 401) | static void set_has_train_extremely_large_corpus(HasBits* has_bits) { method set_has_seed_sentencepieces_file (line 404) | static void set_has_seed_sentencepieces_file(HasBits* has_bits) { function TrainerSpec (line 555) | const TrainerSpec& TrainerSpec::default_instance() { class NormalizerSpec::_Internal (line 1933) | class NormalizerSpec::_Internal { method set_has_name (line 1936) | static void set_has_name(HasBits* has_bits) { method set_has_precompiled_charsmap (line 1939) | static void set_has_precompiled_charsmap(HasBits* has_bits) { method set_has_add_dummy_prefix (line 1942) | static void set_has_add_dummy_prefix(HasBits* has_bits) { method set_has_remove_extra_whitespaces (line 1945) | static void set_has_remove_extra_whitespaces(HasBits* has_bits) { method set_has_escape_whitespaces (line 1948) | static void set_has_escape_whitespaces(HasBits* has_bits) { method set_has_normalization_rule_tsv (line 1951) | static void set_has_normalization_rule_tsv(HasBits* has_bits) { function NormalizerSpec (line 2021) | const NormalizerSpec& NormalizerSpec::default_instance() { class SelfTestData_Sample::_Internal (line 2323) | class SelfTestData_Sample::_Internal { method set_has_input (line 2326) | static void set_has_input(HasBits* has_bits) { method set_has_expected (line 2329) | static void set_has_expected(HasBits* has_bits) { function SelfTestData_Sample (line 2384) | const SelfTestData_Sample& SelfTestData_Sample::default_instance() { class SelfTestData::_Internal (line 2566) | class SelfTestData::_Internal { function SelfTestData (line 2609) | const SelfTestData& SelfTestData::default_instance() { class ModelProto_SentencePiece::_Internal (line 2770) | class ModelProto_SentencePiece::_Internal { method set_has_piece (line 2773) | static void set_has_piece(HasBits* has_bits) { method set_has_score (line 2776) | static void set_has_score(HasBits* has_bits) { method set_has_type (line 2779) | static void set_has_type(HasBits* has_bits) { function ModelProto_SentencePiece (line 2834) | const ModelProto_SentencePiece& ModelProto_SentencePiece::default_inst... class ModelProto::_Internal (line 3062) | class ModelProto::_Internal { method set_has_trainer_spec (line 3066) | static void set_has_trainer_spec(HasBits* has_bits) { method set_has_normalizer_spec (line 3070) | static void set_has_normalizer_spec(HasBits* has_bits) { method set_has_self_test_data (line 3074) | static void set_has_self_test_data(HasBits* has_bits) { method set_has_denormalizer_spec (line 3078) | static void set_has_denormalizer_spec(HasBits* has_bits) { function ModelProto (line 3167) | const ModelProto& ModelProto::default_instance() { function PROTOBUF_NAMESPACE_OPEN (line 3477) | PROTOBUF_NAMESPACE_OPEN FILE: src/builtin_pb/sentencepiece_model.pb.h function PROTOBUF_NAMESPACE_OPEN (line 36) | PROTOBUF_NAMESPACE_OPEN function PROTOBUF_NAMESPACE_CLOSE (line 40) | PROTOBUF_NAMESPACE_CLOSE function namespace (line 54) | namespace sentencepiece { function PROTOBUF_NAMESPACE_CLOSE (line 81) | PROTOBUF_NAMESPACE_CLOSE function std (line 158) | inline std::string* mutable_unknown_fields() { function TrainerSpec (line 164) | static inline const TrainerSpec* internal_default_instance() { function Swap (line 174) | inline void Swap(TrainerSpec* other) { function UnsafeArenaSwap (line 182) | void UnsafeArenaSwap(TrainerSpec* other) { function TrainerSpec (line 190) | inline TrainerSpec* New() const final { function final (line 194) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 201) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 217) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { type TrainerSpec_ModelType (line 231) | typedef TrainerSpec_ModelType ModelType; function ModelType_IsValid (line 240) | static inline bool ModelType_IsValid(int value) { function std (line 250) | inline const std::string& ModelType_Name(T enum_t_value) { function ModelType_Parse (line 256) | static inline bool ModelType_Parse(::PROTOBUF_NAMESPACE_ID::ConstStringP... function PROTOBUF_NAMESPACE_ID (line 328) | const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField& input() co... function std (line 1118) | inline std::string* mutable_unknown_fields() { function NormalizerSpec (line 1124) | static inline const NormalizerSpec* internal_default_instance() { function Swap (line 1134) | inline void Swap(NormalizerSpec* other) { function UnsafeArenaSwap (line 1142) | void UnsafeArenaSwap(NormalizerSpec* other) { function NormalizerSpec (line 1150) | inline NormalizerSpec* New() const final { function final (line 1154) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 1161) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 1177) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { function std (line 1207) | const std::string& name() const; function std (line 1350) | inline std::string* mutable_unknown_fields() { function SelfTestData_Sample (line 1356) | static inline const SelfTestData_Sample* internal_default_instance() { function Swap (line 1366) | inline void Swap(SelfTestData_Sample* other) { function UnsafeArenaSwap (line 1374) | void UnsafeArenaSwap(SelfTestData_Sample* other) { function SelfTestData_Sample (line 1382) | inline SelfTestData_Sample* New() const final { function final (line 1386) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 1393) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 1409) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { function std (line 1435) | const std::string& input() const; function std (line 1512) | inline std::string* mutable_unknown_fields() { function SelfTestData (line 1518) | static inline const SelfTestData* internal_default_instance() { function Swap (line 1528) | inline void Swap(SelfTestData* other) { function UnsafeArenaSwap (line 1536) | void UnsafeArenaSwap(SelfTestData* other) { function SelfTestData (line 1544) | inline SelfTestData* New() const final { function final (line 1548) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 1555) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 1571) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { type SelfTestData_Sample (line 1585) | typedef SelfTestData_Sample Sample; function PROTOBUF_NAMESPACE_ID (line 1607) | const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece::SelfTe... function std (line 1654) | inline std::string* mutable_unknown_fields() { function ModelProto_SentencePiece (line 1660) | static inline const ModelProto_SentencePiece* internal_default_instance() { function Swap (line 1670) | inline void Swap(ModelProto_SentencePiece* other) { function UnsafeArenaSwap (line 1678) | void UnsafeArenaSwap(ModelProto_SentencePiece* other) { function ModelProto_SentencePiece (line 1686) | inline ModelProto_SentencePiece* New() const final { function final (line 1690) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 1697) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 1713) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { type ModelProto_SentencePiece_Type (line 1727) | typedef ModelProto_SentencePiece_Type Type; function Type_IsValid (line 1740) | static inline bool Type_IsValid(int value) { function std (line 1750) | inline const std::string& Type_Name(T enum_t_value) { function Type_Parse (line 1756) | static inline bool Type_Parse(::PROTOBUF_NAMESPACE_ID::ConstStringParam ... function std (line 1774) | const std::string& piece() const; function std (line 1861) | inline std::string* mutable_unknown_fields() { function ModelProto (line 1867) | static inline const ModelProto* internal_default_instance() { function Swap (line 1877) | inline void Swap(ModelProto* other) { function UnsafeArenaSwap (line 1885) | void UnsafeArenaSwap(ModelProto* other) { function ModelProto (line 1893) | inline ModelProto* New() const final { function final (line 1897) | const final { function PROTOBUF_ATTRIBUTE_REINITIALIZES (line 1904) | PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; function PROTOBUF_NAMESPACE_ID (line 1920) | static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() { type ModelProto_SentencePiece (line 1934) | typedef ModelProto_SentencePiece SentencePiece; function clear_input (line 2072) | inline void TrainerSpec::clear_input() { function std (line 2075) | inline std::string* TrainerSpec::add_input() { function std (line 2079) | inline const std::string& TrainerSpec::_internal_input(int index) const { function std (line 2082) | inline const std::string& TrainerSpec::input(int index) const { function std (line 2086) | inline std::string* TrainerSpec::mutable_input(int index) { function set_input (line 2090) | inline void TrainerSpec::set_input(int index, const std::string& value) { function set_input (line 2094) | inline void TrainerSpec::set_input(int index, std::string&& value) { function set_input (line 2098) | inline void TrainerSpec::set_input(int index, const char* value) { function set_input (line 2103) | inline void TrainerSpec::set_input(int index, const char* value, size_t ... function std (line 2108) | inline std::string* TrainerSpec::_internal_add_input() { function add_input (line 2111) | inline void TrainerSpec::add_input(const std::string& value) { function add_input (line 2115) | inline void TrainerSpec::add_input(std::string&& value) { function add_input (line 2119) | inline void TrainerSpec::add_input(const char* value) { function add_input (line 2124) | inline void TrainerSpec::add_input(const char* value, size_t size) { function PROTOBUF_NAMESPACE_ID (line 2133) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* function _internal_has_input_format (line 2140) | inline bool TrainerSpec::_internal_has_input_format() const { function clear_input_format (line 2147) | inline void TrainerSpec::clear_input_format() { function set_input_format (line 2155) | inline void TrainerSpec::set_input_format(const std::string& value) { function std (line 2159) | inline std::string* TrainerSpec::mutable_input_format() { function _internal_set_input_format (line 2166) | inline void TrainerSpec::_internal_set_input_format(const std::string& v... function set_input_format (line 2170) | inline void TrainerSpec::set_input_format(std::string&& value) { function set_input_format (line 2176) | inline void TrainerSpec::set_input_format(const char* value) { function set_input_format (line 2182) | inline void TrainerSpec::set_input_format(const char* value, function std (line 2189) | inline std::string* TrainerSpec::_internal_mutable_input_format() { function std (line 2193) | inline std::string* TrainerSpec::release_input_format() { function set_allocated_input_format (line 2201) | inline void TrainerSpec::set_allocated_input_format(std::string* input_f... function _internal_has_model_prefix (line 2213) | inline bool TrainerSpec::_internal_has_model_prefix() const { function clear_model_prefix (line 2220) | inline void TrainerSpec::clear_model_prefix() { function set_model_prefix (line 2228) | inline void TrainerSpec::set_model_prefix(const std::string& value) { function std (line 2232) | inline std::string* TrainerSpec::mutable_model_prefix() { function _internal_set_model_prefix (line 2239) | inline void TrainerSpec::_internal_set_model_prefix(const std::string& v... function set_model_prefix (line 2243) | inline void TrainerSpec::set_model_prefix(std::string&& value) { function set_model_prefix (line 2249) | inline void TrainerSpec::set_model_prefix(const char* value) { function set_model_prefix (line 2255) | inline void TrainerSpec::set_model_prefix(const char* value, function std (line 2262) | inline std::string* TrainerSpec::_internal_mutable_model_prefix() { function std (line 2266) | inline std::string* TrainerSpec::release_model_prefix() { function set_allocated_model_prefix (line 2274) | inline void TrainerSpec::set_allocated_model_prefix(std::string* model_p... function _internal_has_model_type (line 2286) | inline bool TrainerSpec::_internal_has_model_type() const { function clear_model_type (line 2293) | inline void TrainerSpec::clear_model_type() { function _internal_set_model_type (line 2304) | inline void TrainerSpec::_internal_set_model_type(::sentencepiece::Train... function set_model_type (line 2309) | inline void TrainerSpec::set_model_type(::sentencepiece::TrainerSpec_Mod... function _internal_has_vocab_size (line 2315) | inline bool TrainerSpec::_internal_has_vocab_size() const { function clear_vocab_size (line 2322) | inline void TrainerSpec::clear_vocab_size() { function _internal_set_vocab_size (line 2333) | inline void TrainerSpec::_internal_set_vocab_size(::PROTOBUF_NAMESPACE_I... function set_vocab_size (line 2337) | inline void TrainerSpec::set_vocab_size(::PROTOBUF_NAMESPACE_ID::int32 v... function clear_accept_language (line 2349) | inline void TrainerSpec::clear_accept_language() { function std (line 2352) | inline std::string* TrainerSpec::add_accept_language() { function std (line 2356) | inline const std::string& TrainerSpec::_internal_accept_language(int ind... function std (line 2359) | inline const std::string& TrainerSpec::accept_language(int index) const { function std (line 2363) | inline std::string* TrainerSpec::mutable_accept_language(int index) { function set_accept_language (line 2367) | inline void TrainerSpec::set_accept_language(int index, const std::strin... function set_accept_language (line 2371) | inline void TrainerSpec::set_accept_language(int index, std::string&& va... function set_accept_language (line 2375) | inline void TrainerSpec::set_accept_language(int index, const char* valu... function set_accept_language (line 2380) | inline void TrainerSpec::set_accept_language(int index, const char* valu... function std (line 2385) | inline std::string* TrainerSpec::_internal_add_accept_language() { function add_accept_language (line 2388) | inline void TrainerSpec::add_accept_language(const std::string& value) { function add_accept_language (line 2392) | inline void TrainerSpec::add_accept_language(std::string&& value) { function add_accept_language (line 2396) | inline void TrainerSpec::add_accept_language(const char* value) { function add_accept_language (line 2401) | inline void TrainerSpec::add_accept_language(const char* value, size_t s... function PROTOBUF_NAMESPACE_ID (line 2410) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* function _internal_has_self_test_sample_size (line 2417) | inline bool TrainerSpec::_internal_has_self_test_sample_size() const { function clear_self_test_sample_size (line 2424) | inline void TrainerSpec::clear_self_test_sample_size() { function _internal_set_self_test_sample_size (line 2435) | inline void TrainerSpec::_internal_set_self_test_sample_size(::PROTOBUF_... function set_self_test_sample_size (line 2439) | inline void TrainerSpec::set_self_test_sample_size(::PROTOBUF_NAMESPACE_... function _internal_has_enable_differential_privacy (line 2445) | inline bool TrainerSpec::_internal_has_enable_differential_privacy() con... function clear_enable_differential_privacy (line 2452) | inline void TrainerSpec::clear_enable_differential_privacy() { function _internal_set_enable_differential_privacy (line 2463) | inline void TrainerSpec::_internal_set_enable_differential_privacy(bool ... function set_enable_differential_privacy (line 2467) | inline void TrainerSpec::set_enable_differential_privacy(bool value) { function _internal_has_differential_privacy_noise_level (line 2473) | inline bool TrainerSpec::_internal_has_differential_privacy_noise_level(... function clear_differential_privacy_noise_level (line 2480) | inline void TrainerSpec::clear_differential_privacy_noise_level() { function _internal_set_differential_privacy_noise_level (line 2491) | inline void TrainerSpec::_internal_set_differential_privacy_noise_level(... function set_differential_privacy_noise_level (line 2495) | inline void TrainerSpec::set_differential_privacy_noise_level(float valu... function _internal_has_differential_privacy_clipping_threshold (line 2501) | inline bool TrainerSpec::_internal_has_differential_privacy_clipping_thr... function clear_differential_privacy_clipping_threshold (line 2508) | inline void TrainerSpec::clear_differential_privacy_clipping_threshold() { function _internal_set_differential_privacy_clipping_threshold (line 2519) | inline void TrainerSpec::_internal_set_differential_privacy_clipping_thr... function set_differential_privacy_clipping_threshold (line 2523) | inline void TrainerSpec::set_differential_privacy_clipping_threshold(::P... function _internal_has_character_coverage (line 2529) | inline bool TrainerSpec::_internal_has_character_coverage() const { function clear_character_coverage (line 2536) | inline void TrainerSpec::clear_character_coverage() { function _internal_set_character_coverage (line 2547) | inline void TrainerSpec::_internal_set_character_coverage(float value) { function set_character_coverage (line 2551) | inline void TrainerSpec::set_character_coverage(float value) { function _internal_has_input_sentence_size (line 2557) | inline bool TrainerSpec::_internal_has_input_sentence_size() const { function clear_input_sentence_size (line 2564) | inline void TrainerSpec::clear_input_sentence_size() { function _internal_set_input_sentence_size (line 2575) | inline void TrainerSpec::_internal_set_input_sentence_size(::PROTOBUF_NA... function set_input_sentence_size (line 2579) | inline void TrainerSpec::set_input_sentence_size(::PROTOBUF_NAMESPACE_ID... function _internal_has_shuffle_input_sentence (line 2585) | inline bool TrainerSpec::_internal_has_shuffle_input_sentence() const { function clear_shuffle_input_sentence (line 2592) | inline void TrainerSpec::clear_shuffle_input_sentence() { function _internal_set_shuffle_input_sentence (line 2603) | inline void TrainerSpec::_internal_set_shuffle_input_sentence(bool value) { function set_shuffle_input_sentence (line 2607) | inline void TrainerSpec::set_shuffle_input_sentence(bool value) { function _internal_has_mining_sentence_size (line 2613) | inline bool TrainerSpec::_internal_has_mining_sentence_size() const { function clear_mining_sentence_size (line 2620) | inline void TrainerSpec::clear_mining_sentence_size() { function _internal_set_mining_sentence_size (line 2631) | inline void TrainerSpec::_internal_set_mining_sentence_size(::PROTOBUF_N... function set_mining_sentence_size (line 2635) | inline void TrainerSpec::set_mining_sentence_size(::PROTOBUF_NAMESPACE_I... function _internal_has_training_sentence_size (line 2641) | inline bool TrainerSpec::_internal_has_training_sentence_size() const { function clear_training_sentence_size (line 2648) | inline void TrainerSpec::clear_training_sentence_size() { function _internal_set_training_sentence_size (line 2659) | inline void TrainerSpec::_internal_set_training_sentence_size(::PROTOBUF... function set_training_sentence_size (line 2663) | inline void TrainerSpec::set_training_sentence_size(::PROTOBUF_NAMESPACE... function _internal_has_seed_sentencepiece_size (line 2669) | inline bool TrainerSpec::_internal_has_seed_sentencepiece_size() const { function clear_seed_sentencepiece_size (line 2676) | inline void TrainerSpec::clear_seed_sentencepiece_size() { function _internal_set_seed_sentencepiece_size (line 2687) | inline void TrainerSpec::_internal_set_seed_sentencepiece_size(::PROTOBU... function set_seed_sentencepiece_size (line 2691) | inline void TrainerSpec::set_seed_sentencepiece_size(::PROTOBUF_NAMESPAC... function _internal_has_shrinking_factor (line 2697) | inline bool TrainerSpec::_internal_has_shrinking_factor() const { function clear_shrinking_factor (line 2704) | inline void TrainerSpec::clear_shrinking_factor() { function _internal_set_shrinking_factor (line 2715) | inline void TrainerSpec::_internal_set_shrinking_factor(float value) { function set_shrinking_factor (line 2719) | inline void TrainerSpec::set_shrinking_factor(float value) { function _internal_has_max_sentence_length (line 2725) | inline bool TrainerSpec::_internal_has_max_sentence_length() const { function clear_max_sentence_length (line 2732) | inline void TrainerSpec::clear_max_sentence_length() { function _internal_set_max_sentence_length (line 2743) | inline void TrainerSpec::_internal_set_max_sentence_length(::PROTOBUF_NA... function set_max_sentence_length (line 2747) | inline void TrainerSpec::set_max_sentence_length(::PROTOBUF_NAMESPACE_ID... function _internal_has_num_threads (line 2753) | inline bool TrainerSpec::_internal_has_num_threads() const { function clear_num_threads (line 2760) | inline void TrainerSpec::clear_num_threads() { function _internal_set_num_threads (line 2771) | inline void TrainerSpec::_internal_set_num_threads(::PROTOBUF_NAMESPACE_... function set_num_threads (line 2775) | inline void TrainerSpec::set_num_threads(::PROTOBUF_NAMESPACE_ID::int32 ... function _internal_has_num_sub_iterations (line 2781) | inline bool TrainerSpec::_internal_has_num_sub_iterations() const { function clear_num_sub_iterations (line 2788) | inline void TrainerSpec::clear_num_sub_iterations() { function _internal_set_num_sub_iterations (line 2799) | inline void TrainerSpec::_internal_set_num_sub_iterations(::PROTOBUF_NAM... function set_num_sub_iterations (line 2803) | inline void TrainerSpec::set_num_sub_iterations(::PROTOBUF_NAMESPACE_ID:... function _internal_has_max_sentencepiece_length (line 2809) | inline bool TrainerSpec::_internal_has_max_sentencepiece_length() const { function clear_max_sentencepiece_length (line 2816) | inline void TrainerSpec::clear_max_sentencepiece_length() { function _internal_set_max_sentencepiece_length (line 2827) | inline void TrainerSpec::_internal_set_max_sentencepiece_length(::PROTOB... function set_max_sentencepiece_length (line 2831) | inline void TrainerSpec::set_max_sentencepiece_length(::PROTOBUF_NAMESPA... function _internal_has_split_by_unicode_script (line 2837) | inline bool TrainerSpec::_internal_has_split_by_unicode_script() const { function clear_split_by_unicode_script (line 2844) | inline void TrainerSpec::clear_split_by_unicode_script() { function _internal_set_split_by_unicode_script (line 2855) | inline void TrainerSpec::_internal_set_split_by_unicode_script(bool valu... function set_split_by_unicode_script (line 2859) | inline void TrainerSpec::set_split_by_unicode_script(bool value) { function _internal_has_split_by_number (line 2865) | inline bool TrainerSpec::_internal_has_split_by_number() const { function clear_split_by_number (line 2872) | inline void TrainerSpec::clear_split_by_number() { function _internal_set_split_by_number (line 2883) | inline void TrainerSpec::_internal_set_split_by_number(bool value) { function set_split_by_number (line 2887) | inline void TrainerSpec::set_split_by_number(bool value) { function _internal_has_split_by_whitespace (line 2893) | inline bool TrainerSpec::_internal_has_split_by_whitespace() const { function clear_split_by_whitespace (line 2900) | inline void TrainerSpec::clear_split_by_whitespace() { function _internal_set_split_by_whitespace (line 2911) | inline void TrainerSpec::_internal_set_split_by_whitespace(bool value) { function set_split_by_whitespace (line 2915) | inline void TrainerSpec::set_split_by_whitespace(bool value) { function _internal_has_treat_whitespace_as_suffix (line 2921) | inline bool TrainerSpec::_internal_has_treat_whitespace_as_suffix() const { function clear_treat_whitespace_as_suffix (line 2928) | inline void TrainerSpec::clear_treat_whitespace_as_suffix() { function _internal_set_treat_whitespace_as_suffix (line 2939) | inline void TrainerSpec::_internal_set_treat_whitespace_as_suffix(bool v... function set_treat_whitespace_as_suffix (line 2943) | inline void TrainerSpec::set_treat_whitespace_as_suffix(bool value) { function _internal_has_allow_whitespace_only_pieces (line 2949) | inline bool TrainerSpec::_internal_has_allow_whitespace_only_pieces() co... function clear_allow_whitespace_only_pieces (line 2956) | inline void TrainerSpec::clear_allow_whitespace_only_pieces() { function _internal_set_allow_whitespace_only_pieces (line 2967) | inline void TrainerSpec::_internal_set_allow_whitespace_only_pieces(bool... function set_allow_whitespace_only_pieces (line 2971) | inline void TrainerSpec::set_allow_whitespace_only_pieces(bool value) { function _internal_has_split_digits (line 2977) | inline bool TrainerSpec::_internal_has_split_digits() const { function clear_split_digits (line 2984) | inline void TrainerSpec::clear_split_digits() { function _internal_set_split_digits (line 2995) | inline void TrainerSpec::_internal_set_split_digits(bool value) { function set_split_digits (line 2999) | inline void TrainerSpec::set_split_digits(bool value) { function _internal_has_pretokenization_delimiter (line 3005) | inline bool TrainerSpec::_internal_has_pretokenization_delimiter() const { function clear_pretokenization_delimiter (line 3012) | inline void TrainerSpec::clear_pretokenization_delimiter() { function set_pretokenization_delimiter (line 3020) | inline void TrainerSpec::set_pretokenization_delimiter(const std::string... function std (line 3024) | inline std::string* TrainerSpec::mutable_pretokenization_delimiter() { function _internal_set_pretokenization_delimiter (line 3031) | inline void TrainerSpec::_internal_set_pretokenization_delimiter(const s... function set_pretokenization_delimiter (line 3035) | inline void TrainerSpec::set_pretokenization_delimiter(std::string&& val... function set_pretokenization_delimiter (line 3041) | inline void TrainerSpec::set_pretokenization_delimiter(const char* value) { function set_pretokenization_delimiter (line 3047) | inline void TrainerSpec::set_pretokenization_delimiter(const char* value, function std (line 3054) | inline std::string* TrainerSpec::_internal_mutable_pretokenization_delim... function std (line 3058) | inline std::string* TrainerSpec::release_pretokenization_delimiter() { function set_allocated_pretokenization_delimiter (line 3066) | inline void TrainerSpec::set_allocated_pretokenization_delimiter(std::st... function clear_control_symbols (line 3084) | inline void TrainerSpec::clear_control_symbols() { function std (line 3087) | inline std::string* TrainerSpec::add_control_symbols() { function std (line 3091) | inline const std::string& TrainerSpec::_internal_control_symbols(int ind... function std (line 3094) | inline const std::string& TrainerSpec::control_symbols(int index) const { function std (line 3098) | inline std::string* TrainerSpec::mutable_control_symbols(int index) { function set_control_symbols (line 3102) | inline void TrainerSpec::set_control_symbols(int index, const std::strin... function set_control_symbols (line 3106) | inline void TrainerSpec::set_control_symbols(int index, std::string&& va... function set_control_symbols (line 3110) | inline void TrainerSpec::set_control_symbols(int index, const char* valu... function set_control_symbols (line 3115) | inline void TrainerSpec::set_control_symbols(int index, const char* valu... function std (line 3120) | inline std::string* TrainerSpec::_internal_add_control_symbols() { function add_control_symbols (line 3123) | inline void TrainerSpec::add_control_symbols(const std::string& value) { function add_control_symbols (line 3127) | inline void TrainerSpec::add_control_symbols(std::string&& value) { function add_control_symbols (line 3131) | inline void TrainerSpec::add_control_symbols(const char* value) { function add_control_symbols (line 3136) | inline void TrainerSpec::add_control_symbols(const char* value, size_t s... function PROTOBUF_NAMESPACE_ID (line 3145) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* function clear_user_defined_symbols (line 3158) | inline void TrainerSpec::clear_user_defined_symbols() { function std (line 3161) | inline std::string* TrainerSpec::add_user_defined_symbols() { function std (line 3165) | inline const std::string& TrainerSpec::_internal_user_defined_symbols(in... function std (line 3168) | inline const std::string& TrainerSpec::user_defined_symbols(int index) c... function std (line 3172) | inline std::string* TrainerSpec::mutable_user_defined_symbols(int index) { function set_user_defined_symbols (line 3176) | inline void TrainerSpec::set_user_defined_symbols(int index, const std::... function set_user_defined_symbols (line 3180) | inline void TrainerSpec::set_user_defined_symbols(int index, std::string... function set_user_defined_symbols (line 3184) | inline void TrainerSpec::set_user_defined_symbols(int index, const char*... function set_user_defined_symbols (line 3189) | inline void TrainerSpec::set_user_defined_symbols(int index, const char*... function std (line 3194) | inline std::string* TrainerSpec::_internal_add_user_defined_symbols() { function add_user_defined_symbols (line 3197) | inline void TrainerSpec::add_user_defined_symbols(const std::string& val... function add_user_defined_symbols (line 3201) | inline void TrainerSpec::add_user_defined_symbols(std::string&& value) { function add_user_defined_symbols (line 3205) | inline void TrainerSpec::add_user_defined_symbols(const char* value) { function add_user_defined_symbols (line 3210) | inline void TrainerSpec::add_user_defined_symbols(const char* value, siz... function PROTOBUF_NAMESPACE_ID (line 3219) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField* function _internal_has_required_chars (line 3226) | inline bool TrainerSpec::_internal_has_required_chars() const { function clear_required_chars (line 3233) | inline void TrainerSpec::clear_required_chars() { function set_required_chars (line 3241) | inline void TrainerSpec::set_required_chars(const std::string& value) { function std (line 3245) | inline std::string* TrainerSpec::mutable_required_chars() { function _internal_set_required_chars (line 3252) | inline void TrainerSpec::_internal_set_required_chars(const std::string&... function set_required_chars (line 3256) | inline void TrainerSpec::set_required_chars(std::string&& value) { function set_required_chars (line 3262) | inline void TrainerSpec::set_required_chars(const char* value) { function set_required_chars (line 3268) | inline void TrainerSpec::set_required_chars(const char* value, function std (line 3275) | inline std::string* TrainerSpec::_internal_mutable_required_chars() { function std (line 3279) | inline std::string* TrainerSpec::release_required_chars() { function set_allocated_required_chars (line 3287) | inline void TrainerSpec::set_allocated_required_chars(std::string* requi... function _internal_has_byte_fallback (line 3299) | inline bool TrainerSpec::_internal_has_byte_fallback() const { function clear_byte_fallback (line 3306) | inline void TrainerSpec::clear_byte_fallback() { function _internal_set_byte_fallback (line 3317) | inline void TrainerSpec::_internal_set_byte_fallback(bool value) { function set_byte_fallback (line 3321) | inline void TrainerSpec::set_byte_fallback(bool value) { function _internal_has_vocabulary_output_piece_score (line 3327) | inline bool TrainerSpec::_internal_has_vocabulary_output_piece_score() c... function clear_vocabulary_output_piece_score (line 3334) | inline void TrainerSpec::clear_vocabulary_output_piece_score() { function _internal_set_vocabulary_output_piece_score (line 3345) | inline void TrainerSpec::_internal_set_vocabulary_output_piece_score(boo... function set_vocabulary_output_piece_score (line 3349) | inline void TrainerSpec::set_vocabulary_output_piece_score(bool value) { function _internal_has_hard_vocab_limit (line 3355) | inline bool TrainerSpec::_internal_has_hard_vocab_limit() const { function clear_hard_vocab_limit (line 3362) | inline void TrainerSpec::clear_hard_vocab_limit() { function _internal_set_hard_vocab_limit (line 3373) | inline void TrainerSpec::_internal_set_hard_vocab_limit(bool value) { function set_hard_vocab_limit (line 3377) | inline void TrainerSpec::set_hard_vocab_limit(bool value) { function _internal_has_use_all_vocab (line 3383) | inline bool TrainerSpec::_internal_has_use_all_vocab() const { function clear_use_all_vocab (line 3390) | inline void TrainerSpec::clear_use_all_vocab() { function _internal_set_use_all_vocab (line 3401) | inline void TrainerSpec::_internal_set_use_all_vocab(bool value) { function set_use_all_vocab (line 3405) | inline void TrainerSpec::set_use_all_vocab(bool value) { function _internal_has_unk_id (line 3411) | inline bool TrainerSpec::_internal_has_unk_id() const { function clear_unk_id (line 3418) | inline void TrainerSpec::clear_unk_id() { function _internal_set_unk_id (line 3429) | inline void TrainerSpec::_internal_set_unk_id(::PROTOBUF_NAMESPACE_ID::i... function set_unk_id (line 3433) | inline void TrainerSpec::set_unk_id(::PROTOBUF_NAMESPACE_ID::int32 value) { function _internal_has_bos_id (line 3439) | inline bool TrainerSpec::_internal_has_bos_id() const { function clear_bos_id (line 3446) | inline void TrainerSpec::clear_bos_id() { function _internal_set_bos_id (line 3457) | inline void TrainerSpec::_internal_set_bos_id(::PROTOBUF_NAMESPACE_ID::i... function set_bos_id (line 3461) | inline void TrainerSpec::set_bos_id(::PROTOBUF_NAMESPACE_ID::int32 value) { function _internal_has_eos_id (line 3467) | inline bool TrainerSpec::_internal_has_eos_id() const { function clear_eos_id (line 3474) | inline void TrainerSpec::clear_eos_id() { function _internal_set_eos_id (line 3485) | inline void TrainerSpec::_internal_set_eos_id(::PROTOBUF_NAMESPACE_ID::i... function set_eos_id (line 3489) | inline void TrainerSpec::set_eos_id(::PROTOBUF_NAMESPACE_ID::int32 value) { function _internal_has_pad_id (line 3495) | inline bool TrainerSpec::_internal_has_pad_id() const { function clear_pad_id (line 3502) | inline void TrainerSpec::clear_pad_id() { function _internal_set_pad_id (line 3513) | inline void TrainerSpec::_internal_set_pad_id(::PROTOBUF_NAMESPACE_ID::i... function set_pad_id (line 3517) | inline void TrainerSpec::set_pad_id(::PROTOBUF_NAMESPACE_ID::int32 value) { function _internal_has_unk_piece (line 3523) | inline bool TrainerSpec::_internal_has_unk_piece() const { function clear_unk_piece (line 3530) | inline void TrainerSpec::clear_unk_piece() { function set_unk_piece (line 3539) | inline void TrainerSpec::set_unk_piece(const std::string& value) { function std (line 3543) | inline std::string* TrainerSpec::mutable_unk_piece() { function _internal_set_unk_piece (line 3550) | inline void TrainerSpec::_internal_set_unk_piece(const std::string& valu... function set_unk_piece (line 3554) | inline void TrainerSpec::set_unk_piece(std::string&& value) { function set_unk_piece (line 3560) | inline void TrainerSpec::set_unk_piece(const char* value) { function set_unk_piece (line 3566) | inline void TrainerSpec::set_unk_piece(const char* value, function std (line 3573) | inline std::string* TrainerSpec::_internal_mutable_unk_piece() { function std (line 3577) | inline std::string* TrainerSpec::release_unk_piece() { function set_allocated_unk_piece (line 3585) | inline void TrainerSpec::set_allocated_unk_piece(std::string* unk_piece) { function _internal_has_bos_piece (line 3597) | inline bool TrainerSpec::_internal_has_bos_piece() const { function clear_bos_piece (line 3604) | inline void TrainerSpec::clear_bos_piece() { function set_bos_piece (line 3613) | inline void TrainerSpec::set_bos_piece(const std::string& value) { function std (line 3617) | inline std::string* TrainerSpec::mutable_bos_piece() { function _internal_set_bos_piece (line 3624) | inline void TrainerSpec::_internal_set_bos_piece(const std::string& valu... function set_bos_piece (line 3628) | inline void TrainerSpec::set_bos_piece(std::string&& value) { function set_bos_piece (line 3634) | inline void TrainerSpec::set_bos_piece(const char* value) { function set_bos_piece (line 3640) | inline void TrainerSpec::set_bos_piece(const char* value, function std (line 3647) | inline std::string* TrainerSpec::_internal_mutable_bos_piece() { function std (line 3651) | inline std::string* TrainerSpec::release_bos_piece() { function set_allocated_bos_piece (line 3659) | inline void TrainerSpec::set_allocated_bos_piece(std::string* bos_piece) { function _internal_has_eos_piece (line 3671) | inline bool TrainerSpec::_internal_has_eos_piece() const { function clear_eos_piece (line 3678) | inline void TrainerSpec::clear_eos_piece() { function set_eos_piece (line 3687) | inline void TrainerSpec::set_eos_piece(const std::string& value) { function std (line 3691) | inline std::string* TrainerSpec::mutable_eos_piece() { function _internal_set_eos_piece (line 3698) | inline void TrainerSpec::_internal_set_eos_piece(const std::string& valu... function set_eos_piece (line 3702) | inline void TrainerSpec::set_eos_piece(std::string&& value) { function set_eos_piece (line 3708) | inline void TrainerSpec::set_eos_piece(const char* value) { function set_eos_piece (line 3714) | inline void TrainerSpec::set_eos_piece(const char* value, function std (line 3721) | inline std::string* TrainerSpec::_internal_mutable_eos_piece() { function std (line 3725) | inline std::string* TrainerSpec::release_eos_piece() { function set_allocated_eos_piece (line 3733) | inline void TrainerSpec::set_allocated_eos_piece(std::string* eos_piece) { function _internal_has_pad_piece (line 3745) | inline bool TrainerSpec::_internal_has_pad_piece() const { function clear_pad_piece (line 3752) | inline void TrainerSpec::clear_pad_piece() { function set_pad_piece (line 3761) | inline void TrainerSpec::set_pad_piece(const std::string& value) { function std (line 3765) | inline std::string* TrainerSpec::mutable_pad_piece() { function _internal_set_pad_piece (line 3772) | inline void TrainerSpec::_internal_set_pad_piece(const std::string& valu... function set_pad_piece (line 3776) | inline void TrainerSpec::set_pad_piece(std::string&& value) { function set_pad_piece (line 3782) | inline void TrainerSpec::set_pad_piece(const char* value) { function set_pad_piece (line 3788) | inline void TrainerSpec::set_pad_piece(const char* value, function std (line 3795) | inline std::string* TrainerSpec::_internal_mutable_pad_piece() { function std (line 3799) | inline std::string* TrainerSpec::release_pad_piece() { function set_allocated_pad_piece (line 3807) | inline void TrainerSpec::set_allocated_pad_piece(std::string* pad_piece) { function _internal_has_unk_surface (line 3819) | inline bool TrainerSpec::_internal_has_unk_surface() const { function clear_unk_surface (line 3826) | inline void TrainerSpec::clear_unk_surface() { function set_unk_surface (line 3835) | inline void TrainerSpec::set_unk_surface(const std::string& value) { function std (line 3839) | inline std::string* TrainerSpec::mutable_unk_surface() { function _internal_set_unk_surface (line 3846) | inline void TrainerSpec::_internal_set_unk_surface(const std::string& va... function set_unk_surface (line 3850) | inline void TrainerSpec::set_unk_surface(std::string&& value) { function set_unk_surface (line 3856) | inline void TrainerSpec::set_unk_surface(const char* value) { function set_unk_surface (line 3862) | inline void TrainerSpec::set_unk_surface(const char* value, function std (line 3869) | inline std::string* TrainerSpec::_internal_mutable_unk_surface() { function std (line 3873) | inline std::string* TrainerSpec::release_unk_surface() { function set_allocated_unk_surface (line 3881) | inline void TrainerSpec::set_allocated_unk_surface(std::string* unk_surf... function _internal_has_train_extremely_large_corpus (line 3893) | inline bool TrainerSpec::_internal_has_train_extremely_large_corpus() co... function clear_train_extremely_large_corpus (line 3900) | inline void TrainerSpec::clear_train_extremely_large_corpus() { function _internal_set_train_extremely_large_corpus (line 3911) | inline void TrainerSpec::_internal_set_train_extremely_large_corpus(bool... function set_train_extremely_large_corpus (line 3915) | inline void TrainerSpec::set_train_extremely_large_corpus(bool value) { function _internal_has_seed_sentencepieces_file (line 3921) | inline bool TrainerSpec::_internal_has_seed_sentencepieces_file() const { function clear_seed_sentencepieces_file (line 3928) | inline void TrainerSpec::clear_seed_sentencepieces_file() { function set_seed_sentencepieces_file (line 3936) | inline void TrainerSpec::set_seed_sentencepieces_file(const std::string&... function std (line 3940) | inline std::string* TrainerSpec::mutable_seed_sentencepieces_file() { function _internal_set_seed_sentencepieces_file (line 3947) | inline void TrainerSpec::_internal_set_seed_sentencepieces_file(const st... function set_seed_sentencepieces_file (line 3951) | inline void TrainerSpec::set_seed_sentencepieces_file(std::string&& valu... function set_seed_sentencepieces_file (line 3957) | inline void TrainerSpec::set_seed_sentencepieces_file(const char* value) { function set_seed_sentencepieces_file (line 3963) | inline void TrainerSpec::set_seed_sentencepieces_file(const char* value, function std (line 3970) | inline std::string* TrainerSpec::_internal_mutable_seed_sentencepieces_f... function std (line 3974) | inline std::string* TrainerSpec::release_seed_sentencepieces_file() { function set_allocated_seed_sentencepieces_file (line 3982) | inline void TrainerSpec::set_allocated_seed_sentencepieces_file(std::str... function _internal_has_name (line 3998) | inline bool NormalizerSpec::_internal_has_name() const { function clear_name (line 4005) | inline void NormalizerSpec::clear_name() { function set_name (line 4013) | inline void NormalizerSpec::set_name(const std::string& value) { function std (line 4017) | inline std::string* NormalizerSpec::mutable_name() { function _internal_set_name (line 4024) | inline void NormalizerSpec::_internal_set_name(const std::string& value) { function set_name (line 4028) | inline void NormalizerSpec::set_name(std::string&& value) { function set_name (line 4034) | inline void NormalizerSpec::set_name(const char* value) { function set_name (line 4040) | inline void NormalizerSpec::set_name(const char* value, function std (line 4047) | inline std::string* NormalizerSpec::_internal_mutable_name() { function std (line 4051) | inline std::string* NormalizerSpec::release_name() { function set_allocated_name (line 4059) | inline void NormalizerSpec::set_allocated_name(std::string* name) { function _internal_has_precompiled_charsmap (line 4071) | inline bool NormalizerSpec::_internal_has_precompiled_charsmap() const { function clear_precompiled_charsmap (line 4078) | inline void NormalizerSpec::clear_precompiled_charsmap() { function set_precompiled_charsmap (line 4086) | inline void NormalizerSpec::set_precompiled_charsmap(const std::string& ... function std (line 4090) | inline std::string* NormalizerSpec::mutable_precompiled_charsmap() { function _internal_set_precompiled_charsmap (line 4097) | inline void NormalizerSpec::_internal_set_precompiled_charsmap(const std... function set_precompiled_charsmap (line 4101) | inline void NormalizerSpec::set_precompiled_charsmap(std::string&& value) { function set_precompiled_charsmap (line 4107) | inline void NormalizerSpec::set_precompiled_charsmap(const char* value) { function set_precompiled_charsmap (line 4113) | inline void NormalizerSpec::set_precompiled_charsmap(const void* value, function std (line 4120) | inline std::string* NormalizerSpec::_internal_mutable_precompiled_charsm... function std (line 4124) | inline std::string* NormalizerSpec::release_precompiled_charsmap() { function set_allocated_precompiled_charsmap (line 4132) | inline void NormalizerSpec::set_allocated_precompiled_charsmap(std::stri... function _internal_has_add_dummy_prefix (line 4144) | inline bool NormalizerSpec::_internal_has_add_dummy_prefix() const { function clear_add_dummy_prefix (line 4151) | inline void NormalizerSpec::clear_add_dummy_prefix() { function _internal_set_add_dummy_prefix (line 4162) | inline void NormalizerSpec::_internal_set_add_dummy_prefix(bool value) { function set_add_dummy_prefix (line 4166) | inline void NormalizerSpec::set_add_dummy_prefix(bool value) { function _internal_has_remove_extra_whitespaces (line 4172) | inline bool NormalizerSpec::_internal_has_remove_extra_whitespaces() con... function clear_remove_extra_whitespaces (line 4179) | inline void NormalizerSpec::clear_remove_extra_whitespaces() { function _internal_set_remove_extra_whitespaces (line 4190) | inline void NormalizerSpec::_internal_set_remove_extra_whitespaces(bool ... function set_remove_extra_whitespaces (line 4194) | inline void NormalizerSpec::set_remove_extra_whitespaces(bool value) { function _internal_has_escape_whitespaces (line 4200) | inline bool NormalizerSpec::_internal_has_escape_whitespaces() const { function clear_escape_whitespaces (line 4207) | inline void NormalizerSpec::clear_escape_whitespaces() { function _internal_set_escape_whitespaces (line 4218) | inline void NormalizerSpec::_internal_set_escape_whitespaces(bool value) { function set_escape_whitespaces (line 4222) | inline void NormalizerSpec::set_escape_whitespaces(bool value) { function _internal_has_normalization_rule_tsv (line 4228) | inline bool NormalizerSpec::_internal_has_normalization_rule_tsv() const { function clear_normalization_rule_tsv (line 4235) | inline void NormalizerSpec::clear_normalization_rule_tsv() { function set_normalization_rule_tsv (line 4243) | inline void NormalizerSpec::set_normalization_rule_tsv(const std::string... function std (line 4247) | inline std::string* NormalizerSpec::mutable_normalization_rule_tsv() { function _internal_set_normalization_rule_tsv (line 4254) | inline void NormalizerSpec::_internal_set_normalization_rule_tsv(const s... function set_normalization_rule_tsv (line 4258) | inline void NormalizerSpec::set_normalization_rule_tsv(std::string&& val... function set_normalization_rule_tsv (line 4264) | inline void NormalizerSpec::set_normalization_rule_tsv(const char* value) { function set_normalization_rule_tsv (line 4270) | inline void NormalizerSpec::set_normalization_rule_tsv(const char* value, function std (line 4277) | inline std::string* NormalizerSpec::_internal_mutable_normalization_rule... function std (line 4281) | inline std::string* NormalizerSpec::release_normalization_rule_tsv() { function set_allocated_normalization_rule_tsv (line 4289) | inline void NormalizerSpec::set_allocated_normalization_rule_tsv(std::st... function _internal_has_input (line 4305) | inline bool SelfTestData_Sample::_internal_has_input() const { function clear_input (line 4312) | inline void SelfTestData_Sample::clear_input() { function set_input (line 4320) | inline void SelfTestData_Sample::set_input(const std::string& value) { function std (line 4324) | inline std::string* SelfTestData_Sample::mutable_input() { function _internal_set_input (line 4331) | inline void SelfTestData_Sample::_internal_set_input(const std::string& ... function set_input (line 4335) | inline void SelfTestData_Sample::set_input(std::string&& value) { function set_input (line 4341) | inline void SelfTestData_Sample::set_input(const char* value) { function set_input (line 4347) | inline void SelfTestData_Sample::set_input(const char* value, function std (line 4354) | inline std::string* SelfTestData_Sample::_internal_mutable_input() { function std (line 4358) | inline std::string* SelfTestData_Sample::release_input() { function set_allocated_input (line 4366) | inline void SelfTestData_Sample::set_allocated_input(std::string* input) { function _internal_has_expected (line 4378) | inline bool SelfTestData_Sample::_internal_has_expected() const { function clear_expected (line 4385) | inline void SelfTestData_Sample::clear_expected() { function set_expected (line 4393) | inline void SelfTestData_Sample::set_expected(const std::string& value) { function std (line 4397) | inline std::string* SelfTestData_Sample::mutable_expected() { function _internal_set_expected (line 4404) | inline void SelfTestData_Sample::_internal_set_expected(const std::strin... function set_expected (line 4408) | inline void SelfTestData_Sample::set_expected(std::string&& value) { function set_expected (line 4414) | inline void SelfTestData_Sample::set_expected(const char* value) { function set_expected (line 4420) | inline void SelfTestData_Sample::set_expected(const char* value, function std (line 4427) | inline std::string* SelfTestData_Sample::_internal_mutable_expected() { function std (line 4431) | inline std::string* SelfTestData_Sample::release_expected() { function set_allocated_expected (line 4439) | inline void SelfTestData_Sample::set_allocated_expected(std::string* exp... function clear_samples (line 4461) | inline void SelfTestData::clear_samples() { function sentencepiece (line 4464) | inline ::sentencepiece::SelfTestData_Sample* SelfTestData::mutable_sampl... function PROTOBUF_NAMESPACE_ID (line 4468) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece::SelfT... function sentencepiece (line 4473) | inline const ::sentencepiece::SelfTestData_Sample& SelfTestData::_intern... function sentencepiece (line 4476) | inline const ::sentencepiece::SelfTestData_Sample& SelfTestData::samples... function sentencepiece (line 4480) | inline ::sentencepiece::SelfTestData_Sample* SelfTestData::_internal_add... function sentencepiece (line 4483) | inline ::sentencepiece::SelfTestData_Sample* SelfTestData::add_samples() { function PROTOBUF_NAMESPACE_ID (line 4487) | inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece:... function clear_piece (line 4505) | inline void ModelProto_SentencePiece::clear_piece() { function set_piece (line 4513) | inline void ModelProto_SentencePiece::set_piece(const std::string& value) { function std (line 4517) | inline std::string* ModelProto_SentencePiece::mutable_piece() { function _internal_set_piece (line 4524) | inline void ModelProto_SentencePiece::_internal_set_piece(const std::str... function set_piece (line 4528) | inline void ModelProto_SentencePiece::set_piece(std::string&& value) { function set_piece (line 4534) | inline void ModelProto_SentencePiece::set_piece(const char* value) { function set_piece (line 4540) | inline void ModelProto_SentencePiece::set_piece(const char* value, function std (line 4547) | inline std::string* ModelProto_SentencePiece::_internal_mutable_piece() { function std (line 4551) | inline std::string* ModelProto_SentencePiece::release_piece() { function set_allocated_piece (line 4559) | inline void ModelProto_SentencePiece::set_allocated_piece(std::string* p... function _internal_has_score (line 4571) | inline bool ModelProto_SentencePiece::_internal_has_score() const { function clear_score (line 4578) | inline void ModelProto_SentencePiece::clear_score() { function _internal_set_score (line 4589) | inline void ModelProto_SentencePiece::_internal_set_score(float value) { function set_score (line 4593) | inline void ModelProto_SentencePiece::set_score(float value) { function _internal_has_type (line 4599) | inline bool ModelProto_SentencePiece::_internal_has_type() const { function clear_type (line 4606) | inline void ModelProto_SentencePiece::clear_type() { function _internal_set_type (line 4617) | inline void ModelProto_SentencePiece::_internal_set_type(::sentencepiece... function set_type (line 4622) | inline void ModelProto_SentencePiece::set_type(::sentencepiece::ModelPro... function clear_pieces (line 4638) | inline void ModelProto::clear_pieces() { function sentencepiece (line 4641) | inline ::sentencepiece::ModelProto_SentencePiece* ModelProto::mutable_pi... function PROTOBUF_NAMESPACE_ID (line 4645) | inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece::Model... function sentencepiece (line 4650) | inline const ::sentencepiece::ModelProto_SentencePiece& ModelProto::_int... function sentencepiece (line 4653) | inline const ::sentencepiece::ModelProto_SentencePiece& ModelProto::piec... function sentencepiece (line 4657) | inline ::sentencepiece::ModelProto_SentencePiece* ModelProto::_internal_... function sentencepiece (line 4660) | inline ::sentencepiece::ModelProto_SentencePiece* ModelProto::add_pieces... function PROTOBUF_NAMESPACE_ID (line 4664) | inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::sentencepiece:... function clear_trainer_spec (line 4679) | inline void ModelProto::clear_trainer_spec() { function sentencepiece (line 4683) | inline const ::sentencepiece::TrainerSpec& ModelProto::_internal_trainer... function unsafe_arena_set_allocated_trainer_spec (line 4692) | inline void ModelProto::unsafe_arena_set_allocated_trainer_spec( function sentencepiece (line 4705) | inline ::sentencepiece::TrainerSpec* ModelProto::release_trainer_spec() { function sentencepiece (line 4714) | inline ::sentencepiece::TrainerSpec* ModelProto::unsafe_arena_release_tr... function sentencepiece (line 4721) | inline ::sentencepiece::TrainerSpec* ModelProto::_internal_mutable_train... function sentencepiece (line 4729) | inline ::sentencepiece::TrainerSpec* ModelProto::mutable_trainer_spec() { function set_allocated_trainer_spec (line 4733) | inline void ModelProto::set_allocated_trainer_spec(::sentencepiece::Trai... function _internal_has_normalizer_spec (line 4754) | inline bool ModelProto::_internal_has_normalizer_spec() const { function clear_normalizer_spec (line 4762) | inline void ModelProto::clear_normalizer_spec() { function sentencepiece (line 4766) | inline const ::sentencepiece::NormalizerSpec& ModelProto::_internal_norm... function unsafe_arena_set_allocated_normalizer_spec (line 4775) | inline void ModelProto::unsafe_arena_set_allocated_normalizer_spec( function sentencepiece (line 4788) | inline ::sentencepiece::NormalizerSpec* ModelProto::release_normalizer_s... function sentencepiece (line 4797) | inline ::sentencepiece::NormalizerSpec* ModelProto::unsafe_arena_release... function sentencepiece (line 4804) | inline ::sentencepiece::NormalizerSpec* ModelProto::_internal_mutable_no... function sentencepiece (line 4812) | inline ::sentencepiece::NormalizerSpec* ModelProto::mutable_normalizer_s... function set_allocated_normalizer_spec (line 4816) | inline void ModelProto::set_allocated_normalizer_spec(::sentencepiece::N... function _internal_has_self_test_data (line 4837) | inline bool ModelProto::_internal_has_self_test_data() const { function clear_self_test_data (line 4845) | inline void ModelProto::clear_self_test_data() { function sentencepiece (line 4849) | inline const ::sentencepiece::SelfTestData& ModelProto::_internal_self_t... function unsafe_arena_set_allocated_self_test_data (line 4858) | inline void ModelProto::unsafe_arena_set_allocated_self_test_data( function sentencepiece (line 4871) | inline ::sentencepiece::SelfTestData* ModelProto::release_self_test_data... function sentencepiece (line 4880) | inline ::sentencepiece::SelfTestData* ModelProto::unsafe_arena_release_s... function sentencepiece (line 4887) | inline ::sentencepiece::SelfTestData* ModelProto::_internal_mutable_self... function sentencepiece (line 4895) | inline ::sentencepiece::SelfTestData* ModelProto::mutable_self_test_data... function set_allocated_self_test_data (line 4899) | inline void ModelProto::set_allocated_self_test_data(::sentencepiece::Se... function _internal_has_denormalizer_spec (line 4920) | inline bool ModelProto::_internal_has_denormalizer_spec() const { function clear_denormalizer_spec (line 4928) | inline void ModelProto::clear_denormalizer_spec() { function sentencepiece (line 4932) | inline const ::sentencepiece::NormalizerSpec& ModelProto::_internal_deno... function unsafe_arena_set_allocated_denormalizer_spec (line 4941) | inline void ModelProto::unsafe_arena_set_allocated_denormalizer_spec( function sentencepiece (line 4954) | inline ::sentencepiece::NormalizerSpec* ModelProto::release_denormalizer... function sentencepiece (line 4963) | inline ::sentencepiece::NormalizerSpec* ModelProto::unsafe_arena_release... function sentencepiece (line 4970) | inline ::sentencepiece::NormalizerSpec* ModelProto::_internal_mutable_de... function sentencepiece (line 4978) | inline ::sentencepiece::NormalizerSpec* ModelProto::mutable_denormalizer... function set_allocated_denormalizer_spec (line 4982) | inline void ModelProto::set_allocated_denormalizer_spec(::sentencepiece:... function PROTOBUF_NAMESPACE_OPEN (line 5020) | PROTOBUF_NAMESPACE_OPEN function true_type (line 5023) | struct is_proto_enum< ::sentencepiece::ModelProto_SentencePiece_Type> : ... FILE: src/char_model.cc type sentencepiece (line 18) | namespace sentencepiece { type character (line 19) | namespace character { function EncodeResult (line 28) | EncodeResult Model::Encode(absl::string_view normalized) const { FILE: src/char_model.h function namespace (line 21) | namespace sentencepiece { FILE: src/char_model_test.cc type sentencepiece (line 21) | namespace sentencepiece { type character (line 22) | namespace character { function ModelProto (line 28) | ModelProto MakeBaseModelProto() { function AddPiece (line 44) | void AddPiece(ModelProto *model_proto, const std::string &piece, function TEST (line 51) | TEST(ModelTest, EncodeTest) { function TEST (line 109) | TEST(CharModelTest, NotSupportedTest) { FILE: src/char_model_trainer.cc type sentencepiece (line 21) | namespace sentencepiece { type character (line 22) | namespace character { FILE: src/char_model_trainer.h function namespace (line 21) | namespace sentencepiece { FILE: src/char_model_trainer_test.cc type sentencepiece (line 26) | namespace sentencepiece { type character (line 27) | namespace character { function RunTrainer (line 33) | std::string RunTrainer(const std::vector &input, int si... function TEST (line 73) | TEST(TrainerTest, BasicTest) { FILE: src/compile_charsmap_main.cc type sentencepiece (line 36) | namespace sentencepiece { function ToHexUInt64Array (line 39) | std::string ToHexUInt64Array( function ToHexData (line 73) | std::string ToHexData(absl::string_view data) { function MakeHeader (line 103) | std::string MakeHeader( function main (line 161) | int main(int argc, char **argv) { FILE: src/error.cc type sentencepiece (line 20) | namespace sentencepiece { type util (line 21) | namespace util { type Status::Rep (line 26) | struct Status::Rep { function StatusCode (line 58) | StatusCode Status::code() const { return ok() ? StatusCode::kOk : re... FILE: src/filesystem.cc type sentencepiece (line 29) | namespace sentencepiece { type filesystem (line 30) | namespace filesystem { class PosixReadableFile (line 32) | class PosixReadableFile : public ReadableFile { method PosixReadableFile (line 34) | PosixReadableFile(absl::string_view filename, bool is_binary = false) method status (line 50) | util::Status status() const { return status_; } method ReadLine (line 52) | bool ReadLine(std::string *line) { method ReadAll (line 56) | bool ReadAll(std::string *line) { class PosixWritableFile (line 71) | class PosixWritableFile : public WritableFile { method PosixWritableFile (line 73) | PosixWritableFile(absl::string_view filename, bool is_binary = false) method status (line 89) | util::Status status() const { return status_; } method Write (line 91) | bool Write(absl::string_view text) { method WriteLine (line 96) | bool WriteLine(absl::string_view text) { return Write(text) && Wri... function NewReadableFile (line 106) | std::unique_ptr NewReadableFile(absl::string_view file... function NewWritableFile (line 111) | std::unique_ptr NewWritableFile(absl::string_view file... FILE: src/filesystem.h function namespace (line 28) | namespace sentencepiece { FILE: src/filesystem_test.cc type sentencepiece (line 20) | namespace sentencepiece { function TEST (line 22) | TEST(UtilTest, FilesystemTest) { function TEST (line 49) | TEST(UtilTest, FilesystemInvalidFileTest) { FILE: src/freelist.h function namespace (line 22) | namespace sentencepiece { FILE: src/freelist_test.cc type sentencepiece (line 18) | namespace sentencepiece { type model (line 19) | namespace model { function TEST (line 21) | TEST(FreeListTest, BasicTest) { FILE: src/init.cc function ABSL_FLAG (line 32) | ABSL_FLAG(bool, quiet, false, "Suppress logging message."); function ShutdownLibrary (line 61) | void ShutdownLibrary() { google::protobuf::ShutdownProtobufLibrary(); } FILE: src/init.h function namespace (line 20) | namespace sentencepiece { FILE: src/init_test.cc function TEST (line 44) | TEST(FlagsTest, ParseCommandLineFlagsTest) { function TEST (line 66) | TEST(FlagsTest, ParseCommandLineFlagsTest2) { function TEST (line 81) | TEST(FlagsTest, ParseCommandLineFlagsTest3) { function TEST (line 92) | TEST(FlagsTest, ParseCommandLineFlagsEmptyStringArgs) { function TEST (line 101) | TEST(FlagsTest, ParseCommandLineFlagsEmptyBoolArgs) { FILE: src/model_factory.cc type sentencepiece (line 22) | namespace sentencepiece { FILE: src/model_factory.h function namespace (line 23) | namespace sentencepiece { FILE: src/model_factory_test.cc type sentencepiece (line 18) | namespace sentencepiece { function TEST (line 20) | TEST(ModelFactoryTest, BasicTest) { FILE: src/model_interface.cc type sentencepiece (line 23) | namespace sentencepiece { function SplitIntoWords (line 153) | std::vector SplitIntoWords(absl::string_view text, function ByteToPiece (line 210) | std::string ByteToPiece(unsigned char c) { function PieceToByte (line 214) | int PieceToByte(absl::string_view piece) { FILE: src/model_interface.h function namespace (line 33) | namespace sentencepiece { function virtual (line 114) | virtual float CalculateEntropy(absl::string_view normalized, function virtual (line 138) | virtual const std::string &IdToPiece(int id) const { function virtual (line 152) | virtual float GetScore(int id) const { function virtual (line 157) | virtual bool IsUnknown(int id) const { function virtual (line 163) | virtual bool IsControl(int id) const { function virtual (line 169) | virtual bool IsUnused(int id) const { function virtual (line 175) | virtual bool IsUserDefined(int id) const { function virtual (line 181) | virtual bool IsByte(int id) const { function virtual (line 194) | virtual bool VerifyOutputsEquivalent(absl::string_view expected, function GetScoreInlined (line 203) | inline float GetScoreInlined(int id) const { function IsUnknownInlined (line 207) | inline bool IsUnknownInlined(int id) const { function IsControlInlined (line 212) | inline bool IsControlInlined(int id) const { function IsUnusedInlined (line 217) | inline bool IsUnusedInlined(int id) const { function IsUserDefinedInlined (line 222) | inline bool IsUserDefinedInlined(int id) const { function IsByteInlined (line 227) | inline bool IsByteInlined(int id) const { FILE: src/model_interface_test.cc type sentencepiece (line 22) | namespace sentencepiece { function ModelProto (line 31) | ModelProto MakeBaseModelProto(TrainerSpec::ModelType type, function AddPiece (line 50) | void AddPiece(ModelProto *model_proto, const std::string &piece, function AddBytePiece (line 57) | void AddBytePiece(ModelProto *model_proto, unsigned char byte) { function TEST (line 63) | TEST(ModelInterfaceTest, GetDefaultPieceTest) { function TEST (line 111) | TEST(ModelInterfaceTest, SetModelInterfaceTest) { function TEST (line 125) | TEST(ModelInterfaceTest, PieceToIdTest) { function TEST (line 210) | TEST(ModelInterfaceTest, InvalidModelTest) { function TEST (line 245) | TEST(ModelInterfaceTest, ByteFallbackModelTest) { function RandomString (line 279) | std::string RandomString(int length) { function TEST (line 294) | TEST(ModelInterfaceTest, PieceToIdStressTest) { function TEST (line 321) | TEST(ModelInterfaceTest, SplitIntoWordsTest) { function TEST (line 360) | TEST(ModelInterfaceTest, SplitIntoWordsSuffixTest) { function TEST (line 416) | TEST(ModelInterfaceTest, SplitIntoWordsWhiteSpaceOnly) { function TEST (line 460) | TEST(ModelInterfaceTest, ByteToPieceTest) { function TEST (line 468) | TEST(ModelInterfaceTest, PieceToByteTest) { function TEST (line 485) | TEST(ModelInterfaceTest, VerifyOutputsEquivalent) { FILE: src/normalization_rule.h function namespace (line 4) | namespace sentencepiece { FILE: src/normalizer.cc type sentencepiece (line 28) | namespace sentencepiece { type normalizer (line 29) | namespace normalizer { FILE: src/normalizer.h function namespace (line 30) | namespace sentencepiece { FILE: src/normalizer_test.cc type sentencepiece (line 24) | namespace sentencepiece { type normalizer (line 25) | namespace normalizer { function NormalizerSpec (line 33) | NormalizerSpec MakeDefaultSpec() { function TEST (line 38) | TEST(NormalizerTest, NormalizeTest) { function TEST (line 78) | TEST(NormalizerTest, NormalizeWithoutDummyPrefixTest) { function TEST (line 98) | TEST(NormalizerTest, NormalizeTreatWSAsSuffixTest) { function TEST (line 114) | TEST(NormalizerTest, NormalizeWithoutRemoveExtraWhitespacesTest) { function TEST (line 131) | TEST(NormalizerTest, NormalizeWithoutEscapeWhitespacesTest) { function TEST (line 150) | TEST(NormalizeTest, NomalizeWithSpaceContainedRules) { function TEST (line 267) | TEST(NormalizerTest, NormalizeReplacementChar) { function TEST (line 278) | TEST(NormalizerTest, NormalizeFullTest) { function TEST (line 360) | TEST(NormalizerTest, EncodeDecodePrecompiledCharsMapTest) { function TEST (line 396) | TEST(NormalizerTest, StatusTest) { function TEST (line 416) | TEST(NormalizerTest, PrefixMatcherTest) { function TEST (line 439) | TEST(NormalizerTest, PrefixMatcherWithEmptyTest) { FILE: src/pretokenizer_for_training.cc type sentencepiece (line 20) | namespace sentencepiece { type pretokenizer (line 21) | namespace pretokenizer { FILE: src/pretokenizer_for_training.h function namespace (line 26) | namespace sentencepiece { FILE: src/pretokenizer_for_training_test.cc type sentencepiece (line 22) | namespace sentencepiece { type pretokenizer (line 23) | namespace pretokenizer { class MockPretokenizer (line 25) | class MockPretokenizer : public PretokenizerForTrainingInterface { method MockPretokenizer (line 27) | MockPretokenizer() {} method SentencePieceText (line 30) | SentencePieceText Tokenize(absl::string_view text) const override { method status (line 34) | util::Status status() const override { return util::OkStatus(); } method SetOutput (line 36) | void SetOutput(const SentencePieceText &spt) { spt_ = spt; } function TEST (line 42) | TEST(PretokenizerForTrainingTest, BaseTest) { FILE: src/sentencepiece_processor.cc type sentencepiece (line 43) | namespace sentencepiece { function ToPieceArray (line 57) | std::vector ToPieceArray(const std::vector GetSpVec(const EncodeResult &pieces) { function GetIdVec (line 102) | std::vector GetIdVec(const EncodeResult &pieces) { function GetSpVec (line 110) | std::vector GetSpVec(const SentencePieceText &spt) { function NormalizerSpec (line 118) | NormalizerSpec MakeDefaultNormalizerSpec() { function TEST (line 122) | TEST(SentencepieceProcessorTest, StatusTest) { function TEST (line 130) | TEST(SentencepieceProcessorTest, EncodeTest) { function TEST (line 418) | TEST(SentencepieceProcessorTest, NBestEncodeTest) { function TEST (line 472) | TEST(SentencepieceProcessorTest, SampleEncodeTest) { function TEST (line 544) | TEST(SentencepieceProcessorTest, DecodeTest) { function TEST (line 711) | TEST(SentencepieceProcessorTest, DummyPrefixDecodeTest) { function TEST (line 791) | TEST(SentencepieceProcessorTest, ByteFallbackDecodeTest) { function AddPiece (line 946) | void AddPiece(ModelProto *model_proto, absl::string_view piece, function TEST (line 953) | TEST(SentencePieceProcessorTest, LoadInvalidModelTest) { function TEST (line 959) | TEST(SentencePieceProcessorTest, LoadSerializedProtoTest) { function TEST (line 974) | TEST(SentencePieceProcessorTest, EndToEndTest) { function TEST (line 1375) | TEST(SentencePieceProcessorTest, SkipNormalizationTest) { function TEST (line 1407) | TEST(SentencePieceProcessorTest, ExtraOptionsUndefinedTest) { function TEST (line 1427) | TEST(SentencePieceProcessorTest, OverrideSpecialPieceTest) { function TEST (line 1461) | TEST(SentencePieceProcessorTest, VocabularyTest) { function TEST (line 1564) | TEST(SentencePieceProcessorTest, ImmutableSentencePieceTextTest) { function TEST (line 1624) | TEST(SentencePieceProcessorTest, ImmutableNBestSentencePieceTextTest) { function TEST (line 1657) | TEST(SentencePieceProcessorTest, ConvertToUnicodeSpansTest) { FILE: src/sentencepiece_trainer.cc type sentencepiece (line 35) | namespace sentencepiece { function NormalizerSpec (line 92) | NormalizerSpec SentencePieceTrainer::GetNormalizerSpec(absl::string_vi... class VectorSentenceIterator (line 202) | class VectorSentenceIterator : public SentenceIterator { method VectorSentenceIterator (line 204) | explicit VectorSentenceIterator(const std::vector &values) method done (line 207) | virtual bool done() const { return iter_ == end_; } method Next (line 208) | void Next() override { ++iter_; } method status (line 210) | util::Status status() const override { return util::OkStatus(); } function NormalizerSpec (line 361) | NormalizerSpec *SentencePieceNormalizer::mutable_normalizer_spec() con... function ConvertToUnicodeAlignment (line 369) | void ConvertToUnicodeAlignment(absl::string_view orig, absl::string_vi... FILE: src/sentencepiece_trainer.h function namespace (line 30) | namespace pretokenizer { function namespace (line 34) | namespace normalizer { function class (line 46) | class SentenceIterator { FILE: src/sentencepiece_trainer_test.cc type sentencepiece (line 23) | namespace sentencepiece { function CheckVocab (line 32) | void CheckVocab(absl::string_view filename, int expected_vocab_size) { function CheckNormalizer (line 40) | void CheckNormalizer(absl::string_view filename, bool expected_has_nor... function TEST (line 52) | TEST(SentencePieceTrainerTest, TrainFromArgsTest) { function TEST (line 102) | TEST(SentencePieceTrainerTest, TrainFromIterator) { function TEST (line 151) | TEST(SentencePieceTrainerTest, TrainWithCustomNormalizationRule) { function TEST (line 164) | TEST(SentencePieceTrainerTest, TrainWithCustomDenormalizationRule) { function TEST (line 183) | TEST(SentencePieceTrainerTest, TrainErrorTest) { function TEST (line 191) | TEST(SentencePieceTrainerTest, TrainTest) { function TEST (line 201) | TEST(SentencePieceTrainerTest, SetProtoFieldTest) { function TEST (line 278) | TEST(SentencePieceTrainerTest, MergeSpecsFromArgs) { function TEST (line 339) | TEST(SentencePieceTrainerTest, PopulateModelTypeFromStringTest) { function TEST (line 357) | TEST(SentencePieceTrainerTest, NormalizationTest) { FILE: src/spec_parser.h function namespace (line 26) | namespace sentencepiece { FILE: src/spm_decode_main.cc function main (line 36) | int main(int argc, char *argv[]) { FILE: src/spm_encode_main.cc function main (line 55) | int main(int argc, char *argv[]) { FILE: src/spm_export_vocab_main.cc function main (line 30) | int main(int argc, char *argv[]) { FILE: src/spm_normalize_main.cc function main (line 48) | int main(int argc, char *argv[]) { FILE: src/test_main.cc function main (line 26) | int main(int argc, char **argv) { FILE: src/testharness.cc type sentencepiece (line 32) | namespace sentencepiece { type test (line 33) | namespace test { type Test (line 36) | struct Test { function RegisterTest (line 44) | bool RegisterTest(const char *base, const char *name, void (*func)()) { function RunAllTests (line 56) | int RunAllTests() { FILE: src/testharness.h function namespace (line 31) | namespace testing { function namespace (line 36) | namespace sentencepiece { FILE: src/trainer_factory.cc type sentencepiece (line 22) | namespace sentencepiece { FILE: src/trainer_factory.h function namespace (line 23) | namespace sentencepiece { FILE: src/trainer_factory_test.cc type sentencepiece (line 18) | namespace sentencepiece { function TEST (line 20) | TEST(TrainerFactoryTest, BasicTest) { FILE: src/trainer_interface.cc type sentencepiece (line 41) | namespace sentencepiece { function VerifySpec (line 53) | util::Status VerifySpec(const TrainerSpec &trainer_spec) { function is_unicode_decimal_number (line 97) | bool is_unicode_decimal_number(char32 c) { class SentenceSelector (line 101) | class SentenceSelector { method SentenceSelector (line 107) | SentenceSelector(TrainerInterface::Sentences *sentences, method Finish (line 123) | void Finish() const { method Add (line 135) | bool Add(const std::pair &sentence) { method total_size (line 154) | size_t total_size() const { function AddDPNoise (line 310) | void AddDPNoise(const TrainerSpec &trainer_spec, std::mt19937 *generator, FILE: src/trainer_interface.h function namespace (line 33) | namespace sentencepiece { FILE: src/trainer_interface_test.cc type sentencepiece (line 25) | namespace sentencepiece { function char32 (line 31) | static char32 ToChar32(absl::string_view str) { function TEST (line 36) | TEST(TrainerInterfaceTest, IsValidSentencePieceTest) { function TEST (line 202) | TEST(TrainerInterfaceTest, OverrideSpecialPiecesTest) { function TEST (line 419) | TEST(TrainerInterfaceTest, BytePiecesTest) { function TEST (line 444) | TEST(TrainerInterfaceTest, SerializeTest) { function TEST (line 494) | TEST(TrainerInterfaceTest, CharactersTest) { function TEST (line 558) | TEST(TrainerInterfaceTest, MultiFileSentenceIteratorTest) { function TEST (line 581) | TEST(TrainerInterfaceTest, MultiFileSentenceIteratorErrorTest) { FILE: src/unicode_script.cc type sentencepiece (line 22) | namespace sentencepiece { type unicode_script (line 23) | namespace unicode_script { class GetScriptInternal (line 25) | class GetScriptInternal { method GetScriptInternal (line 27) | GetScriptInternal() { InitTable(&smap_); } method ScriptType (line 29) | ScriptType GetScript(char32 c) const { function ScriptType (line 38) | ScriptType GetScript(char32 c) { FILE: src/unicode_script.h function namespace (line 20) | namespace sentencepiece { FILE: src/unicode_script_map.h function namespace (line 18) | namespace sentencepiece { FILE: src/unicode_script_test.cc type sentencepiece (line 21) | namespace sentencepiece { type unicode_script (line 22) | namespace unicode_script { function ScriptType (line 23) | ScriptType GetScriptType(absl::string_view s) { function TEST (line 29) | TEST(UnicodeScript, GetScriptTypeTest) { FILE: src/unigram_model.cc type sentencepiece (line 32) | namespace sentencepiece { type unigram (line 33) | namespace unigram { function LogSumExp (line 47) | inline float LogSumExp(float x, float y, bool init_mode) { function Gumbel (line 63) | inline float Gumbel() { type Hypothesis (line 296) | struct Hypothesis { function Hypothesis (line 313) | Hypothesis *CloneHypAndDependents( class HypothesisComparator (line 369) | class HypothesisComparator { function EncodeResult (line 674) | EncodeResult Model::Encode(absl::string_view normalized) const { function NBestEncodeResult (line 695) | NBestEncodeResult Model::NBestEncode(absl::string_view normalized, function EncodeResult (line 723) | EncodeResult Model::SampleEncode(absl::string_view normalized, function NBestEncodeResult (line 741) | NBestEncodeResult Model::SampleEncodeAndScore(absl::string_view norm... function EncodeResult (line 889) | EncodeResult Model::EncodeOptimized(absl::string_view normalized) co... FILE: src/unigram_model.h function namespace (line 30) | namespace unigram { FILE: src/unigram_model_test.cc type sentencepiece (line 29) | namespace sentencepiece { type unigram (line 30) | namespace unigram { function TEST (line 32) | TEST(LatticeTest, SetSentenceTest) { function TEST (line 76) | TEST(LatticeTest, InsertTest) { function TEST (line 162) | TEST(LatticeTest, ViterbiFromIncompleteLatticeTest) { function GetTokenized (line 176) | std::string GetTokenized(const std::vector &nodes) { function InsertWithScore (line 184) | void InsertWithScore(Lattice *lattice, int pos, int length, float sc... function InsertWithScoreAndId (line 188) | void InsertWithScoreAndId(Lattice *lattice, int pos, int length, flo... function TEST (line 195) | TEST(LatticeTest, ViterbiTest) { function TEST (line 214) | TEST(LatticeTest, NBestTest) { function TEST (line 240) | TEST(LatticeTest, NBestSampleTest) { function TEST (line 321) | TEST(LatticeTest, CalculateEntropyTest) { function TEST (line 357) | TEST(LatticeTest, ForwardAlgorithmTest) { function TEST (line 394) | TEST(LatticeTest, PopulateMarginalTest) { function TEST (line 429) | TEST(LatticeTest, SampleTest) { function ModelProto (line 468) | ModelProto MakeBaseModelProto() { class UnigramModelTest (line 492) | class UnigramModelTest : public test::TestWithParam& input, int ... function TEST (line 114) | TEST(UnigramTrainerTest, BasicTest) { function TEST (line 128) | TEST(UnigramTrainerTest, BasicDPTest) { function TEST (line 155) | TEST(UnigramTrainerTest, EndToEndTest) { FILE: src/util.cc type sentencepiece (line 22) | namespace sentencepiece { function SetRandomGeneratorSeed (line 29) | void SetRandomGeneratorSeed(uint32_t seed) { function GetRandomGeneratorSeed (line 33) | uint32_t GetRandomGeneratorSeed() { function GetDataDir (line 48) | std::string GetDataDir() { function SetDataDir (line 53) | void SetDataDir(absl::string_view data_dir) { function SetMinLogLevel (line 59) | void SetMinLogLevel(int v) { type string_util (line 63) | namespace string_util { function char32 (line 66) | char32 DecodeUTF8(const char *begin, const char *end, size_t *mblen) { function IsStructurallyValid (line 101) | bool IsStructurallyValid(absl::string_view str) { function EncodeUTF8 (line 114) | size_t EncodeUTF8(char32 c, char *output) { function UnicodeCharToUTF8 (line 151) | std::string UnicodeCharToUTF8(const char32 c) { return UnicodeTextTo... function UnicodeText (line 153) | UnicodeText UTF8ToUnicodeText(absl::string_view utf8) { function UnicodeTextToUTF8 (line 166) | std::string UnicodeTextToUTF8(const UnicodeText &utext) { type random (line 177) | namespace random { type util (line 194) | namespace util { function StrError (line 196) | std::string StrError(int errnum) { function StrSplitAsCSV (line 214) | std::vector StrSplitAsCSV(absl::string_view text) { function Utf8ToWide (line 247) | std::wstring Utf8ToWide(absl::string_view input) { type log_domain (line 262) | namespace log_domain { function LogSum (line 263) | double LogSum(const std::vector &xs) { FILE: src/util.h function namespace (line 36) | namespace sentencepiece { function namespace (line 54) | namespace string_util { function namespace (line 207) | namespace port { function mix (line 259) | inline void mix(uint64_t &a, uint64_t &b, uint64_t &c) { // 64bit version function FingerprintCat (line 298) | inline uint64_t FingerprintCat(uint64_t x, uint64_t y) { function namespace (line 306) | namespace random { function namespace (line 344) | namespace util { function namespace (line 461) | namespace port { FILE: src/util_test.cc type sentencepiece (line 23) | namespace sentencepiece { function TEST (line 28) | TEST(UtilTest, LexicalCastTest) { function TEST (line 53) | TEST(UtilTest, Hex) { function TEST (line 64) | TEST(UtilTest, StringViewTest) { function TEST (line 69) | TEST(UtilTest, EncodePODTet) { function TEST (line 114) | TEST(UtilTest, ItoaTest) { function TEST (line 128) | TEST(UtilTest, OneCharLenTest) { function TEST (line 133) | TEST(UtilTest, DecodeUTF8Test) { function TEST (line 228) | TEST(UtilTest, EncodeUTF8Test) { function TEST (line 257) | TEST(UtilTest, UnicodeCharToUTF8Test) { function TEST (line 267) | TEST(UtilTest, IsStructurallyValidTest) { function TEST (line 292) | TEST(UtilTest, UnicodeTextToUTF8Test) { function TEST (line 305) | TEST(UtilTest, MapUtilTest) { function TEST (line 324) | TEST(UtilTest, InputOutputBufferTest) { function TEST (line 351) | TEST(UtilTest, InputOutputBufferInvalidFileTest) { function TEST (line 356) | TEST(UtilTest, STLDeleteELementsTest) { function TEST (line 376) | TEST(UtilTest, StatusTest) { function TEST (line 403) | TEST(UtilTest, JoinPathTest) { function TEST (line 415) | TEST(UtilTest, ReservoirSamplerTest) { function TEST (line 425) | TEST(UtilTest, StrSplitAsCSVTest) { function TEST (line 450) | TEST(SentencePieceTrainerTest, DataDirTest) { FILE: src/word_model.cc type sentencepiece (line 18) | namespace sentencepiece { type word (line 19) | namespace word { function EncodeResult (line 28) | EncodeResult Model::Encode(absl::string_view normalized) const { FILE: src/word_model.h function namespace (line 21) | namespace sentencepiece { FILE: src/word_model_test.cc type sentencepiece (line 22) | namespace sentencepiece { type word (line 23) | namespace word { function ModelProto (line 29) | ModelProto MakeBaseModelProto() { function AddPiece (line 45) | void AddPiece(ModelProto *model_proto, const std::string &piece, function TEST (line 52) | TEST(WordModelTest, EncodeTest) { function TEST (line 83) | TEST(WordModelTest, NotSupportedTest) { FILE: src/word_model_trainer.cc type sentencepiece (line 24) | namespace sentencepiece { type word (line 25) | namespace word { FILE: src/word_model_trainer.h function namespace (line 21) | namespace sentencepiece { FILE: src/word_model_trainer_test.cc type sentencepiece (line 26) | namespace sentencepiece { type word (line 27) | namespace word { function RunTrainer (line 33) | std::string RunTrainer(const std::vector &input, int si... function TEST (line 75) | TEST(TrainerTest, BasicTest) { FILE: third_party/absl/container/btree_set.h function namespace (line 20) | namespace absl { FILE: third_party/absl/container/flat_hash_map.h function namespace (line 20) | namespace absl { FILE: third_party/absl/container/flat_hash_set.h function namespace (line 20) | namespace absl { FILE: third_party/absl/flags/flag.cc type FlagFunc (line 52) | struct FlagFunc { function FlagMap (line 65) | FlagMap &GetFlagMap() { function FlagList (line 70) | FlagList &GetFlagList() { function FlagsUsageConfig (line 80) | FlagsUsageConfig &GetFlagsUsageConfig() { function CommandLineGetFlag (line 85) | bool CommandLineGetFlag(int argc, char **argv, std::string *key, function PrintHelp (line 117) | std::string PrintHelp() { function RegisterFlag (line 133) | void RegisterFlag(const std::string &name, std::shared_ptr fun... function T (line 157) | const T &Flag::value() const { class Flag (line 179) | class Flag class Flag (line 180) | class Flag class Flag (line 181) | class Flag class Flag (line 182) | class Flag class Flag (line 183) | class Flag class Flag (line 184) | class Flag class Flag (line 185) | class Flag class Flag (line 186) | class Flag function ParseCommandLine (line 188) | std::vector ParseCommandLine(int argc, char *argv[]) { function SetProgramUsageMessage (line 236) | void SetProgramUsageMessage(absl::string_view new_usage_message) { function SetFlagsUsageConfig (line 241) | void SetFlagsUsageConfig(FlagsUsageConfig usage_config) { FILE: third_party/absl/flags/flag.h function namespace (line 24) | namespace internal { function T (line 37) | const T &value() const; FILE: third_party/absl/flags/parse.h function namespace (line 20) | namespace absl { FILE: third_party/absl/flags/usage.h function namespace (line 20) | namespace absl { FILE: third_party/absl/flags/usage_config.h function namespace (line 21) | namespace absl { FILE: third_party/absl/log/globals.h function namespace (line 20) | namespace absl { FILE: third_party/absl/log/log.cc type absl (line 19) | namespace absl { function LogSeverityAtLeast (line 24) | LogSeverityAtLeast MinLogLevel() { function SetMinLogLevel (line 28) | void SetMinLogLevel(LogSeverityAtLeast v) { FILE: third_party/absl/log/log.h function namespace (line 22) | namespace absl { FILE: third_party/absl/strings/ascii.h function namespace (line 25) | namespace absl { FILE: third_party/absl/strings/match.h function namespace (line 23) | namespace absl { FILE: third_party/absl/strings/numbers.h function namespace (line 23) | namespace absl { FILE: third_party/absl/strings/str_cat.h function namespace (line 25) | namespace absl { FILE: third_party/absl/strings/str_format.h function namespace (line 25) | namespace absl { FILE: third_party/absl/strings/str_join.h function namespace (line 23) | namespace absl { FILE: third_party/absl/strings/str_replace.h function namespace (line 23) | namespace absl { FILE: third_party/absl/strings/str_split.h function namespace (line 24) | namespace absl { FILE: third_party/absl/strings/string_view.h function namespace (line 33) | namespace absl { function string_view (line 51) | inline string_view NullSafeStringView(const char* p) { FILE: third_party/absl/strings/strip.h function namespace (line 23) | namespace absl { FILE: third_party/darts_clone/darts.h function namespace (line 21) | namespace Darts { type DoubleArrayImpl (line 316) | typedef DoubleArrayImpl DoubleArray; function namespace (line 549) | namespace Details { function T (line 607) | const T &operator[](std::size_t id) const { function clear (line 621) | void clear() { function push_back (line 628) | void push_back(const T &value) { function pop_back (line 631) | void pop_back() { function append (line 635) | void append() { function append (line 640) | void append(const T &value) { function resize (line 646) | void resize(std::size_t size) { function resize (line 657) | void resize(std::size_t size, const T &value) { function reserve (line 669) | void reserve(std::size_t size) { function push (line 745) | void push(const T &value) { function pop (line 748) | void pop() { function clear (line 752) | void clear() { function class (line 768) | class BitVector { function build (line 838) | inline void BitVector::build() { function char_type (line 866) | const char_type *keys(std::size_t id) const { function uchar_type (line 869) | uchar_type keys(std::size_t key_id, std::size_t char_id) const { function value_type (line 892) | const value_type values(std::size_t id) const { function set_sibling (line 922) | void set_sibling(id_type sibling) { function set_value (line 925) | void set_value(value_type value) { function set_label (line 928) | void set_label(uchar_type label) { function set_is_state (line 931) | void set_is_state(bool is_state) { function set_has_sibling (line 934) | void set_has_sibling(bool has_sibling) { function class (line 978) | class DawgUnit { function class (line 1015) | class DawgBuilder { function id_type (line 1027) | id_type child(id_type id) const { function id_type (line 1030) | id_type sibling(id_type id) const { function value (line 1033) | int value(id_type id) const { function is_leaf (line 1037) | bool is_leaf(id_type id) const { function uchar_type (line 1040) | uchar_type label(id_type id) const { function is_intersection (line 1044) | bool is_intersection(id_type id) const { function id_type (line 1047) | id_type intersection_id(id_type id) const { function free_node (line 1097) | void free_node(id_type id) { function id_type (line 1101) | static id_type hash(id_type key) { function init (line 1112) | inline void DawgBuilder::init() { function finish (line 1124) | inline void DawgBuilder::finish() { function insert (line 1138) | inline void DawgBuilder::insert(const char *key, std::size_t length, function clear (line 1193) | inline void DawgBuilder::clear() { function flush (line 1204) | inline void DawgBuilder::flush(id_type id) { function expand_table (line 1247) | inline void DawgBuilder::expand_table() { function id_type (line 1262) | inline id_type DawgBuilder::find_unit(id_type id, id_type *hash_id) const { function id_type (line 1275) | inline id_type DawgBuilder::find_node(id_type node_id, function are_equal (line 1291) | inline bool DawgBuilder::are_equal(id_type node_id, id_type unit_id) con... function id_type (line 1312) | inline id_type DawgBuilder::hash_unit(id_type id) const { function id_type (line 1326) | inline id_type DawgBuilder::hash_node(id_type id) const { function id_type (line 1336) | inline id_type DawgBuilder::append_unit() { function id_type (line 1344) | inline id_type DawgBuilder::append_node() { function class (line 1361) | class DoubleArrayBuilderUnit { function class (line 1400) | class DoubleArrayBuilderExtraUnit { function class (line 1444) | class DoubleArrayBuilder { type DoubleArrayBuilderUnit (line 1467) | typedef DoubleArrayBuilderUnit unit_type; type DoubleArrayBuilderExtraUnit (line 1468) | typedef DoubleArrayBuilderExtraUnit extra_type; function extra_type (line 1485) | const extra_type &extras(id_type id) const { function copy (line 1531) | inline void DoubleArrayBuilder::copy(std::size_t *size_ptr, function clear (line 1545) | inline void DoubleArrayBuilder::clear() { function build_from_dawg (line 1566) | inline void DoubleArrayBuilder::build_from_dawg(const DawgBuilder &dawg) { function build_from_dawg (line 1596) | inline void DoubleArrayBuilder::build_from_dawg(const DawgBuilder &dawg, function id_type (line 1629) | inline id_type DoubleArrayBuilder::arrange_from_dawg(const DawgBuilder &... function id_type (line 1767) | inline id_type DoubleArrayBuilder::find_valid_offset(id_type id) const { function is_valid_offset (line 1784) | inline bool DoubleArrayBuilder::is_valid_offset(id_type id, function reserve_id (line 1804) | inline void DoubleArrayBuilder::reserve_id(id_type id) { function expand_units (line 1820) | inline void DoubleArrayBuilder::expand_units() { function fix_all_blocks (line 1855) | inline void DoubleArrayBuilder::fix_all_blocks() { function fix_block (line 1867) | inline void DoubleArrayBuilder::fix_block(id_type block_id) { FILE: third_party/esaxx/esa.hxx type esaxx_private (line 35) | namespace esaxx_private { function index_type (line 37) | index_type suffixtree(string_type T, sarray_type SA, sarray_type L, sa... function esaxx (line 113) | int esaxx(string_type T, sarray_type SA, sarray_type L, sarray_type R, s... FILE: third_party/esaxx/sais.hxx type saisxx_private (line 42) | namespace saisxx_private { function getCounts (line 46) | void function getBuckets (line 77) | void function induceSA (line 87) | void function computeBWT (line 120) | int function suffixsort (line 161) | int function saisxx (line 325) | int function index_type (line 345) | index_type FILE: third_party/protobuf-lite/arena.cc type google (line 48) | namespace google { type protobuf (line 49) | namespace protobuf { type internal (line 54) | namespace internal { function ArenaFree (line 75) | void ArenaFree(void* object, size_t size) { function uint64 (line 190) | uint64 ArenaImpl::Reset() { function PROTOBUF_NOINLINE (line 263) | PROTOBUF_NOINLINE function PROTOBUF_NOINLINE (line 298) | PROTOBUF_NOINLINE function PROTOBUF_NOINLINE (line 303) | PROTOBUF_NOINLINE function PROTOBUF_NOINLINE (line 310) | PROTOBUF_NOINLINE function PROTOBUF_NOINLINE (line 315) | PROTOBUF_NOINLINE function uint64 (line 331) | uint64 ArenaImpl::SpaceAllocated() const { function uint64 (line 335) | uint64 ArenaImpl::SpaceUsed() const { function uint64 (line 348) | uint64 SerialArena::SpaceUsed() const { function SerialArena (line 396) | SerialArena* SerialArena::New(Block* b, void* owner, ArenaImpl* ar... function PROTOBUF_NOINLINE (line 412) | PROTOBUF_NOINLINE FILE: third_party/protobuf-lite/arenastring.cc type google (line 46) | namespace google { type protobuf (line 47) | namespace protobuf { type internal (line 48) | namespace internal { FILE: third_party/protobuf-lite/bytestream.cc type google (line 38) | namespace google { type protobuf (line 39) | namespace protobuf { type strings (line 40) | namespace strings { function StringPiece (line 152) | StringPiece ArrayByteSource::Peek() { function StringPiece (line 175) | StringPiece LimitByteSource::Peek() { FILE: third_party/protobuf-lite/coded_stream.cc type google (line 59) | namespace google { type protobuf (line 60) | namespace protobuf { type io (line 61) | namespace io { function NextNonEmpty (line 69) | inline bool NextNonEmpty(ZeroCopyInputStream* input, const void** ... function uint8 (line 351) | const uint8* DecodeVarint64KnownSize(const uint8* buffer, uint64* ... function ReadVarint32FromArray (line 369) | inline ::std::pair ReadVarint32FromArray( function ReadVarint64FromArray (line 414) | inline ::std::pair ReadVarint64FromArray( function int64 (line 457) | int64 CodedInputStream::ReadVarint32Fallback(uint32 first_byte_or_... function uint32 (line 505) | uint32 CodedInputStream::ReadTagSlow() { function uint32 (line 531) | uint32 CodedInputStream::ReadTagFallback(uint32 first_byte_or_zero) { function int64 (line 673) | int64 EpsCopyOutputStream::ByteCount(uint8* ptr) const { function uint8 (line 704) | uint8* EpsCopyOutputStream::Trim(uint8* ptr) { function uint8 (line 714) | uint8* EpsCopyOutputStream::FlushAndResetBuffer(uint8* ptr) { function uint8 (line 766) | uint8* EpsCopyOutputStream::GetDirectBufferForNBytesAndAdvance(int... function uint8 (line 787) | uint8* EpsCopyOutputStream::Next() { function uint8 (line 825) | uint8* EpsCopyOutputStream::EnsureSpaceFallback(uint8* ptr) { function uint8 (line 837) | uint8* EpsCopyOutputStream::WriteRawFallback(const void* data, int... function uint8 (line 851) | uint8* EpsCopyOutputStream::WriteAliasedRaw(const void* data, int ... function uint8 (line 864) | uint8* EpsCopyOutputStream::WriteRawLittleEndian32(const void* dat... function uint8 (line 887) | uint8* EpsCopyOutputStream::WriteRawLittleEndian64(const void* dat... function uint8 (line 912) | uint8* EpsCopyOutputStream::WriteStringMaybeAliasedOutline(uint32 ... function uint8 (line 921) | uint8* EpsCopyOutputStream::WriteStringOutline(uint32 num, const s... function uint8 (line 947) | uint8* CodedOutputStream::WriteStringWithSizeToArray(const std::st... FILE: third_party/protobuf-lite/common.cc type google (line 66) | namespace google { type protobuf (line 67) | namespace protobuf { type internal (line 69) | namespace internal { function VerifyVersion (line 71) | void VerifyVersion(int headerVersion, function VersionString (line 99) | std::string VersionString(int version) { function DefaultLogHandler (line 129) | inline void DefaultLogHandler(LogLevel level, const char* filename... function DefaultLogHandler (line 164) | void DefaultLogHandler(LogLevel level, const char* filename, int l... function NullLogHandler (line 179) | void NullLogHandler(LogLevel /* level */, const char* /* filename */, function LogMessage (line 187) | LogMessage& LogMessage::operator<<(const std::string& value) { function LogMessage (line 192) | LogMessage& LogMessage::operator<<(const char* value) { function LogMessage (line 197) | LogMessage& LogMessage::operator<<(const StringPiece& value) { function LogMessage (line 202) | LogMessage& LogMessage::operator<<(const util::Status& status) { function LogMessage (line 207) | LogMessage& LogMessage::operator<<(const uint128& value) { type internal (line 126) | namespace internal { function VerifyVersion (line 71) | void VerifyVersion(int headerVersion, function VersionString (line 99) | std::string VersionString(int version) { function DefaultLogHandler (line 129) | inline void DefaultLogHandler(LogLevel level, const char* filename... function DefaultLogHandler (line 164) | void DefaultLogHandler(LogLevel level, const char* filename, int l... function NullLogHandler (line 179) | void NullLogHandler(LogLevel /* level */, const char* /* filename */, function LogMessage (line 187) | LogMessage& LogMessage::operator<<(const std::string& value) { function LogMessage (line 192) | LogMessage& LogMessage::operator<<(const char* value) { function LogMessage (line 197) | LogMessage& LogMessage::operator<<(const StringPiece& value) { function LogMessage (line 202) | LogMessage& LogMessage::operator<<(const util::Status& status) { function LogMessage (line 207) | LogMessage& LogMessage::operator<<(const uint128& value) { function LogHandler (line 272) | LogHandler* SetLogHandler(LogHandler* new_func) { type internal (line 298) | namespace internal { FunctionClosure0::~FunctionClosure0() {} } function DoNothing (line 300) | void DoNothing() {} function uint32 (line 308) | uint32 ghtonl(uint32 x) { FILE: third_party/protobuf-lite/extension_set.cc type google (line 53) | namespace google { type protobuf (line 54) | namespace protobuf { type internal (line 55) | namespace internal { function real_type (line 59) | inline WireFormatLite::FieldType real_type(FieldType type) { function cpp_type (line 64) | inline WireFormatLite::CppType cpp_type(FieldType type) { function is_packable (line 68) | inline bool is_packable(WireFormatLite::WireType type) { type ExtensionHasher (line 87) | struct ExtensionHasher { function Register (line 102) | void Register(const MessageLite* containing_type, int number, function ExtensionInfo (line 114) | const ExtensionInfo* FindRegisteredExtension(const MessageLite* co... function CallNoArgValidityFunc (line 147) | static bool CallNoArgValidityFunc(const void* arg, int number) { function FieldType (line 250) | FieldType ExtensionSet::ExtensionType(int number) const { function MessageLite (line 564) | const MessageLite& ExtensionSet::GetMessage( function MessageLite (line 585) | MessageLite* ExtensionSet::MutableMessage(int number, FieldType type, function MessageLite (line 686) | MessageLite* ExtensionSet::ReleaseMessage(int number, function MessageLite (line 715) | MessageLite* ExtensionSet::UnsafeArenaReleaseMessage( function MessageLite (line 741) | const MessageLite& ExtensionSet::GetRepeatedMessage(int number, function MessageLite (line 749) | MessageLite* ExtensionSet::MutableRepeatedMessage(int number, int ... function MessageLite (line 756) | MessageLite* ExtensionSet::AddMessage(int number, FieldType type, function MessageLite (line 828) | MessageLite* ExtensionSet::ReleaseLast(int number) { function SizeOfUnion (line 884) | size_t SizeOfUnion(ItX it_xs, ItX end_xs, ItY it_ys, ItY end_ys) { type MSLite (line 1428) | struct MSLite { method ParseField (line 1429) | bool ParseField(int type_id, io::CodedInputStream* input) { method SkipField (line 1435) | bool SkipField(uint32 tag, io::CodedInputStream* input) { function uint8 (line 1458) | uint8* ExtensionSet::_InternalSerialize(int start_field_number, function uint8 (line 1480) | uint8* ExtensionSet::InternalSerializeMessageSetWithCachedSizesToA... function RepeatedPrimitiveDefaults (line 1914) | const RepeatedPrimitiveDefaults* RepeatedPrimitiveDefaults::defaul... function uint8 (line 1925) | uint8* ExtensionSet::Extension::InternalSerializeFieldWithCachedSi... function uint8 (line 2071) | uint8* FILE: third_party/protobuf-lite/generated_enum_util.cc type google (line 37) | namespace google { type protobuf (line 38) | namespace protobuf { type internal (line 39) | namespace internal { function EnumCompareByName (line 42) | bool EnumCompareByName(const EnumEntry& a, const EnumEntry& b) { function GetValue (line 49) | int GetValue(const EnumEntry* enums, int i, int target) { function LookUpEnumValue (line 59) | bool LookUpEnumValue(const EnumEntry* enums, size_t size, function LookUpEnumName (line 70) | int LookUpEnumName(const EnumEntry* enums, const int* sorted_indices, function InitializeEnumStrings (line 83) | bool InitializeEnumStrings( FILE: third_party/protobuf-lite/generated_message_table_driven_lite.cc type google (line 40) | namespace google { type protobuf (line 41) | namespace protobuf { type internal (line 42) | namespace internal { type UnknownFieldHandlerLite (line 51) | struct UnknownFieldHandlerLite { method IsLite (line 54) | static constexpr bool IsLite() { return true; } method Skip (line 56) | static bool Skip(MessageLite* msg, const ParseTable& table, method Varint (line 67) | static void Varint(MessageLite* msg, const ParseTable& table, in... method ParseExtension (line 78) | static bool ParseExtension(MessageLite* msg, const ParseTable& t... function MergePartialFromCodedStreamLite (line 98) | bool MergePartialFromCodedStreamLite(MessageLite* msg, const Parse... FILE: third_party/protobuf-lite/generated_message_util.cc type google (line 60) | namespace google { type protobuf (line 61) | namespace protobuf { type internal (line 62) | namespace internal { function DestroyMessage (line 64) | void DestroyMessage(const void* message) { function DestroyString (line 67) | void DestroyString(const void* s) { function InitProtobufDefaultsImpl (line 76) | static bool InitProtobufDefaultsImpl() { function InitProtobufDefaultsSlow (line 89) | void InitProtobufDefaultsSlow() { function StringSpaceUsedExcludingSelfLong (line 94) | size_t StringSpaceUsedExcludingSelfLong(const std::string& str) { function T (line 106) | const T& Get(const void* ptr) { type PrimitiveTypeHelper (line 115) | struct PrimitiveTypeHelper type PrimitiveTypeHelper (line 118) | struct PrimitiveTypeHelper { method Serialize (line 120) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 123) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 129) | struct PrimitiveTypeHelper { method Serialize (line 131) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 134) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 140) | struct PrimitiveTypeHelper { method Serialize (line 142) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 145) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 151) | struct PrimitiveTypeHelper { method Serialize (line 153) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 156) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 161) | struct PrimitiveTypeHelper { method Serialize (line 163) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 166) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 172) | struct PrimitiveTypeHelper { method Serialize (line 174) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 177) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 182) | struct PrimitiveTypeHelper { method Serialize (line 184) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 187) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 193) | struct PrimitiveTypeHelper { method Serialize (line 195) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 198) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 204) | struct PrimitiveTypeHelper { method Serialize (line 206) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 209) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 215) | struct PrimitiveTypeHelper type PrimitiveTypeHelper (line 219) | struct PrimitiveTypeHelper type PrimitiveTypeHelper (line 224) | struct PrimitiveTypeHelper type PrimitiveTypeHelper (line 229) | struct PrimitiveTypeHelper type PrimitiveTypeHelper (line 234) | struct PrimitiveTypeHelper type PrimitiveTypeHelper (line 240) | struct PrimitiveTypeHelper { method Serialize (line 242) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... method uint8 (line 247) | static uint8* SerializeToArray(const void* ptr, uint8* buffer) { type PrimitiveTypeHelper (line 254) | struct PrimitiveTypeHelper type OutputHelper (line 262) | struct OutputHelper function SerializeTo (line 265) | void SerializeTo(const void* ptr, O* output) { function WriteTagTo (line 270) | void WriteTagTo(uint32 tag, O* output) { function WriteLengthTo (line 275) | void WriteLengthTo(uint32 length, O* output) { type OutputHelper (line 281) | struct OutputHelper { method Serialize (line 282) | static void Serialize(const void* ptr, io::CodedOutputStream* ou... type ArrayOutput (line 288) | struct ArrayOutput { type OutputHelper (line 294) | struct OutputHelper { method Serialize (line 295) | static void Serialize(const void* ptr, ArrayOutput* output) { function SerializeMessageNoTable (line 300) | void SerializeMessageNoTable(const MessageLite* msg, function SerializeMessageNoTable (line 305) | void SerializeMessageNoTable(const MessageLite* msg, ArrayOutput* ... function SerializeMessageDispatch (line 314) | void SerializeMessageDispatch(const MessageLite& msg, function SerializeMessageDispatch (line 323) | void SerializeMessageDispatch(const MessageLite& msg, function SerializeMessageTo (line 334) | void SerializeMessageTo(const MessageLite* msg, const void* table_... function SerializeGroupTo (line 355) | void SerializeGroupTo(const MessageLite* msg, const void* table_ptr, type SingularFieldHelper (line 373) | struct SingularFieldHelper { method Serialize (line 375) | static void Serialize(const void* field, const FieldMetadata& md... type SingularFieldHelper (line 382) | struct SingularFieldHelper { method Serialize (line 384) | static void Serialize(const void* field, const FieldMetadata& md... type SingularFieldHelper (line 392) | struct SingularFieldHelper type SingularFieldHelper (line 396) | struct SingularFieldHelper { method Serialize (line 398) | static void Serialize(const void* field, const FieldMetadata& md... type SingularFieldHelper (line 407) | struct SingularFieldHelper { method Serialize (line 409) | static void Serialize(const void* field, const FieldMetadata& md... type RepeatedFieldHelper (line 417) | struct RepeatedFieldHelper { method Serialize (line 419) | static void Serialize(const void* field, const FieldMetadata& md... class AccessorHelper (line 430) | class AccessorHelper { method Size (line 432) | static int Size(const RepeatedPtrFieldBase& x) { return x.size(); } type RepeatedFieldHelper (line 439) | struct RepeatedFieldHelper { method Serialize (line 441) | static void Serialize(const void* field, const FieldMetadata& md... type RepeatedFieldHelper (line 453) | struct RepeatedFieldHelper type RepeatedFieldHelper (line 457) | struct RepeatedFieldHelper { method Serialize (line 459) | static void Serialize(const void* field, const FieldMetadata& md... type RepeatedFieldHelper (line 473) | struct RepeatedFieldHelper { method Serialize (line 475) | static void Serialize(const void* field, const FieldMetadata& md... type PackedFieldHelper (line 489) | struct PackedFieldHelper { method Serialize (line 491) | static void Serialize(const void* field, const FieldMetadata& md... type PackedFieldHelper (line 506) | struct PackedFieldHelper { method Serialize (line 508) | static void Serialize(const void* field, const FieldMetadata& md... type PackedFieldHelper (line 515) | struct PackedFieldHelper type PackedFieldHelper (line 518) | struct PackedFieldHelper type PackedFieldHelper (line 521) | struct PackedFieldHelper type OneOfFieldHelper (line 525) | struct OneOfFieldHelper { method Serialize (line 527) | static void Serialize(const void* field, const FieldMetadata& md... function SerializeNotImplemented (line 533) | void SerializeNotImplemented(int field) { function IsNull (line 547) | bool IsNull(const void* ptr) { function SerializeInternal (line 594) | void SerializeInternal(const uint8* base, function uint8 (line 635) | uint8* SerializeInternalToArray(const uint8* base, function ExtensionSerializer (line 684) | void ExtensionSerializer(const uint8* ptr, uint32 offset, uint32 tag, function UnknownFieldSerializerLite (line 690) | void UnknownFieldSerializerLite(const uint8* ptr, uint32 offset, u... function MessageLite (line 698) | MessageLite* DuplicateIfNonNullInternal(MessageLite* message) { function GenericSwap (line 708) | void GenericSwap(MessageLite* m1, MessageLite* m2) { function MessageLite (line 719) | MessageLite* GetOwnedMessageInternal(Arena* message_arena, function InitSCC_DFS (line 736) | void InitSCC_DFS(SCCInfoBase* scc) { function InitSCCImpl (line 764) | void InitSCCImpl(SCCInfoBase* scc) { FILE: third_party/protobuf-lite/google/protobuf/any.h function namespace (line 42) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/arena.h function namespace (line 47) | namespace std { function namespace (line 64) | namespace google { function namespace (line 72) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/arena_impl.h function namespace (line 49) | namespace google { function class (line 257) | class PROTOBUF_EXPORT ArenaImpl { function PROTOBUF_ALWAYS_INLINE (line 301) | PROTOBUF_ALWAYS_INLINE bool MaybeAllocateAligned(size_t n, void** out) { function RecordAlloc (line 314) | inline void RecordAlloc(const std::type_info* allocated_type, type Options (line 333) | struct Options { function CacheSerialArena (line 375) | inline void CacheSerialArena(SerialArena* serial) { function PROTOBUF_ALWAYS_INLINE (line 385) | PROTOBUF_ALWAYS_INLINE bool GetSerialArenaFast(SerialArena** arena) { function PROTOBUF_ALWAYS_INLINE (line 399) | PROTOBUF_ALWAYS_INLINE bool GetSerialArenaFromThreadCache( type alignas (line 416) | struct alignas type alignas (line 447) | struct alignas function ThreadCache (line 462) | static ThreadCache& thread_cache() { return thread_cache_; } FILE: third_party/protobuf-lite/google/protobuf/arenastring.h function namespace (line 50) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/descriptor.h function namespace (line 80) | namespace google { function FileDescriptor (line 2231) | inline const FileDescriptor* OneofDescriptor::file() const { function FileDescriptor (line 2251) | inline const FileDescriptor* EnumValueDescriptor::file() const { function FileDescriptor (line 2263) | inline const FileDescriptor* MethodDescriptor::file() const { function IsTypePackable (line 2295) | inline bool FieldDescriptor::IsTypePackable(Type field_type) { function FileDescriptor (line 2302) | inline const FileDescriptor* FileDescriptor::public_dependency( function FileDescriptor (line 2307) | inline const FileDescriptor* FileDescriptor::weak_dependency(int index) ... function FieldDescriptor (line 2315) | inline const FieldDescriptor* OneofDescriptor::field(int index) const { FILE: third_party/protobuf-lite/google/protobuf/extension_set.h function namespace (line 62) | namespace google { function namespace (line 78) | namespace google { function LinkExtensionReflection (line 1580) | void LinkExtensionReflection( FILE: third_party/protobuf-lite/google/protobuf/extension_set_inl.h function namespace (line 38) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/generated_enum_reflection.h function namespace (line 54) | namespace google { function namespace (line 60) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/generated_enum_util.h function namespace (line 45) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/generated_message_table_driven.h function namespace (line 56) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/generated_message_table_driven_lite.h function namespace (line 45) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/generated_message_util.h function namespace (line 66) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/has_bits.h function namespace (line 43) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/implicit_weak_message.h function namespace (line 50) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/io/coded_stream.h function namespace (line 150) | namespace google { function class (line 1046) | class PROTOBUF_EXPORT CodedOutputStream { function ReadVarint32 (line 1270) | inline bool CodedInputStream::ReadVarint32(uint32* value) { function ReadVarint64 (line 1285) | inline bool CodedInputStream::ReadVarint64(uint64* value) { function ReadVarintSizeAsInt (line 1296) | inline bool CodedInputStream::ReadVarintSizeAsInt(int* value) { function uint8 (line 1310) | inline const uint8* CodedInputStream::ReadLittleEndian32FromArray( function uint8 (line 1324) | inline const uint8* CodedInputStream::ReadLittleEndian64FromArray( function ReadLittleEndian32 (line 1343) | inline bool CodedInputStream::ReadLittleEndian32(uint32* value) { function ReadLittleEndian64 (line 1356) | inline bool CodedInputStream::ReadLittleEndian64(uint64* value) { function uint32 (line 1369) | inline uint32 CodedInputStream::ReadTagNoLastTag() { function LastTagWas (line 1422) | inline bool CodedInputStream::LastTagWas(uint32 expected) { function ConsumedEntireMessage (line 1426) | inline bool CodedInputStream::ConsumedEntireMessage() { function ExpectTag (line 1430) | inline bool CodedInputStream::ExpectTag(uint32 expected) { function uint8 (line 1454) | inline const uint8* CodedInputStream::ExpectTagFromArray(const uint8* bu... function GetDirectBufferPointerInline (line 1469) | inline void CodedInputStream::GetDirectBufferPointerInline(const void** ... function ExpectAtEnd (line 1475) | inline bool CodedInputStream::ExpectAtEnd() { function Advance (line 1493) | inline void CodedInputStream::Advance(int amount) { buffer_ += amount; } function SetRecursionLimit (line 1495) | inline void CodedInputStream::SetRecursionLimit(int limit) { function IncrementRecursionDepth (line 1500) | inline bool CodedInputStream::IncrementRecursionDepth() { function DecrementRecursionDepth (line 1505) | inline void CodedInputStream::DecrementRecursionDepth() { function UnsafeDecrementRecursionDepth (line 1509) | inline void CodedInputStream::UnsafeDecrementRecursionDepth() { function SetExtensionRegistry (line 1514) | inline void CodedInputStream::SetExtensionRegistry(const DescriptorPool*... function DescriptorPool (line 1520) | inline const DescriptorPool* CodedInputStream::GetExtensionPool() { function MessageFactory (line 1524) | inline MessageFactory* CodedInputStream::GetExtensionFactory() { function Skip (line 1574) | inline bool CodedInputStream::Skip(int count) { function uint8 (line 1588) | inline uint8* CodedOutputStream::WriteVarint32ToArray(uint32 value, function uint8 (line 1593) | inline uint8* CodedOutputStream::WriteVarint64ToArray(uint64 value, function WriteVarint32SignExtended (line 1598) | inline void CodedOutputStream::WriteVarint32SignExtended(int32 value) { function uint8 (line 1602) | inline uint8* CodedOutputStream::WriteVarint32SignExtendedToArray( function uint8 (line 1607) | inline uint8* CodedOutputStream::WriteLittleEndian32ToArray(uint32 value, function uint8 (line 1620) | inline uint8* CodedOutputStream::WriteLittleEndian64ToArray(uint64 value, function WriteVarint32 (line 1640) | inline void CodedOutputStream::WriteVarint32(uint32 value) { function WriteVarint64 (line 1645) | inline void CodedOutputStream::WriteVarint64(uint64 value) { function WriteTag (line 1650) | inline void CodedOutputStream::WriteTag(uint32 value) { WriteVarint32(va... function uint8 (line 1652) | inline uint8* CodedOutputStream::WriteTagToArray(uint32 value, uint8* ta... function VarintSize32 (line 1656) | inline size_t CodedOutputStream::VarintSize32(uint32 value) { function VarintSize64 (line 1666) | inline size_t CodedOutputStream::VarintSize64(uint64 value) { function VarintSize32SignExtended (line 1676) | inline size_t CodedOutputStream::VarintSize32SignExtended(int32 value) { function WriteString (line 1684) | inline void CodedOutputStream::WriteString(const std::string& str) { function WriteRawMaybeAliased (line 1688) | inline void CodedOutputStream::WriteRawMaybeAliased(const void* data, function uint8 (line 1693) | inline uint8* CodedOutputStream::WriteRawToArray(const void* data, int s... function uint8 (line 1699) | inline uint8* CodedOutputStream::WriteStringToArray(const std::string& str, FILE: third_party/protobuf-lite/google/protobuf/io/io_win32.h function namespace (line 61) | namespace protobuf { FILE: third_party/protobuf-lite/google/protobuf/io/zero_copy_stream.h function namespace (line 117) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/io/zero_copy_stream_impl.h function namespace (line 53) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/io/zero_copy_stream_impl_lite.h function namespace (line 60) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/map.h function namespace (line 65) | namespace google { type Node (line 474) | struct Node { function Node (line 487) | static Node* NodeFromTreeIterator(TreeIterator it) { function explicit (line 507) | explicit iterator_base(const InnerMap* m) : m_(m) { function SearchFrom (line 530) | void SearchFrom(size_type start_bucket) { function reference (line 548) | reference operator*() const { return node_->kv; } function pointer (line 549) | pointer operator->() const { return &(operator*()); } function revalidate_if_necessary (line 589) | bool revalidate_if_necessary(TreeIterator* it) { function Arena (line 623) | Arena* arena() const { return alloc_.arena(); } function Swap (line 625) | void Swap(InnerMap* other) { function iterator (line 634) | iterator begin() { return iterator(this); } function iterator (line 635) | iterator end() { return iterator(); } function clear (line 639) | void clear() { function size_type (line 672) | static size_type max_size() { function erase (line 727) | void erase(iterator it) { function SpaceUsedInternal (line 760) | size_t SpaceUsedInternal() const { function iterator (line 803) | iterator InsertUnique(size_type b, Node* node) { function ShouldInsertAfterHead (line 839) | bool ShouldInsertAfterHead(void* node) { function iterator (line 851) | iterator InsertUniqueInList(size_type b, Node* node) { function iterator (line 866) | iterator InsertUniqueInTree(size_type b, Node* node) { function ResizeIfLoadIsOutOfRange (line 883) | bool ResizeIfLoadIsOutOfRange(size_type new_size) { function Resize (line 917) | void Resize(size_t new_num_buckets) { function TransferList (line 944) | void TransferList(void* const* table, size_type index) { function TransferTree (line 953) | void TransferTree(void* const* table, size_type index) { function Node (line 963) | Node* EraseFromLinkedList(Node* item, Node* head) { function TableEntryIsEmpty (line 972) | bool TableEntryIsEmpty(size_type b) const { function TableEntryIsNonEmptyList (line 975) | bool TableEntryIsNonEmptyList(size_type b) const { function TableEntryIsTree (line 978) | bool TableEntryIsTree(size_type b) const { function TableEntryIsList (line 981) | bool TableEntryIsList(size_type b) const { function TreeConvert (line 985) | void TreeConvert(size_type b) { function size_type (line 997) | size_type CopyListToTree(size_type b, Tree* tree) { function TableEntryIsTooLong (line 1012) | bool TableEntryIsTooLong(size_type b) { function size_type (line 1040) | size_type TableSize(size_type n) { function DestroyNode (line 1060) | void DestroyNode(Node* node) { function DestroyTree (line 1066) | void DestroyTree(Tree* tree) { function size_type (line 1081) | size_type Seed() const { function class (line 1147) | class iterator { function iterator (line 1187) | iterator begin() { return iterator(elements_.begin()); } function iterator (line 1188) | iterator end() { return iterator(elements_.end()); } function insert (line 1286) | void insert(std::initializer_list values) { function iterator (line 1301) | iterator erase(iterator pos) { function erase (line 1306) | void erase(iterator first, iterator last) { function clear (line 1311) | void clear() { elements_.clear(); } function swap (line 1322) | void swap(Map& other) { FILE: third_party/protobuf-lite/google/protobuf/map_entry_lite.h function namespace (line 53) | namespace google { function namespace (line 68) | namespace google { function ByteSizeLong (line 104) | struct MapEntryFuncs { function GetCachedSize (line 131) | static int GetCachedSize(const Key& key, const Value& value) { type MapTypeHandler (line 152) | typedef MapTypeHandler ValueTypeHandler; type typename (line 156) | typedef typename KeyTypeHandler::TypeOnMemory KeyOnMemory; type typename (line 157) | typedef typename ValueTypeHandler::TypeOnMemory ValueOnMemory; type typename (line 161) | typedef typename KeyTypeHandler::MapEntryAccessorType KeyMapEntryAccesso... type typename (line 162) | typedef type Derived (line 179) | typedef Derived EntryType; type Key (line 180) | typedef Key EntryKeyType; type Value (line 181) | typedef Value EntryValueType; function virtual (line 204) | virtual inline const KeyMapEntryAccessorType& key() const { function KeyMapEntryAccessorType (line 210) | inline KeyMapEntryAccessorType* mutable_key() { function ValueMapEntryAccessorType (line 214) | inline ValueMapEntryAccessorType* mutable_value() { function CheckTypeAndMergeFrom (line 225) | void CheckTypeAndMergeFrom(const MessageLite& other) override { function ByteSizeLong (line 258) | size_t ByteSizeLong() const override { function IsInitialized (line 284) | bool IsInitialized() const override { function Base (line 293) | Base* New(Arena* arena) const override { function MergePartialFromCodedStream (line 337) | bool MergePartialFromCodedStream(io::CodedInputStream* input) { function MapEntryImpl (line 436) | MapEntryImpl* NewEntry() { return entry_ = mf_->NewEntry(); } function ReadBeyondKeyValuePair (line 458) | bool ReadBeyondKeyValuePair(io::CodedInputStream* input) PROTOBUF_COLD { type MoveHelper (line 468) | typedef MoveHelperfirst), second(p) {} function const (line 565) | bool operator()(const T& a, const T& b) const { return a.first < b.first; } function const (line 570) | bool operator()(const T& a, const T& b) const { return a->first < b->fir... function TYPE_STRING (line 584) | struct FromHelper { function TYPE_BYTES (line 594) | struct FromHelper { function TYPE_MESSAGE (line 604) | struct FromHelper { type MapEntryHelper (line 617) | struct MapEntryHelper type MapTypeHandler (line 621) | typedef MapTypeHandler KeyTypeHandler; type MapTypeHandler (line 622) | typedef MapTypeHandler ValueTypeHandler; type typename (line 626) | typedef typename KeyTypeHandler::TypeOnMemory KeyOnMemory; type typename (line 627) | typedef typename ValueTypeHandler::TypeOnMemory ValueOnMemory; FILE: third_party/protobuf-lite/google/protobuf/map_field_lite.h function namespace (line 48) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/map_type_handler.h function namespace (line 43) | namespace google { type typename (line 132) | typedef typename MapWireFieldTypeTraits() { function std (line 206) | const std::string& other) { function class (line 223) | class PROTOBUF_EXPORT LiteUnknownFieldSetter { FILE: third_party/protobuf-lite/google/protobuf/parse_context.h function namespace (line 52) | namespace google { function uint32 (line 559) | inline uint32 DecodeTwoBytes(const char** ptr) { function uint32 (line 599) | inline uint32 ReadSize(const char** pp) { function uint64 (line 616) | inline uint64 ReadVarint64(const char** p) { function uint32 (line 622) | inline uint32 ReadVarint32(const char** p) { function int64 (line 628) | inline int64 ReadVarintZigZag64(const char** p) { function int32 (line 634) | inline int32 ReadVarintZigZag32(const char** p) { function VerifyUTF8 (line 705) | inline bool VerifyUTF8(const std::string* s, const char* field_name) { FILE: third_party/protobuf-lite/google/protobuf/repeated_field.h function namespace (line 76) | namespace google { function namespace (line 489) | namespace internal { function namespace (line 496) | namespace internal { function namespace (line 511) | namespace internal { function Arena (line 852) | inline Arena* GenericTypeHandler::GetArena(MessageLite* val... function Clear (line 864) | inline void GenericTypeHandler::Clear(std::string* value) { function class (line 883) | class StringTypeHandler { function empty (line 936) | bool empty() const; function Capacity (line 968) | int Capacity() const; function reverse_iterator (line 1013) | reverse_iterator rend() { return reverse_iterator(begin()); } type internal (line 1020) | typedef internal::RepeatedPtrOverPtrsIterator type internal (line 1022) | typedef internal::RepeatedPtrOverPtrsIterator(it_); } function pointer (line 2529) | pointer operator->() const { return &(operator*()); } function reference (line 2576) | reference operator[](difference_type d) const { return *(*this + d); } function InternalSwap (line 2589) | void RepeatedPtrFieldBase::InternalSwap(RepeatedPtrFieldBase* other) { function namespace (line 2668) | namespace internal { FILE: third_party/protobuf-lite/google/protobuf/stubs/bytestream.h function namespace (line 63) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/callback.h function namespace (line 13) | namespace google { type typename (line 348) | typedef typename std::remove_reference::type base_type; type base_type (line 349) | typedef const base_type& type; function R (line 362) | R Run() { type P2 (line 379) | typedef R (T::*MethodType)(P1, P2, P3, P4, P5, P6, A1, A2); function Closure (line 415) | inline Closure* NewCallback(void (*function)()) { function Closure (line 420) | inline Closure* NewPermanentCallback(void (*function)()) { function Closure (line 438) | Closure* NewCallback(void (*function)(Arg1), function Closure (line 445) | Closure* NewPermanentCallback(void (*function)(Arg1), function Closure (line 466) | Closure* NewCallback(void (*function)(Arg1, Arg2), function Closure (line 474) | Closure* NewPermanentCallback(void (*function)(Arg1, Arg2), FILE: third_party/protobuf-lite/google/protobuf/stubs/casts.h function namespace (line 39) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/common.h function namespace (line 74) | namespace std {} function namespace (line 76) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/hash.h function namespace (line 46) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/int128.h function namespace (line 39) | namespace google { function uint128 (line 266) | inline uint128& uint128::operator<<=(int amount) { function uint128 (line 283) | inline uint128& uint128::operator>>=(int amount) { FILE: third_party/protobuf-lite/google/protobuf/stubs/logging.h function namespace (line 42) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/macros.h function namespace (line 36) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/map_util.h function namespace (line 45) | namespace google { type typename (line 380) | typedef typename Collection::value_type value_type; type typename (line 445) | typedef typename std::iterator_traits< type typename (line 464) | typedef typename std::iterator_traits< type typename (line 500) | typedef typename Collection::value_type::second_type Value; type typename (line 520) | typedef typename Collection::value_type::second_type Value; type typename (line 538) | typedef typename Collection::value_type::second_type SharedPtr; type typename (line 539) | typedef typename Collection::value_type::second_type::element_type Element; type typename (line 559) | typedef typename Collection::value_type::second_type SharedPtr; type typename (line 560) | typedef typename Collection::value_type::second_type::element_type Element; FILE: third_party/protobuf-lite/google/protobuf/stubs/mutex.h function namespace (line 66) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/once.h function namespace (line 39) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/port.h type uint (line 122) | typedef unsigned int uint; type int8 (line 124) | typedef int8_t int8; type int16 (line 125) | typedef int16_t int16; type int32 (line 126) | typedef int32_t int32; type int64 (line 127) | typedef int64_t int64; type uint8 (line 129) | typedef uint8_t uint8; type uint16 (line 130) | typedef uint16_t uint16; type uint32 (line 131) | typedef uint32_t uint32; type uint64 (line 132) | typedef uint64_t uint64; function uint16 (line 157) | inline uint16 GOOGLE_UNALIGNED_LOAD16(const void *p) { function uint32 (line 161) | inline uint32 GOOGLE_UNALIGNED_LOAD32(const void *p) { function uint64 (line 165) | inline uint64 GOOGLE_UNALIGNED_LOAD64(const void *p) { function GOOGLE_UNALIGNED_STORE16 (line 169) | inline void GOOGLE_UNALIGNED_STORE16(void *p, uint16 v) { function GOOGLE_UNALIGNED_STORE32 (line 173) | inline void GOOGLE_UNALIGNED_STORE32(void *p, uint32 v) { function GOOGLE_UNALIGNED_STORE64 (line 177) | inline void GOOGLE_UNALIGNED_STORE64(void *p, uint64 v) { function uint16 (line 192) | inline uint16 GOOGLE_UNALIGNED_LOAD16(const void *p) { function uint32 (line 198) | inline uint32 GOOGLE_UNALIGNED_LOAD32(const void *p) { function uint64 (line 204) | inline uint64 GOOGLE_UNALIGNED_LOAD64(const void *p) { function GOOGLE_UNALIGNED_STORE16 (line 210) | inline void GOOGLE_UNALIGNED_STORE16(void *p, uint16 v) { function GOOGLE_UNALIGNED_STORE32 (line 214) | inline void GOOGLE_UNALIGNED_STORE32(void *p, uint32 v) { function GOOGLE_UNALIGNED_STORE64 (line 218) | inline void GOOGLE_UNALIGNED_STORE64(void *p, uint64 v) { function uint16 (line 245) | static inline uint16 bswap_16(uint16 x) { function uint32 (line 252) | static inline uint32 bswap_32(uint32 x) { function uint64 (line 262) | static inline uint64 bswap_64(uint64 x) { function class (line 280) | class Bits { function class (line 344) | class BigEndian { FILE: third_party/protobuf-lite/google/protobuf/stubs/status.h function namespace (line 41) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/statusor.h function namespace (line 95) | namespace protobuf { FILE: third_party/protobuf-lite/google/protobuf/stubs/stl_util.h function namespace (line 38) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/stringpiece.h function namespace (line 155) | namespace google { function namespace (line 429) | namespace internal { function GOOGLE_PROTOBUF_HASH_NAMESPACE_DECLARATION_START (line 475) | GOOGLE_PROTOBUF_HASH_NAMESPACE_DECLARATION_START FILE: third_party/protobuf-lite/google/protobuf/stubs/stringprintf.h function namespace (line 51) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/stubs/strutil.h function namespace (line 44) | namespace google { function std (line 734) | inline std::string StrCat(const AlphaNum& a) { function string (line 785) | string Join(const Range& components, const char* delim) { function IsValidCodePoint (line 869) | inline bool IsValidCodePoint(uint32 code_point) { function namespace (line 931) | namespace strings { function namespace (line 940) | namespace internal { FILE: third_party/protobuf-lite/google/protobuf/stubs/time.h function namespace (line 37) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/unknown_field_set.h function namespace (line 60) | namespace google { FILE: third_party/protobuf-lite/google/protobuf/wire_format_lite.h function namespace (line 70) | namespace google { function ReadGroup (line 1243) | bool WireFormatLite::ReadGroup(int field_number, function ReadMessage (line 1256) | bool WireFormatLite::ReadMessage(io::CodedInputStream* input, function WriteTag (line 1270) | inline void WireFormatLite::WriteTag(int field_number, WireType type, function WriteInt32NoTag (line 1275) | inline void WireFormatLite::WriteInt32NoTag(int32 value, function WriteInt64NoTag (line 1279) | inline void WireFormatLite::WriteInt64NoTag(int64 value, function WriteUInt32NoTag (line 1283) | inline void WireFormatLite::WriteUInt32NoTag(uint32 value, function WriteUInt64NoTag (line 1287) | inline void WireFormatLite::WriteUInt64NoTag(uint64 value, function WriteSInt32NoTag (line 1291) | inline void WireFormatLite::WriteSInt32NoTag(int32 value, function WriteSInt64NoTag (line 1295) | inline void WireFormatLite::WriteSInt64NoTag(int64 value, function WriteFixed32NoTag (line 1299) | inline void WireFormatLite::WriteFixed32NoTag(uint32 value, function WriteFixed64NoTag (line 1303) | inline void WireFormatLite::WriteFixed64NoTag(uint64 value, function WriteSFixed32NoTag (line 1307) | inline void WireFormatLite::WriteSFixed32NoTag(int32 value, function WriteSFixed64NoTag (line 1311) | inline void WireFormatLite::WriteSFixed64NoTag(int64 value, function WriteFloatNoTag (line 1315) | inline void WireFormatLite::WriteFloatNoTag(float value, function WriteDoubleNoTag (line 1319) | inline void WireFormatLite::WriteDoubleNoTag(double value, function WriteBoolNoTag (line 1323) | inline void WireFormatLite::WriteBoolNoTag(bool value, function WriteEnumNoTag (line 1327) | inline void WireFormatLite::WriteEnumNoTag(int value, function WriteGroupNoVirtual (line 1335) | void WireFormatLite::WriteGroupNoVirtual( function WriteMessageNoVirtual (line 1343) | void WireFormatLite::WriteMessageNoVirtual( function uint8 (line 1354) | inline uint8* WireFormatLite::WriteTagToArray(int field_number, WireType... function uint8 (line 1360) | inline uint8* WireFormatLite::WriteInt32NoTagToArray(int32 value, function uint8 (line 1364) | inline uint8* WireFormatLite::WriteInt64NoTagToArray(int64 value, function uint8 (line 1369) | inline uint8* WireFormatLite::WriteUInt32NoTagToArray(uint32 value, function uint8 (line 1373) | inline uint8* WireFormatLite::WriteUInt64NoTagToArray(uint64 value, function uint8 (line 1377) | inline uint8* WireFormatLite::WriteSInt32NoTagToArray(int32 value, function uint8 (line 1382) | inline uint8* WireFormatLite::WriteSInt64NoTagToArray(int64 value, function uint8 (line 1387) | inline uint8* WireFormatLite::WriteFixed32NoTagToArray(uint32 value, function uint8 (line 1391) | inline uint8* WireFormatLite::WriteFixed64NoTagToArray(uint64 value, function uint8 (line 1395) | inline uint8* WireFormatLite::WriteSFixed32NoTagToArray(int32 value, function uint8 (line 1400) | inline uint8* WireFormatLite::WriteSFixed64NoTagToArray(int64 value, function uint8 (line 1405) | inline uint8* WireFormatLite::WriteFloatNoTagToArray(float value, function uint8 (line 1410) | inline uint8* WireFormatLite::WriteDoubleNoTagToArray(double value, function uint8 (line 1415) | inline uint8* WireFormatLite::WriteBoolNoTagToArray(bool value, uint8* t... function uint8 (line 1418) | inline uint8* WireFormatLite::WriteEnumNoTagToArray(int value, uint8* ta... function uint8 (line 1455) | inline uint8* WireFormatLite::WriteInt32NoTagToArray( function uint8 (line 1459) | inline uint8* WireFormatLite::WriteInt64NoTagToArray( function uint8 (line 1463) | inline uint8* WireFormatLite::WriteUInt32NoTagToArray( function uint8 (line 1467) | inline uint8* WireFormatLite::WriteUInt64NoTagToArray( function uint8 (line 1471) | inline uint8* WireFormatLite::WriteSInt32NoTagToArray( function uint8 (line 1475) | inline uint8* WireFormatLite::WriteSInt64NoTagToArray( function uint8 (line 1479) | inline uint8* WireFormatLite::WriteFixed32NoTagToArray( function uint8 (line 1483) | inline uint8* WireFormatLite::WriteFixed64NoTagToArray( function uint8 (line 1487) | inline uint8* WireFormatLite::WriteSFixed32NoTagToArray( function uint8 (line 1491) | inline uint8* WireFormatLite::WriteSFixed64NoTagToArray( function uint8 (line 1495) | inline uint8* WireFormatLite::WriteFloatNoTagToArray( function uint8 (line 1499) | inline uint8* WireFormatLite::WriteDoubleNoTagToArray( function uint8 (line 1503) | inline uint8* WireFormatLite::WriteBoolNoTagToArray( function uint8 (line 1507) | inline uint8* WireFormatLite::WriteEnumNoTagToArray( function uint8 (line 1512) | inline uint8* WireFormatLite::WriteInt32ToArray(int field_number, int32 ... function uint8 (line 1517) | inline uint8* WireFormatLite::WriteInt64ToArray(int field_number, int64 ... function uint8 (line 1522) | inline uint8* WireFormatLite::WriteUInt32ToArray(int field_number, uint3... function uint8 (line 1527) | inline uint8* WireFormatLite::WriteUInt64ToArray(int field_number, uint6... function uint8 (line 1532) | inline uint8* WireFormatLite::WriteSInt32ToArray(int field_number, int32... function uint8 (line 1537) | inline uint8* WireFormatLite::WriteSInt64ToArray(int field_number, int64... function uint8 (line 1542) | inline uint8* WireFormatLite::WriteFixed32ToArray(int field_number, function uint8 (line 1547) | inline uint8* WireFormatLite::WriteFixed64ToArray(int field_number, function uint8 (line 1552) | inline uint8* WireFormatLite::WriteSFixed32ToArray(int field_number, function uint8 (line 1557) | inline uint8* WireFormatLite::WriteSFixed64ToArray(int field_number, function uint8 (line 1562) | inline uint8* WireFormatLite::WriteFloatToArray(int field_number, float ... function uint8 (line 1567) | inline uint8* WireFormatLite::WriteDoubleToArray(int field_number, doubl... function uint8 (line 1572) | inline uint8* WireFormatLite::WriteBoolToArray(int field_number, bool va... function uint8 (line 1577) | inline uint8* WireFormatLite::WriteEnumToArray(int field_number, int value, function uint8 (line 1601) | inline uint8* WireFormatLite::WriteInt32ToArray( function uint8 (line 1605) | inline uint8* WireFormatLite::WriteInt64ToArray( function uint8 (line 1609) | inline uint8* WireFormatLite::WriteUInt32ToArray( function uint8 (line 1613) | inline uint8* WireFormatLite::WriteUInt64ToArray( function uint8 (line 1617) | inline uint8* WireFormatLite::WriteSInt32ToArray( function uint8 (line 1621) | inline uint8* WireFormatLite::WriteSInt64ToArray( function uint8 (line 1625) | inline uint8* WireFormatLite::WriteFixed32ToArray( function uint8 (line 1630) | inline uint8* WireFormatLite::WriteFixed64ToArray( function uint8 (line 1635) | inline uint8* WireFormatLite::WriteSFixed32ToArray( function uint8 (line 1640) | inline uint8* WireFormatLite::WriteSFixed64ToArray( function uint8 (line 1645) | inline uint8* WireFormatLite::WriteFloatToArray( function uint8 (line 1649) | inline uint8* WireFormatLite::WriteDoubleToArray( function uint8 (line 1653) | inline uint8* WireFormatLite::WriteBoolToArray(int field_number, function uint8 (line 1658) | inline uint8* WireFormatLite::WriteEnumToArray(int field_number, function uint8 (line 1663) | inline uint8* WireFormatLite::WriteStringToArray(int field_number, function uint8 (line 1673) | inline uint8* WireFormatLite::WriteBytesToArray(int field_number, function EpsCopyOutputStream (line 1684) | EpsCopyOutputStream* stream) { function EpsCopyOutputStream (line 1693) | EpsCopyOutputStream* stream) { function Int32Size (line 1727) | inline size_t WireFormatLite::Int32Size(int32 value) { function Int64Size (line 1730) | inline size_t WireFormatLite::Int64Size(int64 value) { function UInt32Size (line 1733) | inline size_t WireFormatLite::UInt32Size(uint32 value) { function UInt64Size (line 1736) | inline size_t WireFormatLite::UInt64Size(uint64 value) { function SInt32Size (line 1739) | inline size_t WireFormatLite::SInt32Size(int32 value) { function SInt64Size (line 1742) | inline size_t WireFormatLite::SInt64Size(int64 value) { function EnumSize (line 1745) | inline size_t WireFormatLite::EnumSize(int value) { function StringSize (line 1749) | inline size_t WireFormatLite::StringSize(const std::string& value) { function BytesSize (line 1752) | inline size_t WireFormatLite::BytesSize(const std::string& value) { function GroupSize (line 1758) | size_t WireFormatLite::GroupSize(const MessageType& value) { function MessageSize (line 1762) | size_t WireFormatLite::MessageSize(const MessageType& value) { function GroupSizeNoVirtual (line 1769) | size_t WireFormatLite::GroupSizeNoVirtual( function MessageSizeNoVirtual (line 1774) | size_t WireFormatLite::MessageSizeNoVirtual( function LengthDelimitedSize (line 1780) | inline size_t WireFormatLite::LengthDelimitedSize(size_t length) { FILE: third_party/protobuf-lite/implicit_weak_message.cc type google (line 40) | namespace google { type protobuf (line 41) | namespace protobuf { type internal (line 42) | namespace internal { function InitImplicitWeakMessageDefaultInstance (line 53) | void InitImplicitWeakMessageDefaultInstance() { function ImplicitWeakMessage (line 57) | const ImplicitWeakMessage* ImplicitWeakMessage::default_instance() { FILE: third_party/protobuf-lite/int128.cc type google (line 41) | namespace google { type protobuf (line 42) | namespace protobuf { function Fls64 (line 62) | static inline int Fls64(uint64 n) { function Fls128 (line 76) | static inline int Fls128(uint128 n) { function uint128 (line 113) | uint128& uint128::operator/=(const uint128& divisor) { function uint128 (line 120) | uint128& uint128::operator%=(const uint128& divisor) { FILE: third_party/protobuf-lite/io_win32.cc type google (line 74) | namespace google { type protobuf (line 75) | namespace protobuf { type io (line 76) | namespace io { type win32 (line 77) | namespace win32 { type CharTraits (line 84) | struct CharTraits { type CharTraits (line 89) | struct CharTraits { method is_alpha (line 90) | static bool is_alpha(char ch) { return isalpha(ch); } type CharTraits (line 94) | struct CharTraits { method is_alpha (line 95) | static bool is_alpha(wchar_t ch) { return iswalpha(ch); } function null_or_empty (line 99) | bool null_or_empty(const char_type* s) { function has_drive_letter (line 108) | bool has_drive_letter(const char_type* ch) { function has_longpath_prefix (line 114) | bool has_longpath_prefix(const char_type* path) { function is_separator (line 120) | bool is_separator(char_type c) { function is_path_absolute (line 126) | bool is_path_absolute(const char_type* path) { function is_drive_relative (line 131) | bool is_drive_relative(const char_type* path) { function wstring (line 135) | wstring join_paths(const wstring& path1, const wstring& path2) { function wstring (line 153) | wstring normalize(wstring path) { function as_windows_path (line 215) | bool as_windows_path(const char* path, wstring* result) { function open (line 256) | int open(const char* path, int flags, int mode) { function mkdir (line 269) | int mkdir(const char* path, int _mode) { function access (line 282) | int access(const char* path, int mode) { function chdir (line 295) | int chdir(const char* path) { function stat (line 308) | int stat(const char* path, struct _stat* buffer) { function FILE (line 321) | FILE* fopen(const char* path, const char* mode) { function close (line 343) | int close(int fd) { return ::_close(fd); } function dup (line 345) | int dup(int fd) { return ::_dup(fd); } function dup2 (line 347) | int dup2(int fd1, int fd2) { return ::_dup2(fd1, fd2); } function read (line 349) | int read(int fd, void* buffer, size_t size) { function setmode (line 353) | int setmode(int fd, int mode) { return ::_setmode(fd, mode); } function write (line 355) | int write(int fd, const void* buffer, size_t size) { function wstring (line 359) | wstring testonly_utf8_to_winpath(const char* path) { function ExpandWildcardsResult (line 364) | ExpandWildcardsResult ExpandWildcards( type strings (line 414) | namespace strings { function wcs_to_mbs (line 416) | bool wcs_to_mbs(const WCHAR* s, string* out, bool outUtf8) { function mbs_to_wcs (line 437) | bool mbs_to_wcs(const char* s, wstring* out, bool inUtf8) { function utf8_to_wcs (line 456) | bool utf8_to_wcs(const char* input, wstring* out) { function wcs_to_utf8 (line 460) | bool wcs_to_utf8(const wchar_t* input, string* out) { FILE: third_party/protobuf-lite/message_lite.cc type google (line 60) | namespace google { type protobuf (line 61) | namespace protobuf { function ByteSizeConsistencyError (line 80) | void ByteSizeConsistencyError(size_t byte_size_before_serialization, function InitializationErrorMessage (line 95) | std::string InitializationErrorMessage(const char* action, function StringPiece (line 116) | inline StringPiece as_string_view(const void* data, int size) { function CheckFieldPresence (line 121) | inline bool CheckFieldPresence(const internal::ParseContext& ctx, type internal (line 136) | namespace internal { function MergeFromImpl (line 139) | bool MergeFromImpl(StringPiece input, MessageLite* msg, function MergeFromImpl (line 153) | bool MergeFromImpl(io::ZeroCopyInputStream* input, MessageLite* msg, function MergeFromImpl (line 167) | bool MergeFromImpl(BoundedZCIS input, MessageLite* msg, function MessageLite (line 517) | MessageLite* GenericTypeHandler::NewFromPrototype( type ShutdownData (line 540) | struct ShutdownData { method ShutdownData (line 546) | static ShutdownData* get() { function RunZeroArgFunc (line 555) | static void RunZeroArgFunc(const void* arg) { function OnShutdown (line 560) | void OnShutdown(void (*func)()) { function OnShutdownRun (line 564) | void OnShutdownRun(void (*f)(const void*), const void* arg) { function MessageLite (line 198) | MessageLite* MessageLite::New(Arena* arena) const { class ZeroCopyCodedInputStream (line 206) | class ZeroCopyCodedInputStream : public io::ZeroCopyInputStream { method ZeroCopyCodedInputStream (line 208) | ZeroCopyCodedInputStream(io::CodedInputStream* cis) : cis_(cis) {} method Next (line 209) | bool Next(const void** data, int* size) final { method BackUp (line 214) | void BackUp(int count) final { cis_->Advance(-count); } method Skip (line 215) | bool Skip(int count) final { return cis_->Skip(count); } method ByteCount (line 216) | int64_t ByteCount() const final { return 0; } method aliasing_enabled (line 218) | bool aliasing_enabled() { return cis_->aliasing_enabled_; } function uint8 (line 339) | inline uint8* SerializeToArrayImpl(const MessageLite& msg, uint8* ta... function uint8 (line 365) | uint8* MessageLite::SerializeWithCachedSizesToArray(uint8* target) c... type internal (line 514) | namespace internal { function MergeFromImpl (line 139) | bool MergeFromImpl(StringPiece input, MessageLite* msg, function MergeFromImpl (line 153) | bool MergeFromImpl(io::ZeroCopyInputStream* input, MessageLite* msg, function MergeFromImpl (line 167) | bool MergeFromImpl(BoundedZCIS input, MessageLite* msg, function MessageLite (line 517) | MessageLite* GenericTypeHandler::NewFromPrototype( type ShutdownData (line 540) | struct ShutdownData { method ShutdownData (line 546) | static ShutdownData* get() { function RunZeroArgFunc (line 555) | static void RunZeroArgFunc(const void* arg) { function OnShutdown (line 560) | void OnShutdown(void (*func)()) { function OnShutdownRun (line 564) | void OnShutdownRun(void (*f)(const void*), const void* arg) { type internal (line 538) | namespace internal { function MergeFromImpl (line 139) | bool MergeFromImpl(StringPiece input, MessageLite* msg, function MergeFromImpl (line 153) | bool MergeFromImpl(io::ZeroCopyInputStream* input, MessageLite* msg, function MergeFromImpl (line 167) | bool MergeFromImpl(BoundedZCIS input, MessageLite* msg, function MessageLite (line 517) | MessageLite* GenericTypeHandler::NewFromPrototype( type ShutdownData (line 540) | struct ShutdownData { method ShutdownData (line 546) | static ShutdownData* get() { function RunZeroArgFunc (line 555) | static void RunZeroArgFunc(const void* arg) { function OnShutdown (line 560) | void OnShutdown(void (*func)()) { function OnShutdownRun (line 564) | void OnShutdownRun(void (*f)(const void*), const void* arg) { function ShutdownProtobufLibrary (line 572) | void ShutdownProtobufLibrary() { FILE: third_party/protobuf-lite/parse_context.cc type google (line 44) | namespace google { type protobuf (line 45) | namespace protobuf { type internal (line 46) | namespace internal { function ParseEndsInSlopRegion (line 51) | bool ParseEndsInSlopRegion(const char* begin, int overrun, int dep... function WriteVarint (line 337) | inline void WriteVarint(uint64 val, std::string* s) { function WriteVarint (line 346) | void WriteVarint(uint32 num, uint64 val, std::string* s) { function WriteLengthDelimited (line 351) | void WriteLengthDelimited(uint32 num, StringPiece val, std::string... function VarintParseSlow32 (line 357) | std::pair VarintParseSlow32(const char* p, ui... function VarintParseSlow64 (line 375) | std::pair VarintParseSlow64(const char* p, ui... function ReadTagFallback (line 387) | std::pair ReadTagFallback(const char* p, uint... function ReadSizeFallback (line 398) | std::pair ReadSizeFallback(const char* p, uint... function VerifyUTF8 (line 429) | bool VerifyUTF8(StringPiece str, const char* field_name) { class UnknownFieldLiteParserHelper (line 528) | class UnknownFieldLiteParserHelper { method UnknownFieldLiteParserHelper (line 530) | explicit UnknownFieldLiteParserHelper(std::string* unknown) method AddVarint (line 533) | void AddVarint(uint32 num, uint64 value) { method AddFixed64 (line 538) | void AddFixed64(uint32 num, uint64 value) { method AddFixed32 (line 562) | void AddFixed32(uint32 num, uint32 value) { FILE: third_party/protobuf-lite/repeated_field.cc type google (line 45) | namespace google { type protobuf (line 46) | namespace protobuf { type internal (line 48) | namespace internal { function MessageLite (line 108) | MessageLite* RepeatedPtrFieldBase::AddWeak(const MessageLite* prot... class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 126) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 127) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 128) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 129) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 130) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 131) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 132) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE class PROTOBUF_EXPORT_TEMPLATE_DEFINE (line 133) | class PROTOBUF_EXPORT_TEMPLATE_DEFINE FILE: third_party/protobuf-lite/status.cc type google (line 37) | namespace google { type protobuf (line 38) | namespace protobuf { type util (line 39) | namespace util { type error (line 40) | namespace error { function CodeEnumToString (line 41) | inline std::string CodeEnumToString(error::Code code) { function Status (line 103) | Status& Status::operator=(const Status& other) { FILE: third_party/protobuf-lite/statusor.cc type google (line 35) | namespace google { type protobuf (line 36) | namespace protobuf { type util (line 37) | namespace util { type internal (line 38) | namespace internal { FILE: third_party/protobuf-lite/stringpiece.cc type google (line 40) | namespace google { type protobuf (line 41) | namespace protobuf { function stringpiece_ssize_type (line 92) | stringpiece_ssize_type StringPiece::copy(char* buf, function stringpiece_ssize_type (line 104) | stringpiece_ssize_type StringPiece::find(StringPiece s, size_type po... function stringpiece_ssize_type (line 114) | stringpiece_ssize_type StringPiece::find(char c, size_type pos) const { function stringpiece_ssize_type (line 123) | stringpiece_ssize_type StringPiece::rfind(StringPiece s, size_type p... function stringpiece_ssize_type (line 134) | stringpiece_ssize_type StringPiece::rfind(char c, size_type pos) con... function BuildLookupTable (line 155) | static inline void BuildLookupTable(StringPiece characters_wanted, function stringpiece_ssize_type (line 164) | stringpiece_ssize_type StringPiece::find_first_of(StringPiece s, function stringpiece_ssize_type (line 182) | stringpiece_ssize_type StringPiece::find_first_not_of(StringPiece s, function stringpiece_ssize_type (line 199) | stringpiece_ssize_type StringPiece::find_first_not_of(char c, function stringpiece_ssize_type (line 211) | stringpiece_ssize_type StringPiece::find_last_of(StringPiece s, function stringpiece_ssize_type (line 228) | stringpiece_ssize_type StringPiece::find_last_not_of(StringPiece s, function stringpiece_ssize_type (line 248) | stringpiece_ssize_type StringPiece::find_last_not_of(char c, function StringPiece (line 261) | StringPiece StringPiece::substr(size_type pos, size_type n) const { FILE: third_party/protobuf-lite/stringprintf.cc type google (line 43) | namespace google { type protobuf (line 44) | namespace protobuf { function StringAppendV (line 57) | void StringAppendV(std::string* dst, const char* format, va_list ap) { function StringPrintf (line 108) | std::string StringPrintf(const char* format, ...) { function StringAppendF (line 126) | void StringAppendF(std::string* dst, const char* format, ...) { function StringPrintfVector (line 141) | std::string StringPrintfVector(const char* format, FILE: third_party/protobuf-lite/structurally_valid.cc type google (line 37) | namespace google { type protobuf (line 38) | namespace protobuf { type internal (line 39) | namespace internal { type RemapEntry (line 44) | struct RemapEntry { function InStateZero (line 379) | static inline bool InStateZero(const UTF8ScanObj* st, const uint8*... function UTF8GenericScan (line 387) | int UTF8GenericScan(const UTF8ScanObj* st, function UTF8GenericScanFastAscii (line 496) | int UTF8GenericScanFastAscii(const UTF8ScanObj* st, type InitDetector (line 546) | struct InitDetector { method InitDetector (line 547) | InitDetector() { function IsStructurallyValidUTF8 (line 555) | bool IsStructurallyValidUTF8(const char* buf, int len) { function UTF8SpnStructurallyValid (line 564) | int UTF8SpnStructurallyValid(StringPiece str) { FILE: third_party/protobuf-lite/strutil.cc type google (line 60) | namespace google { type protobuf (line 61) | namespace protobuf { function isxdigit (line 72) | inline bool isxdigit(char c) { function isprint (line 78) | inline bool isprint(char c) { function ReplaceCharacters (line 87) | void ReplaceCharacters(std::string *s, const char *remove, char repl... function StripWhitespace (line 97) | void StripWhitespace(std::string *str) { function StringReplace (line 132) | void StringReplace(const std::string &s, const std::string &oldsub, function StringReplace (line 163) | std::string StringReplace(const std::string &s, const std::string &o... function SplitStringToIteratorUsing (line 179) | static inline void SplitStringToIteratorUsing(StringPiece full, function SplitStringUsing (line 212) | void SplitStringUsing(StringPiece full, const char *delim, function SplitStringToIteratorAllowEmpty (line 230) | static inline void SplitStringToIteratorAllowEmpty(StringPiece full, function SplitStringAllowEmpty (line 249) | void SplitStringAllowEmpty(StringPiece full, const char *delim, function JoinStringsIterator (line 262) | static void JoinStringsIterator(const ITERATOR &start, const ITERATO... function JoinStrings (line 287) | void JoinStrings(const std::vector &components, const c... function UnescapeCEscapeSequences (line 310) | int UnescapeCEscapeSequences(const char* source, char* dest) { function UnescapeCEscapeSequences (line 314) | int UnescapeCEscapeSequences(const char *source, char *dest, function UnescapeCEscapeString (line 448) | int UnescapeCEscapeString(const std::string &src, std::string *dest) { function UnescapeCEscapeString (line 452) | int UnescapeCEscapeString(const std::string &src, std::string *dest, function UnescapeCEscapeString (line 461) | std::string UnescapeCEscapeString(const std::string &src) { function CEscapeInternal (line 479) | int CEscapeInternal(const char* src, int src_len, char* dest, function CEscapedLength (line 527) | static inline size_t CEscapedLength(StringPiece src) { function CEscapeAndAppend (line 561) | void CEscapeAndAppend(StringPiece src, std::string *dest) { function CEscape (line 595) | std::string CEscape(const std::string &src) { type strings (line 601) | namespace strings { function Utf8SafeCEscape (line 603) | std::string Utf8SafeCEscape(const std::string &src) { function CHexEscape (line 612) | std::string CHexEscape(const std::string &src) { function int32 (line 631) | int32 strto32_adaptor(const char *nptr, char **endptr, int base) { function uint32 (line 651) | uint32 strtou32_adaptor(const char *nptr, char **endptr, int base) { function safe_parse_sign (line 666) | inline bool safe_parse_sign(std::string *text /*inout*/, function safe_parse_positive_int (line 695) | bool safe_parse_positive_int(std::string text, IntType *value_p) { function safe_parse_negative_int (line 728) | bool safe_parse_negative_int(const std::string &text, IntType *value... function safe_int_internal (line 768) | bool safe_int_internal(std::string text, IntType *value_p) { function safe_uint_internal (line 782) | bool safe_uint_internal(std::string text, IntType *value_p) { function SimpleItoa (line 1116) | std::string SimpleItoa(int i) { function SimpleItoa (line 1123) | std::string SimpleItoa(unsigned int i) { function SimpleItoa (line 1130) | std::string SimpleItoa(long i) { function SimpleItoa (line 1137) | std::string SimpleItoa(unsigned long i) { function SimpleItoa (line 1144) | std::string SimpleItoa(long long i) { function SimpleItoa (line 1151) | std::string SimpleItoa(unsigned long long i) { function SimpleDtoa (line 1199) | std::string SimpleDtoa(double value) { function SimpleFtoa (line 1204) | std::string SimpleFtoa(float value) { function IsValidFloatChar (line 1209) | static inline bool IsValidFloatChar(char c) { function DelocalizeRadix (line 1215) | void DelocalizeRadix(char* buffer) { function memcasecmp (line 1286) | static int memcasecmp(const char *s1, const char *s2, size_t len) { function CaseEqual (line 1299) | inline bool CaseEqual(StringPiece s1, StringPiece s2) { function safe_strtob (line 1304) | bool safe_strtob(StringPiece str, bool* value) { function safe_strtof (line 1321) | bool safe_strtof(const char* str, float* value) { function safe_strtod (line 1332) | bool safe_strtod(const char* str, double* value) { function safe_strto32 (line 1344) | bool safe_strto32(const std::string &str, int32 *value) { function safe_strtou32 (line 1348) | bool safe_strtou32(const std::string &str, uint32 *value) { function safe_strto64 (line 1352) | bool safe_strto64(const std::string &str, int64 *value) { function safe_strtou64 (line 1356) | bool safe_strtou64(const std::string &str, uint64 *value) { type strings (line 1398) | namespace strings { function Utf8SafeCEscape (line 603) | std::string Utf8SafeCEscape(const std::string &src) { function CHexEscape (line 612) | std::string CHexEscape(const std::string &src) { function StrCat (line 1472) | std::string StrCat(const AlphaNum &a, const AlphaNum &b) { function StrCat (line 1481) | std::string StrCat(const AlphaNum &a, const AlphaNum &b, const Alpha... function StrCat (line 1491) | std::string StrCat(const AlphaNum &a, const AlphaNum &b, const Alpha... function StrCat (line 1501) | std::string StrCat(const AlphaNum &a, const AlphaNum &b, const Alpha... function StrCat (line 1512) | std::string StrCat(const AlphaNum &a, const AlphaNum &b, const Alpha... function StrCat (line 1524) | std::string StrCat(const AlphaNum &a, const AlphaNum &b, const Alpha... function StrCat (line 1538) | std::string StrCat(const AlphaNum &a, const AlphaNum &b, const Alpha... function StrCat (line 1551) | std::string StrCat(const AlphaNum &a, const AlphaNum &b, const Alpha... function StrAppend (line 1573) | void StrAppend(std::string *result, const AlphaNum &a) { function StrAppend (line 1578) | void StrAppend(std::string *result, const AlphaNum &a, const AlphaNu... function StrAppend (line 1588) | void StrAppend(std::string *result, const AlphaNum &a, const AlphaNu... function StrAppend (line 1601) | void StrAppend(std::string *result, const AlphaNum &a, const AlphaNu... function GlobalReplaceSubstring (line 1614) | int GlobalReplaceSubstring(const std::string &substring, function CalculateBase64EscapedLen (line 1640) | int CalculateBase64EscapedLen(int input_len, bool do_padding) { function CalculateBase64EscapedLen (line 1688) | int CalculateBase64EscapedLen(int input_len) { function Base64UnescapeInternal (line 1716) | int Base64UnescapeInternal(const char *src_param, int szsrc, function WebSafeBase64Unescape (line 2050) | int WebSafeBase64Unescape(const char *src, int szsrc, char *dest, in... function Base64UnescapeInternal (line 2054) | static bool Base64UnescapeInternal(const char *src, int slen, std::s... function Base64Unescape (line 2079) | bool Base64Unescape(StringPiece src, std::string *dest) { function WebSafeBase64Unescape (line 2083) | bool WebSafeBase64Unescape(StringPiece src, std::string *dest) { function Base64EscapeInternal (line 2087) | int Base64EscapeInternal(const unsigned char *src, int szsrc, function Base64Escape (line 2193) | int Base64Escape(const unsigned char *src, int szsrc, char *dest, in... function WebSafeBase64Escape (line 2196) | int WebSafeBase64Escape(const unsigned char *src, int szsrc, char *d... function Base64EscapeInternal (line 2202) | void Base64EscapeInternal(const unsigned char *src, int szsrc, function Base64Escape (line 2217) | void Base64Escape(const unsigned char *src, int szsrc, std::string *... function WebSafeBase64Escape (line 2222) | void WebSafeBase64Escape(const unsigned char *src, int szsrc, std::s... function Base64Escape (line 2227) | void Base64Escape(StringPiece src, std::string *dest) { function WebSafeBase64Escape (line 2232) | void WebSafeBase64Escape(StringPiece src, std::string *dest) { function WebSafeBase64EscapeWithPadding (line 2237) | void WebSafeBase64EscapeWithPadding(StringPiece src, std::string *de... function EncodeAsUTF8Char (line 2244) | int EncodeAsUTF8Char(uint32 code_point, char* output) { function UTF8FirstLetterNumBytes (line 2293) | int UTF8FirstLetterNumBytes(const char* src, int len) { function CleanStringLineEndings (line 2333) | void CleanStringLineEndings(const std::string &src, std::string *dst, function CleanStringLineEndings (line 2345) | void CleanStringLineEndings(std::string *str, bool auto_end_last_lin... type internal (line 2405) | namespace internal { function LocalizeRadix (line 2417) | std::string LocalizeRadix(const char *input, const char *radix_pos) { function NoLocaleStrtod (line 2440) | double NoLocaleStrtod(const char *str, char **endptr) { FILE: third_party/protobuf-lite/time.cc type google (line 8) | namespace google { type protobuf (line 9) | namespace protobuf { type internal (line 10) | namespace internal { function int64 (line 29) | int64 SecondsPer100Years(int year) { function int64 (line 39) | int64 SecondsPer4Years(int year) { function IsLeapYear (line 50) | bool IsLeapYear(int year) { function int64 (line 54) | int64 SecondsPerYear(int year) { function int64 (line 62) | int64 SecondsPerMonth(int month, bool leap) { function ValidateDateTime (line 73) | bool ValidateDateTime(const DateTime& time) { function int64 (line 91) | int64 SecondsSinceCommonEra(const DateTime& time) { function FormatNanos (line 133) | std::string FormatNanos(int32 nanos) { function SecondsToDateTime (line 211) | bool SecondsToDateTime(int64 seconds, DateTime* time) { function DateTimeToSeconds (line 256) | bool DateTimeToSeconds(const DateTime& time, int64* seconds) { function GetCurrentTime (line 264) | void GetCurrentTime(int64* seconds, int32* nanos) { function FormatTime (line 271) | std::string FormatTime(int64 seconds, int32 nanos) { function ParseTime (line 285) | bool ParseTime(const std::string& value, int64* seconds, int32* na... FILE: third_party/protobuf-lite/wire_format_lite.cc type google (line 51) | namespace google { type protobuf (line 52) | namespace protobuf { type internal (line 53) | namespace internal { function EncodeFixedSizeValue (line 322) | void EncodeFixedSizeValue(float v, uint8* dest) { function EncodeFixedSizeValue (line 326) | void EncodeFixedSizeValue(double v, uint8* dest) { function EncodeFixedSizeValue (line 330) | void EncodeFixedSizeValue(uint32 v, uint8* dest) { function EncodeFixedSizeValue (line 334) | void EncodeFixedSizeValue(uint64 v, uint8* dest) { function EncodeFixedSizeValue (line 338) | void EncodeFixedSizeValue(int32 v, uint8* dest) { function EncodeFixedSizeValue (line 342) | void EncodeFixedSizeValue(int64 v, uint8* dest) { function EncodeFixedSizeValue (line 346) | void EncodeFixedSizeValue(bool v, uint8* dest) { function WriteArray (line 354) | static void WriteArray(const CType* a, int n, io::CodedOutputStrea... function ReadBytesToString (line 552) | inline static bool ReadBytesToString(io::CodedInputStream* input, function PrintUTF8ErrorLog (line 570) | void PrintUTF8ErrorLog(const char* field_name, const char* operati... function VarintSize (line 605) | static size_t VarintSize(const T* data, const int n) { function VarintSize64 (line 640) | static size_t VarintSize64(const T* data, const int n) { FILE: third_party/protobuf-lite/zero_copy_stream.cc type google (line 40) | namespace google { type protobuf (line 41) | namespace protobuf { type io (line 42) | namespace io { FILE: third_party/protobuf-lite/zero_copy_stream_impl.cc type google (line 53) | namespace google { type protobuf (line 54) | namespace protobuf { type io (line 55) | namespace io { function close_no_eintr (line 73) | int close_no_eintr(int fd) { FILE: third_party/protobuf-lite/zero_copy_stream_impl_lite.cc type google (line 45) | namespace google { type protobuf (line 46) | namespace protobuf { type io (line 47) | namespace io {