├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── README.md ├── en │ ├── README.md │ ├── dg │ │ ├── README.md │ │ ├── all-labels-list.md │ │ ├── debug-grammar.md │ │ ├── example.md │ │ ├── gazetteer-syntax.md │ │ ├── grammemes-values.md │ │ ├── images │ │ │ └── debughtml.png │ │ ├── interpretation.md │ │ ├── labels-limits.md │ │ ├── link.md │ │ ├── overview.md │ │ ├── rules.md │ │ ├── run-parser.md │ │ ├── syntax-grammars.md │ │ ├── syntax-labels.md │ │ ├── terminals-list.md │ │ └── unobvious-solutions.md │ └── tutorial │ │ ├── README.md │ │ ├── basic-rules.md │ │ ├── images │ │ ├── dategagarin.png │ │ ├── tut1_po.png │ │ ├── tut1_po2.png │ │ ├── tut2_po1.png │ │ ├── tut2_po2.png │ │ ├── tut2_po3.png │ │ ├── tut2_po4.png │ │ ├── tut2_po5.png │ │ └── tut2_po6.png │ │ ├── include.md │ │ ├── interpretation.md │ │ ├── kwtype.md │ │ ├── limits-fields.md │ │ ├── limits-labels.md │ │ ├── mainword.md │ │ ├── operators.md │ │ ├── pattern.md │ │ └── source-files.md └── ru │ ├── README.md │ ├── dg │ ├── README.md │ ├── all-labels-list.md │ ├── debug-grammar.md │ ├── example.md │ ├── gazetteer-syntax.md │ ├── grammemes-values.md │ ├── images │ │ └── debughtml.png │ ├── interpretation.md │ ├── labels-limits.md │ ├── link.md │ ├── overview.md │ ├── rules.md │ ├── run-parser.md │ ├── syntax-grammars.md │ ├── syntax-labels.md │ ├── terminals-list.md │ └── unobvious-solutions.md │ ├── tutorial │ ├── README.md │ ├── basic-rules.md │ ├── images │ │ ├── dategagarin.png │ │ ├── tut1_po.png │ │ ├── tut1_po2.png │ │ ├── tut2_po1.png │ │ ├── tut2_po2.png │ │ ├── tut2_po3.png │ │ ├── tut2_po4.png │ │ ├── tut2_po5.png │ │ └── tut2_po6.png │ ├── include.md │ ├── interpretation.md │ ├── kwtype.md │ ├── limits-fields.md │ ├── limits-labels.md │ ├── mainword.md │ ├── operators.md │ ├── pattern.md │ └── source-files.md │ └── video │ └── README.md ├── examples ├── algfio │ ├── config.proto │ ├── facttypes.proto │ ├── mydic.gzt │ ├── people.cxx │ └── test.txt ├── bornin │ ├── bornin.cxx │ ├── config.proto │ ├── dic.gzt │ ├── facttypes.proto │ ├── kwtypes_my.proto │ └── test.txt ├── factxml.xsd ├── minimal │ ├── config.proto │ └── mydic.gzt ├── parsefacts │ ├── C++ │ │ ├── Makefile │ │ ├── main.cpp │ │ └── readme.md │ ├── Perl │ │ └── parsefacts.pl │ ├── Python │ │ ├── generate.sh │ │ └── parsefacts.py │ ├── Ruby │ │ ├── generate.sh │ │ └── parsefacts.rb │ └── facts.proto ├── sample │ ├── config.proto │ ├── date.cxx │ ├── facttypes.proto │ ├── film.cxx │ ├── genre.gzt │ ├── input.txt │ └── mydic.gzt ├── tutorial1 │ ├── config.proto │ ├── first.cxx │ ├── mydic.gzt │ └── test.txt ├── tutorial2 │ ├── adjperson.cxx │ ├── config.proto │ ├── mydic.gzt │ ├── test1.txt │ ├── test2.txt │ └── test3.txt ├── tutorial3 │ ├── config.proto │ ├── fioborn.cxx │ ├── mydic.gzt │ └── test.txt ├── tutorial4 │ ├── config.proto │ ├── date.cxx │ ├── facttypes.proto │ ├── mydic.gzt │ └── test.txt └── tutorial5 │ ├── animals_dict.gzt │ ├── config.proto │ ├── date.cxx │ ├── facttypes.proto │ ├── kwtypes.proto │ ├── main.cxx │ ├── mammals.txt │ ├── mydic.gzt │ └── test.txt ├── src ├── CMakeLists.txt ├── FactExtract │ └── Parser │ │ ├── afdocparser │ │ ├── afdocrusparserielib │ │ │ ├── CMakeLists.txt │ │ │ ├── afdocrusie.cpp │ │ │ └── afdocrusie.h │ │ ├── afdocruspureparserlib │ │ │ ├── CMakeLists.txt │ │ │ ├── afdoc.cpp │ │ │ └── afdoc.h │ │ ├── aux_dic_frag │ │ │ ├── CMakeLists.txt │ │ │ ├── aux_dic_conj.txt │ │ │ ├── aux_dic_frag.cpp │ │ │ ├── aux_dic_frag.h │ │ │ ├── aux_dic_pred.txt │ │ │ ├── aux_dic_prep.txt │ │ │ └── aux_dic_template.txt │ │ ├── builtins │ │ │ ├── CMakeLists.txt │ │ │ ├── articles_base.gztproto │ │ │ ├── builtins.cpp │ │ │ ├── builtins.h │ │ │ ├── facttypes_base.gztproto │ │ │ └── kwtypes_base.gztproto │ │ ├── common │ │ │ ├── afdocbase.cpp │ │ │ ├── afdocbase.h │ │ │ ├── afdochtml.cpp │ │ │ ├── afdocsinglelanguage.cpp │ │ │ ├── afdocsinglelanguage.h │ │ │ ├── afdoctext.cpp │ │ │ ├── datetime.h │ │ │ ├── facttypeholder.cpp │ │ │ ├── facttypeholder.h │ │ │ ├── graminfo.cpp │ │ │ ├── graminfo.h │ │ │ ├── gztarticle.cpp │ │ │ ├── gztarticle.h │ │ │ ├── homonymbase.cpp │ │ │ ├── homonymbase.h │ │ │ ├── langdata.cpp │ │ │ ├── langdata.h │ │ │ ├── primitive.cpp │ │ │ ├── primitive.h │ │ │ ├── sentencebase.cpp │ │ │ ├── sentencebase.h │ │ │ ├── textbase.cpp │ │ │ ├── textbase.h │ │ │ ├── wordbase.cpp │ │ │ ├── wordbase.h │ │ │ ├── wordsequence.cpp │ │ │ ├── wordsequence.h │ │ │ ├── wordspair.cpp │ │ │ └── wordspair.h │ │ ├── normalize │ │ │ ├── homonym.cpp │ │ │ ├── homonym.h │ │ │ ├── sequence.cpp │ │ │ └── sequence.h │ │ ├── rus │ │ │ ├── dateprocessor.cpp │ │ │ ├── dateprocessor.h │ │ │ ├── fiowordsequence.h │ │ │ ├── fiowordsequencee.cpp │ │ │ ├── gleiche.cpp │ │ │ ├── gleiche.h │ │ │ ├── homonym.cpp │ │ │ ├── homonym.h │ │ │ ├── morph.cpp │ │ │ ├── morph.h │ │ │ ├── namecluster.cpp │ │ │ ├── namecluster.h │ │ │ ├── namefinder.cpp │ │ │ ├── namefinder.h │ │ │ ├── numberprocessor.cpp │ │ │ ├── numberprocessor.h │ │ │ ├── sentence.cpp │ │ │ ├── sentence.h │ │ │ ├── text.cpp │ │ │ ├── text.h │ │ │ ├── word.cpp │ │ │ ├── word.h │ │ │ ├── wordvector.cpp │ │ │ └── wordvector.h │ │ └── rusie │ │ │ ├── AfDump.xsl │ │ │ ├── afdocplaintextwriter.cpp │ │ │ ├── afdocplaintextwriter.h │ │ │ ├── analyticformbuilder.cpp │ │ │ ├── analyticformbuilder.h │ │ │ ├── anaphoraresolution.cpp │ │ │ ├── anaphoraresolution.h │ │ │ ├── clauseheader.h │ │ │ ├── clausenode.cpp │ │ │ ├── clausenode.h │ │ │ ├── clauserules.cpp │ │ │ ├── clauserules.h │ │ │ ├── clauses.cpp │ │ │ ├── clauses.h │ │ │ ├── clausesubtree.cpp │ │ │ ├── clausesubtree.h │ │ │ ├── clausevariant.cpp │ │ │ ├── clausevariant.h │ │ │ ├── commongrammarinterpretation.cpp │ │ │ ├── commongrammarinterpretation.h │ │ │ ├── datechain.cpp │ │ │ ├── datechain.h │ │ │ ├── dictsholder.cpp │ │ │ ├── dictsholder.h │ │ │ ├── docinsidestatuscluster.cpp │ │ │ ├── docinsidestatuscluster.h │ │ │ ├── extractedfieldsearcher.cpp │ │ │ ├── extractedfieldsearcher.h │ │ │ ├── factaddress.h │ │ │ ├── factfields.cpp │ │ │ ├── factfields.h │ │ │ ├── factgroup.cpp │ │ │ ├── factgroup.h │ │ │ ├── facts │ │ │ ├── CMakeLists.txt │ │ │ └── facts.proto │ │ │ ├── factscollection.cpp │ │ │ ├── factscollection.h │ │ │ ├── factsproto.cpp │ │ │ ├── factsproto.h │ │ │ ├── factsxmlwriter.cpp │ │ │ ├── factsxmlwriter.h │ │ │ ├── filtercheck.cpp │ │ │ ├── filtercheck.h │ │ │ ├── floatingdategroup.cpp │ │ │ ├── floatingdategroup.h │ │ │ ├── fragmentationrunner.cpp │ │ │ ├── fragmentationrunner.h │ │ │ ├── group.cpp │ │ │ ├── group.h │ │ │ ├── groupsubtree.cpp │ │ │ ├── groupsubtree.h │ │ │ ├── gztwrapper.cpp │ │ │ ├── gztwrapper.h │ │ │ ├── interview_fact_creator.cpp │ │ │ ├── interview_fact_creator.h │ │ │ ├── keywordsfinder.cpp │ │ │ ├── keywordsfinder.h │ │ │ ├── leadgenerator.cpp │ │ │ ├── leadgenerator.h │ │ │ ├── multiwordcreator.cpp │ │ │ ├── multiwordcreator.h │ │ │ ├── normalization.cpp │ │ │ ├── normalization.h │ │ │ ├── parseroptions.cpp │ │ │ ├── parseroptions.h │ │ │ ├── periodtree.cpp │ │ │ ├── periodtree.h │ │ │ ├── prettysitwriter.cpp │ │ │ ├── prettysitwriter.h │ │ │ ├── prettywriter.cpp │ │ │ ├── prettywriter.h │ │ │ ├── primitivegroup.cpp │ │ │ ├── primitivegroup.h │ │ │ ├── propnameinquotesfinder.cpp │ │ │ ├── propnameinquotesfinder.h │ │ │ ├── quotesfinder.cpp │ │ │ ├── quotesfinder.h │ │ │ ├── referencesearcher.cpp │ │ │ ├── referencesearcher.h │ │ │ ├── sentencerusprocessor.cpp │ │ │ ├── sentencerusprocessor.h │ │ │ ├── sitfactinterpretation.cpp │ │ │ ├── sitfactinterpretation.h │ │ │ ├── situationssearcher.cpp │ │ │ ├── situationssearcher.h │ │ │ ├── situationssearcherinclause.cpp │ │ │ ├── situationssearcherinclause.h │ │ │ ├── solveperiodambiguity.cpp │ │ │ ├── solveperiodambiguity.h │ │ │ ├── synchain.cpp │ │ │ ├── synchain.h │ │ │ ├── syngroup.cpp │ │ │ ├── syngroup.h │ │ │ ├── terminalsassigner.cpp │ │ │ ├── terminalsassigner.h │ │ │ ├── textprocessor.cpp │ │ │ ├── textprocessor.h │ │ │ ├── textwordsequence.cpp │ │ │ ├── textwordsequence.h │ │ │ ├── tomitachainsearcher.cpp │ │ │ ├── tomitachainsearcher.h │ │ │ ├── tomitaitemsholder.cpp │ │ │ ├── tomitaitemsholder.h │ │ │ ├── topclauses.cpp │ │ │ ├── topclauses.h │ │ │ └── valencyvalues.h │ │ ├── afglrparserlib │ │ ├── CMakeLists.txt │ │ ├── agreement.h │ │ ├── ahokorasick.cpp │ │ ├── ahokorasick.h │ │ ├── commontypes.h │ │ ├── glr.cpp │ │ ├── glr.h │ │ ├── glrtable.cpp │ │ ├── glrtable.h │ │ ├── grammaritem.cpp │ │ ├── grammaritem.h │ │ ├── inputitemfactory.cpp │ │ ├── inputitemfactory.h │ │ ├── inputsequence.cpp │ │ ├── inputsequence.h │ │ ├── loader.cpp │ │ ├── lr-items.cpp │ │ ├── lr-items.h │ │ ├── lr0.cpp │ │ ├── lr0.h │ │ ├── regexp.cpp │ │ ├── simplegrammar.h │ │ ├── sourcegrammar.h │ │ └── sourcegrammarparser.cpp │ │ ├── auxdictlib │ │ ├── CMakeLists.txt │ │ ├── articles_parser.cpp │ │ ├── articles_parser.h │ │ ├── articles_syn_lex.l │ │ ├── articles_syn_yacc.y │ │ ├── dictindex.cpp │ │ ├── dictindex.h │ │ ├── dictionary.cpp │ │ ├── dictionary.h │ │ └── simplelist.h │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── common_constants.cpp │ │ ├── common_constants.h │ │ ├── commonparm.cpp │ │ ├── commonparm.h │ │ ├── dateparser.cpp │ │ ├── dateparser.h │ │ ├── docreaders │ │ │ ├── CMakeLists.txt │ │ │ ├── agencyinforetriever.cpp │ │ │ ├── agencyinforetriever.h │ │ │ ├── docbody.cpp │ │ │ ├── docbody.h │ │ │ ├── docbodybase.cpp │ │ │ ├── docbodybase.h │ │ │ ├── doclistretrieverbase.h │ │ │ ├── doclistretrieverfromdisc.cpp │ │ │ ├── doclistretrieverfromdisc.h │ │ │ ├── docstreambase.cpp │ │ │ ├── docstreambase.h │ │ │ ├── docstreamdisc.cpp │ │ │ ├── docstreamdisc.h │ │ │ ├── onedocreader.cpp │ │ │ ├── onedocreader.h │ │ │ ├── rmltar.cpp │ │ │ ├── rmltar.h │ │ │ ├── somreader.cpp │ │ │ ├── somreader.h │ │ │ ├── sourcedocinfo.h │ │ │ ├── stdindocperlinereader.cpp │ │ │ ├── stdindocperlinereader.h │ │ │ ├── stdinmapreducedocsreader.cpp │ │ │ ├── stdinmapreducedocsreader.h │ │ │ ├── stdinyandexdocsreader.cpp │ │ │ ├── stdinyandexdocsreader.h │ │ │ ├── streamretrieverfacrory.cpp │ │ │ ├── streamretrieverfacrory.h │ │ │ ├── tar.h │ │ │ ├── tararchivereader.cpp │ │ │ └── tararchivereader.h │ │ ├── fact-types.cpp │ │ ├── fact-types.h │ │ ├── gramstr.cpp │ │ ├── gramstr.h │ │ ├── inputitem.cpp │ │ ├── inputitem.h │ │ ├── libxmlutil.cpp │ │ ├── libxmlutil.h │ │ ├── parmbase.cpp │ │ ├── parmbase.h │ │ ├── pathhelper.cpp │ │ ├── pathhelper.h │ │ ├── sdocattributes.h │ │ ├── serializers.h │ │ ├── simplexmlwriter.cpp │ │ ├── simplexmlwriter.h │ │ ├── smartfilefind.cpp │ │ ├── smartfilefind.h │ │ ├── string_tokenizer.h │ │ ├── textminerconfig.proto │ │ ├── timehelper.cpp │ │ ├── timehelper.h │ │ ├── toma_constants.cpp │ │ ├── toma_constants.h │ │ ├── utilit.cpp │ │ ├── utilit.h │ │ └── wordhomonymnum.h │ │ ├── geo_hierarchy │ │ ├── CMakeLists.txt │ │ ├── abstract.h │ │ ├── geo_hierarchy.cpp │ │ ├── geo_hierarchy.h │ │ └── helpers.h │ │ ├── inflectorlib │ │ ├── CMakeLists.txt │ │ ├── better.h │ │ ├── complexword.cpp │ │ ├── complexword.h │ │ ├── formselector.h │ │ ├── gramfeatures.cpp │ │ ├── gramfeatures.h │ │ ├── inflector.h │ │ ├── numeral.cpp │ │ ├── numeral.h │ │ ├── ylemma.cpp │ │ └── ylemma.h │ │ ├── lemmerlib │ │ ├── CMakeLists.txt │ │ ├── extlemmer.cpp │ │ ├── extlemmer.h │ │ ├── form.h │ │ ├── lemma.cpp │ │ ├── lemma.h │ │ └── lemmerlib.h │ │ ├── simpletextminerlib │ │ ├── CMakeLists.txt │ │ ├── simpleprocessor.cpp │ │ └── simpleprocessor.h │ │ ├── surname_predictor │ │ ├── CMakeLists.txt │ │ ├── surname_predictor.cpp │ │ └── surname_predictor.h │ │ ├── textminerlib │ │ ├── CMakeLists.txt │ │ ├── processor.cpp │ │ └── processor.h │ │ ├── tomadictscompiler │ │ ├── tdcompiler.cpp │ │ └── tdcompiler.h │ │ ├── tomalanglib │ │ ├── CMakeLists.txt │ │ ├── abstract.h │ │ ├── postfix.cpp │ │ ├── postfix.h │ │ ├── tomacompiler.cpp │ │ ├── tomacompiler.h │ │ ├── tomaparser.cpp │ │ ├── tomaparser.h │ │ └── tomasyntax.proto │ │ └── tomita-parser │ │ ├── CMakeLists.txt │ │ ├── aftextminer.cpp │ │ └── aftextminer.h ├── bindings │ └── c │ │ └── mystem │ │ └── iface.h ├── cmake │ └── include │ │ ├── FindPerl2.cmake │ │ ├── GeneratePythonProtos.cmake │ │ ├── InternalHelpers.cmake │ │ ├── MakefileHelpers.cmake │ │ ├── UsePerl.cmake │ │ ├── UsePython.cmake │ │ ├── UseSwig.cmake │ │ ├── att_udf.cmake │ │ ├── buildlibs.cmake │ │ ├── buildrules.cmake │ │ ├── check_formula_md5.cmake │ │ ├── codgen.cmake │ │ ├── compilerinit.cmake │ │ ├── config.cmake │ │ ├── debugtools.cmake │ │ ├── deps.cmake │ │ ├── dtmk.cmake │ │ ├── fwd_compat.cmake │ │ ├── gazetteer.cmake │ │ ├── genscheeme.cmake │ │ ├── global.cmake │ │ ├── global_keyword.cmake │ │ ├── packages.cmake │ │ ├── pire_inline.cmake │ │ ├── scripts.cmake │ │ ├── suffixes.cmake │ │ ├── svn_info.lua │ │ ├── test_macroses.cmake │ │ ├── tools.cmake │ │ └── xsyn.cmake ├── contrib │ ├── libs │ │ ├── libexslt │ │ │ ├── CMakeLists.txt │ │ │ ├── common.c │ │ │ ├── crypto.c │ │ │ ├── date.c │ │ │ ├── dynamic.c │ │ │ ├── exslt.c │ │ │ ├── exslt.h │ │ │ ├── exsltconfig.h │ │ │ ├── exsltexports.h │ │ │ ├── functions.c │ │ │ ├── libexslt.h │ │ │ ├── math.c │ │ │ ├── saxon.c │ │ │ ├── sets.c │ │ │ └── strings.c │ │ ├── libiconv │ │ │ ├── CMakeLists.txt │ │ │ ├── aliases.h │ │ │ ├── aliases2.h │ │ │ ├── aliases_aix.h │ │ │ ├── aliases_aix_sysaix.h │ │ │ ├── aliases_dos.h │ │ │ ├── aliases_extra.h │ │ │ ├── aliases_osf1.h │ │ │ ├── aliases_osf1_sysosf1.h │ │ │ ├── aliases_sysaix.h │ │ │ ├── aliases_syshpux.h │ │ │ ├── aliases_sysosf1.h │ │ │ ├── aliases_syssolaris.h │ │ │ ├── armscii_8.h │ │ │ ├── ascii.h │ │ │ ├── atarist.h │ │ │ ├── big5.h │ │ │ ├── big5_2003.h │ │ │ ├── big5hkscs1999.h │ │ │ ├── big5hkscs2001.h │ │ │ ├── big5hkscs2004.h │ │ │ ├── c99.h │ │ │ ├── canonical.h │ │ │ ├── canonical_aix.h │ │ │ ├── canonical_aix_sysaix.h │ │ │ ├── canonical_dos.h │ │ │ ├── canonical_extra.h │ │ │ ├── canonical_local.h │ │ │ ├── canonical_local_sysaix.h │ │ │ ├── canonical_local_syshpux.h │ │ │ ├── canonical_local_sysosf1.h │ │ │ ├── canonical_local_syssolaris.h │ │ │ ├── canonical_osf1.h │ │ │ ├── canonical_osf1_sysosf1.h │ │ │ ├── canonical_sysaix.h │ │ │ ├── canonical_syshpux.h │ │ │ ├── canonical_sysosf1.h │ │ │ ├── canonical_syssolaris.h │ │ │ ├── ces_big5.h │ │ │ ├── ces_gbk.h │ │ │ ├── cjk_variants.h │ │ │ ├── cns11643.h │ │ │ ├── cns11643_1.h │ │ │ ├── cns11643_15.h │ │ │ ├── cns11643_2.h │ │ │ ├── cns11643_3.h │ │ │ ├── cns11643_4.h │ │ │ ├── cns11643_4a.h │ │ │ ├── cns11643_4b.h │ │ │ ├── cns11643_5.h │ │ │ ├── cns11643_6.h │ │ │ ├── cns11643_7.h │ │ │ ├── cns11643_inv.h │ │ │ ├── config.h │ │ │ ├── converters.h │ │ │ ├── cp1046.h │ │ │ ├── cp1124.h │ │ │ ├── cp1125.h │ │ │ ├── cp1129.h │ │ │ ├── cp1131.h │ │ │ ├── cp1133.h │ │ │ ├── cp1161.h │ │ │ ├── cp1162.h │ │ │ ├── cp1163.h │ │ │ ├── cp1250.h │ │ │ ├── cp1251.h │ │ │ ├── cp1252.h │ │ │ ├── cp1253.h │ │ │ ├── cp1254.h │ │ │ ├── cp1255.h │ │ │ ├── cp1256.h │ │ │ ├── cp1257.h │ │ │ ├── cp1258.h │ │ │ ├── cp437.h │ │ │ ├── cp737.h │ │ │ ├── cp775.h │ │ │ ├── cp850.h │ │ │ ├── cp852.h │ │ │ ├── cp853.h │ │ │ ├── cp855.h │ │ │ ├── cp856.h │ │ │ ├── cp857.h │ │ │ ├── cp858.h │ │ │ ├── cp860.h │ │ │ ├── cp861.h │ │ │ ├── cp862.h │ │ │ ├── cp863.h │ │ │ ├── cp864.h │ │ │ ├── cp865.h │ │ │ ├── cp866.h │ │ │ ├── cp869.h │ │ │ ├── cp874.h │ │ │ ├── cp922.h │ │ │ ├── cp932.h │ │ │ ├── cp932ext.h │ │ │ ├── cp936.h │ │ │ ├── cp936ext.h │ │ │ ├── cp943.h │ │ │ ├── cp949.h │ │ │ ├── cp950.h │ │ │ ├── cp950ext.h │ │ │ ├── dec_hanyu.h │ │ │ ├── dec_kanji.h │ │ │ ├── encodings.def │ │ │ ├── encodings_aix.def │ │ │ ├── encodings_dos.def │ │ │ ├── encodings_extra.def │ │ │ ├── encodings_local.def │ │ │ ├── encodings_osf1.def │ │ │ ├── euc_cn.h │ │ │ ├── euc_jisx0213.h │ │ │ ├── euc_jp.h │ │ │ ├── euc_kr.h │ │ │ ├── euc_tw.h │ │ │ ├── flags.h │ │ │ ├── flushwc.h │ │ │ ├── gb18030.h │ │ │ ├── gb18030ext.h │ │ │ ├── gb18030uni.h │ │ │ ├── gb2312.h │ │ │ ├── gbk.h │ │ │ ├── gbkext1.h │ │ │ ├── gbkext2.h │ │ │ ├── gbkext_inv.h │ │ │ ├── genaliases.c │ │ │ ├── genaliases2.c │ │ │ ├── georgian_academy.h │ │ │ ├── georgian_ps.h │ │ │ ├── hkscs1999.h │ │ │ ├── hkscs2001.h │ │ │ ├── hkscs2004.h │ │ │ ├── hp_roman8.h │ │ │ ├── hz.h │ │ │ ├── iconv.c │ │ │ ├── iconv.h │ │ │ ├── iconv_open1.h │ │ │ ├── iconv_open2.h │ │ │ ├── iso2022_cn.h │ │ │ ├── iso2022_cnext.h │ │ │ ├── iso2022_jp.h │ │ │ ├── iso2022_jp1.h │ │ │ ├── iso2022_jp2.h │ │ │ ├── iso2022_jp3.h │ │ │ ├── iso2022_kr.h │ │ │ ├── iso646_cn.h │ │ │ ├── iso646_jp.h │ │ │ ├── iso8859_1.h │ │ │ ├── iso8859_10.h │ │ │ ├── iso8859_11.h │ │ │ ├── iso8859_13.h │ │ │ ├── iso8859_14.h │ │ │ ├── iso8859_15.h │ │ │ ├── iso8859_16.h │ │ │ ├── iso8859_2.h │ │ │ ├── iso8859_3.h │ │ │ ├── iso8859_4.h │ │ │ ├── iso8859_5.h │ │ │ ├── iso8859_6.h │ │ │ ├── iso8859_7.h │ │ │ ├── iso8859_8.h │ │ │ ├── iso8859_9.h │ │ │ ├── isoir165.h │ │ │ ├── isoir165ext.h │ │ │ ├── java.h │ │ │ ├── jisx0201.h │ │ │ ├── jisx0208.h │ │ │ ├── jisx0212.h │ │ │ ├── jisx0213.h │ │ │ ├── johab.h │ │ │ ├── johab_hangul.h │ │ │ ├── koi8_r.h │ │ │ ├── koi8_ru.h │ │ │ ├── koi8_t.h │ │ │ ├── koi8_u.h │ │ │ ├── ksc5601.h │ │ │ ├── localcharset.h │ │ │ ├── loop_unicode.h │ │ │ ├── loop_wchar.h │ │ │ ├── loops.h │ │ │ ├── mac_arabic.h │ │ │ ├── mac_centraleurope.h │ │ │ ├── mac_croatian.h │ │ │ ├── mac_cyrillic.h │ │ │ ├── mac_greek.h │ │ │ ├── mac_hebrew.h │ │ │ ├── mac_iceland.h │ │ │ ├── mac_roman.h │ │ │ ├── mac_romania.h │ │ │ ├── mac_thai.h │ │ │ ├── mac_turkish.h │ │ │ ├── mac_ukraine.h │ │ │ ├── mulelao.h │ │ │ ├── nextstep.h │ │ │ ├── pt154.h │ │ │ ├── riscos1.h │ │ │ ├── rk1048.h │ │ │ ├── shift_jisx0213.h │ │ │ ├── sjis.h │ │ │ ├── tcvn.h │ │ │ ├── tds565.h │ │ │ ├── tis620.h │ │ │ ├── translit.h │ │ │ ├── ucs2.h │ │ │ ├── ucs2be.h │ │ │ ├── ucs2internal.h │ │ │ ├── ucs2le.h │ │ │ ├── ucs2swapped.h │ │ │ ├── ucs4.h │ │ │ ├── ucs4be.h │ │ │ ├── ucs4internal.h │ │ │ ├── ucs4le.h │ │ │ ├── ucs4swapped.h │ │ │ ├── uhc_1.h │ │ │ ├── uhc_2.h │ │ │ ├── utf16.h │ │ │ ├── utf16be.h │ │ │ ├── utf16le.h │ │ │ ├── utf32.h │ │ │ ├── utf32be.h │ │ │ ├── utf32le.h │ │ │ ├── utf7.h │ │ │ ├── utf8.h │ │ │ ├── vietcomb.h │ │ │ └── viscii.h │ │ ├── libxml │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── libxml │ │ │ │ │ ├── DOCBparser.h │ │ │ │ │ ├── HTMLparser.h │ │ │ │ │ ├── HTMLtree.h │ │ │ │ │ ├── SAX.h │ │ │ │ │ ├── SAX2.h │ │ │ │ │ ├── c14n.h │ │ │ │ │ ├── catalog.h │ │ │ │ │ ├── chvalid.h │ │ │ │ │ ├── debugXML.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── encoding.h │ │ │ │ │ ├── entities.h │ │ │ │ │ ├── globals.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── parser.h │ │ │ │ │ ├── parserInternals.h │ │ │ │ │ ├── pattern.h │ │ │ │ │ ├── relaxng.h │ │ │ │ │ ├── schemasInternals.h │ │ │ │ │ ├── schematron.h │ │ │ │ │ ├── threads.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── uri.h │ │ │ │ │ ├── valid.h │ │ │ │ │ ├── xinclude.h │ │ │ │ │ ├── xlink.h │ │ │ │ │ ├── xmlIO.h │ │ │ │ │ ├── xmlautomata.h │ │ │ │ │ ├── xmlerror.h │ │ │ │ │ ├── xmlexports.h │ │ │ │ │ ├── xmlmemory.h │ │ │ │ │ ├── xmlmodule.h │ │ │ │ │ ├── xmlreader.h │ │ │ │ │ ├── xmlregexp.h │ │ │ │ │ ├── xmlsave.h │ │ │ │ │ ├── xmlschemas.h │ │ │ │ │ ├── xmlschemastypes.h │ │ │ │ │ ├── xmlstring.h │ │ │ │ │ ├── xmlunicode.h │ │ │ │ │ ├── xmlversion.h │ │ │ │ │ ├── xmlwriter.h │ │ │ │ │ ├── xpath.h │ │ │ │ │ ├── xpathInternals.h │ │ │ │ │ └── xpointer.h │ │ │ └── srcs │ │ │ │ ├── DOCBparser.c │ │ │ │ ├── SAX.c │ │ │ │ ├── SAX2.c │ │ │ │ ├── c14n.c │ │ │ │ ├── catalog.c │ │ │ │ ├── chvalid.c │ │ │ │ ├── config.h │ │ │ │ ├── debugXML.c │ │ │ │ ├── dict.c │ │ │ │ ├── elfgcchack.h │ │ │ │ ├── encoding.c │ │ │ │ ├── entities.c │ │ │ │ ├── error.c │ │ │ │ ├── globals.c │ │ │ │ ├── hash.c │ │ │ │ ├── legacy.c │ │ │ │ ├── libxml.h │ │ │ │ ├── list.c │ │ │ │ ├── parser.c │ │ │ │ ├── parserInternals.c │ │ │ │ ├── pattern.c │ │ │ │ ├── relaxng.c │ │ │ │ ├── schematron.c │ │ │ │ ├── threads.c │ │ │ │ ├── tree.c │ │ │ │ ├── trio.c │ │ │ │ ├── trio.h │ │ │ │ ├── triodef.h │ │ │ │ ├── trionan.c │ │ │ │ ├── trionan.h │ │ │ │ ├── triop.h │ │ │ │ ├── triostr.c │ │ │ │ ├── triostr.h │ │ │ │ ├── uri.c │ │ │ │ ├── valid.c │ │ │ │ ├── xinclude.c │ │ │ │ ├── xlink.c │ │ │ │ ├── xmlIO.c │ │ │ │ ├── xmlmemory.c │ │ │ │ ├── xmlmodule.c │ │ │ │ ├── xmlreader.c │ │ │ │ ├── xmlregexp.c │ │ │ │ ├── xmlsave.c │ │ │ │ ├── xmlschemas.c │ │ │ │ ├── xmlschemastypes.c │ │ │ │ ├── xmlstring.c │ │ │ │ ├── xmlunicode.c │ │ │ │ ├── xmlwriter.c │ │ │ │ ├── xpath.c │ │ │ │ ├── xpointer.c │ │ │ │ ├── yencoding.cpp │ │ │ │ └── yencoding.h │ │ ├── libxslt │ │ │ ├── CMakeLists.txt │ │ │ ├── HTMLparser.h │ │ │ ├── HTMLtree.h │ │ │ ├── attributes.c │ │ │ ├── attributes.h │ │ │ ├── attrvt.c │ │ │ ├── documents.c │ │ │ ├── documents.h │ │ │ ├── extensions.c │ │ │ ├── extensions.h │ │ │ ├── extra.c │ │ │ ├── extra.h │ │ │ ├── functions.c │ │ │ ├── functions.h │ │ │ ├── imports.c │ │ │ ├── imports.h │ │ │ ├── keys.c │ │ │ ├── keys.h │ │ │ ├── libxslt.h │ │ │ ├── namespaces.c │ │ │ ├── namespaces.h │ │ │ ├── numbers.c │ │ │ ├── numbersInternals.h │ │ │ ├── pattern.c │ │ │ ├── pattern.h │ │ │ ├── preproc.c │ │ │ ├── preproc.h │ │ │ ├── savehtmlutils.c │ │ │ ├── security.c │ │ │ ├── security.h │ │ │ ├── templates.c │ │ │ ├── templates.h │ │ │ ├── transform.c │ │ │ ├── transform.h │ │ │ ├── trio.h │ │ │ ├── triodef.h │ │ │ ├── variables.c │ │ │ ├── variables.h │ │ │ ├── win32config.h │ │ │ ├── xslt.c │ │ │ ├── xslt.h │ │ │ ├── xsltInternals.h │ │ │ ├── xsltconfig.h │ │ │ ├── xsltexports.h │ │ │ ├── xsltlocale.c │ │ │ ├── xsltlocale.h │ │ │ ├── xsltutils.c │ │ │ └── xsltutils.h │ │ ├── linuxvdso │ │ │ └── interface.h │ │ ├── lz4 │ │ │ ├── CMakeLists.txt │ │ │ ├── generated │ │ │ │ ├── full.c │ │ │ │ ├── gen.c │ │ │ │ ├── iface.h │ │ │ │ └── inc.c │ │ │ ├── lz4.c │ │ │ ├── lz4.h │ │ │ ├── lz4hc.c │ │ │ └── lz4hc.h │ │ ├── pcre │ │ │ ├── CMakeLists.txt │ │ │ ├── config.h │ │ │ ├── pcre.h │ │ │ ├── pcre_chartables.c │ │ │ ├── pcre_compile.c │ │ │ ├── pcre_config.c │ │ │ ├── pcre_dfa_exec.c │ │ │ ├── pcre_exec.c │ │ │ ├── pcre_fullinfo.c │ │ │ ├── pcre_get.c │ │ │ ├── pcre_globals.c │ │ │ ├── pcre_info.c │ │ │ ├── pcre_internal.h │ │ │ ├── pcre_maketables.c │ │ │ ├── pcre_newline.c │ │ │ ├── pcre_ord2utf8.c │ │ │ ├── pcre_refcount.c │ │ │ ├── pcre_study.c │ │ │ ├── pcre_tables.c │ │ │ ├── pcre_try_flipped.c │ │ │ ├── pcre_ucp_searchfuncs.c │ │ │ ├── pcre_valid_utf8.c │ │ │ ├── pcre_version.c │ │ │ ├── pcre_xclass.c │ │ │ ├── pcreposix.c │ │ │ ├── pcreposix.h │ │ │ ├── rename.h │ │ │ ├── ucp.h │ │ │ ├── ucpinternal.h │ │ │ └── ucptable.h │ │ ├── pire │ │ │ └── pire │ │ │ │ ├── align.h │ │ │ │ ├── any.h │ │ │ │ ├── classes.cpp │ │ │ │ ├── defs.h │ │ │ │ ├── determine.h │ │ │ │ ├── easy.cpp │ │ │ │ ├── easy.h │ │ │ │ ├── encoding.cpp │ │ │ │ ├── encoding.h │ │ │ │ ├── extra.h │ │ │ │ ├── extra │ │ │ │ ├── capture.cpp │ │ │ │ ├── capture.h │ │ │ │ ├── count.cpp │ │ │ │ ├── count.h │ │ │ │ ├── glyphs.cpp │ │ │ │ └── glyphs.h │ │ │ │ ├── fsm.cpp │ │ │ │ ├── fsm.h │ │ │ │ ├── glue.h │ │ │ │ ├── inline.l │ │ │ │ ├── partition.h │ │ │ │ ├── pire.h │ │ │ │ ├── platform.h │ │ │ │ ├── re_lexer.cpp │ │ │ │ ├── re_lexer.h │ │ │ │ ├── re_parser.y │ │ │ │ ├── run.h │ │ │ │ ├── scanner_io.cpp │ │ │ │ ├── scanners │ │ │ │ ├── common.h │ │ │ │ ├── loaded.h │ │ │ │ ├── multi.h │ │ │ │ ├── null.cpp │ │ │ │ ├── pair.h │ │ │ │ ├── simple.h │ │ │ │ └── slow.h │ │ │ │ ├── static_assert.h │ │ │ │ ├── stub │ │ │ │ ├── defaults.h │ │ │ │ ├── hacks.h │ │ │ │ ├── lexical_cast.h │ │ │ │ ├── memstreams.h │ │ │ │ ├── noncopyable.h │ │ │ │ ├── saveload.h │ │ │ │ ├── singleton.h │ │ │ │ ├── stl.h │ │ │ │ └── utf8.h │ │ │ │ └── vbitset.h │ │ ├── protobuf │ │ │ ├── CMakeLists.txt │ │ │ ├── compiler │ │ │ │ ├── code_generator.cc │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.cc │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── cpp │ │ │ │ │ ├── cpp_enum.cc │ │ │ │ │ ├── cpp_enum.h │ │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ │ ├── cpp_enum_field.h │ │ │ │ │ ├── cpp_extension.cc │ │ │ │ │ ├── cpp_extension.h │ │ │ │ │ ├── cpp_field.cc │ │ │ │ │ ├── cpp_field.h │ │ │ │ │ ├── cpp_file.cc │ │ │ │ │ ├── cpp_file.h │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── cpp_helpers.cc │ │ │ │ │ ├── cpp_helpers.h │ │ │ │ │ ├── cpp_message.cc │ │ │ │ │ ├── cpp_message.h │ │ │ │ │ ├── cpp_message_field.cc │ │ │ │ │ ├── cpp_message_field.h │ │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ │ ├── cpp_service.cc │ │ │ │ │ ├── cpp_service.h │ │ │ │ │ ├── cpp_string_field.cc │ │ │ │ │ └── cpp_string_field.h │ │ │ │ ├── importer.cc │ │ │ │ ├── importer.h │ │ │ │ ├── java │ │ │ │ │ ├── java_enum.cc │ │ │ │ │ ├── java_enum.h │ │ │ │ │ ├── java_enum_field.cc │ │ │ │ │ ├── java_enum_field.h │ │ │ │ │ ├── java_extension.cc │ │ │ │ │ ├── java_extension.h │ │ │ │ │ ├── java_field.cc │ │ │ │ │ ├── java_field.h │ │ │ │ │ ├── java_file.cc │ │ │ │ │ ├── java_file.h │ │ │ │ │ ├── java_generator.cc │ │ │ │ │ ├── java_generator.h │ │ │ │ │ ├── java_helpers.cc │ │ │ │ │ ├── java_helpers.h │ │ │ │ │ ├── java_message.cc │ │ │ │ │ ├── java_message.h │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ ├── java_primitive_field.h │ │ │ │ │ ├── java_service.cc │ │ │ │ │ └── java_service.h │ │ │ │ ├── main.cc │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── perlxs │ │ │ │ │ ├── perlxs_generator.cc │ │ │ │ │ ├── perlxs_generator.h │ │ │ │ │ ├── perlxs_helpers.cc │ │ │ │ │ └── perlxs_helpers.h │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.cc │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── python │ │ │ │ │ ├── python_generator.cc │ │ │ │ │ └── python_generator.h │ │ │ │ ├── subprocess.cc │ │ │ │ ├── subprocess.h │ │ │ │ ├── zip_writer.cc │ │ │ │ └── zip_writer.h │ │ │ ├── descriptor.cc │ │ │ ├── descriptor.h │ │ │ ├── descriptor.pb.cc │ │ │ ├── descriptor.pb.h │ │ │ ├── descriptor.proto │ │ │ ├── descriptor_database.cc │ │ │ ├── descriptor_database.h │ │ │ ├── dynamic_message.cc │ │ │ ├── dynamic_message.h │ │ │ ├── extension_set.cc │ │ │ ├── extension_set.h │ │ │ ├── extension_set_heavy.cc │ │ │ ├── generated_message_reflection.cc │ │ │ ├── generated_message_reflection.h │ │ │ ├── generated_message_util.cc │ │ │ ├── generated_message_util.h │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── printer.cc │ │ │ │ ├── printer.h │ │ │ │ ├── tokenizer.cc │ │ │ │ ├── tokenizer.h │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ └── zero_copy_stream_impl_lite.h │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── message_lite.cc │ │ │ ├── message_lite.h │ │ │ ├── messageint.h │ │ │ ├── messagext.cc │ │ │ ├── messagext.h │ │ │ ├── protoc │ │ │ │ └── CMakeLists.txt │ │ │ ├── reflection_ops.cc │ │ │ ├── reflection_ops.h │ │ │ ├── repeated_field.cc │ │ │ ├── repeated_field.h │ │ │ ├── service.cc │ │ │ ├── service.h │ │ │ ├── stubs │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── hash.cc │ │ │ │ ├── hash.h │ │ │ │ ├── map-util.cc │ │ │ │ ├── map-util.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── stl_util-inl.cc │ │ │ │ ├── stl_util-inl.h │ │ │ │ ├── structurally_valid.cc │ │ │ │ ├── strutil.cc │ │ │ │ ├── strutil.h │ │ │ │ ├── substitute.cc │ │ │ │ └── substitute.h │ │ │ ├── text_format.cc │ │ │ ├── text_format.h │ │ │ ├── unknown_field_set.cc │ │ │ ├── unknown_field_set.h │ │ │ ├── wire_format.cc │ │ │ ├── wire_format.h │ │ │ ├── wire_format_lite.cc │ │ │ ├── wire_format_lite.h │ │ │ └── wire_format_lite_inl.h │ │ ├── stlport │ │ │ ├── CMakeLists.txt │ │ │ ├── config.h │ │ │ └── stlport-5.1.4 │ │ │ │ ├── src │ │ │ │ ├── _stdio_file.h │ │ │ │ ├── acquire_release.h │ │ │ │ ├── aligned_buffer.h │ │ │ │ ├── allocators.cpp │ │ │ │ ├── bitset.cpp │ │ │ │ ├── c_locale.c │ │ │ │ ├── c_locale.h │ │ │ │ ├── c_locale_dummy │ │ │ │ │ └── c_locale_dummy.c │ │ │ │ ├── c_locale_glibc │ │ │ │ │ ├── c_locale_glibc.c │ │ │ │ │ ├── c_locale_glibc2.c │ │ │ │ │ └── gcc_localeinfo.h │ │ │ │ ├── c_locale_win32 │ │ │ │ │ └── c_locale_win32.c │ │ │ │ ├── codecvt.cpp │ │ │ │ ├── collate.cpp │ │ │ │ ├── complex.cpp │ │ │ │ ├── complex_io.cpp │ │ │ │ ├── complex_trig.cpp │ │ │ │ ├── ctype.cpp │ │ │ │ ├── cxa.c │ │ │ │ ├── dll_main.cpp │ │ │ │ ├── facets_byname.cpp │ │ │ │ ├── fstream.cpp │ │ │ │ ├── fstream_impl.h │ │ │ │ ├── ios.cpp │ │ │ │ ├── iostream.cpp │ │ │ │ ├── istream.cpp │ │ │ │ ├── locale.cpp │ │ │ │ ├── locale_catalog.cpp │ │ │ │ ├── locale_impl.cpp │ │ │ │ ├── locale_impl.h │ │ │ │ ├── lock_free_slist.h │ │ │ │ ├── message_facets.h │ │ │ │ ├── messages.cpp │ │ │ │ ├── monetary.cpp │ │ │ │ ├── num_get.cpp │ │ │ │ ├── num_get_float.cpp │ │ │ │ ├── num_put.cpp │ │ │ │ ├── num_put_float.cpp │ │ │ │ ├── numpunct.cpp │ │ │ │ ├── ostream.cpp │ │ │ │ ├── sparc_atomic.s │ │ │ │ ├── sparc_atomic64.s │ │ │ │ ├── sstream.cpp │ │ │ │ ├── stdio_streambuf.cpp │ │ │ │ ├── stdio_streambuf.h │ │ │ │ ├── stlport.rc │ │ │ │ ├── stlport_prefix.h │ │ │ │ ├── string.cpp │ │ │ │ ├── strstream.cpp │ │ │ │ ├── time_facets.cpp │ │ │ │ ├── uint64.h │ │ │ │ ├── vc_warning_disable.h │ │ │ │ └── warning_disable.h │ │ │ │ └── stlport │ │ │ │ ├── algorithm │ │ │ │ ├── assert.h │ │ │ │ ├── bitset │ │ │ │ ├── cassert │ │ │ │ ├── cctype │ │ │ │ ├── cerrno │ │ │ │ ├── cfloat │ │ │ │ ├── ciso646 │ │ │ │ ├── climits │ │ │ │ ├── clocale │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ ├── csetjmp │ │ │ │ ├── csignal │ │ │ │ ├── cstdarg │ │ │ │ ├── cstddef │ │ │ │ ├── cstdio │ │ │ │ ├── cstdlib │ │ │ │ ├── cstring │ │ │ │ ├── ctime │ │ │ │ ├── ctype.h │ │ │ │ ├── cwchar │ │ │ │ ├── cwctype │ │ │ │ ├── deque │ │ │ │ ├── errno.h │ │ │ │ ├── exception │ │ │ │ ├── exception.h │ │ │ │ ├── float.h │ │ │ │ ├── fstream │ │ │ │ ├── fstream.h │ │ │ │ ├── functional │ │ │ │ ├── hash_map │ │ │ │ ├── hash_set │ │ │ │ ├── inttypes.h │ │ │ │ ├── inttypes_msvc.h │ │ │ │ ├── iomanip │ │ │ │ ├── iomanip.h │ │ │ │ ├── ios │ │ │ │ ├── ios.h │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── iostream.h │ │ │ │ ├── iso646.h │ │ │ │ ├── istream │ │ │ │ ├── istream.h │ │ │ │ ├── iterator │ │ │ │ ├── limits │ │ │ │ ├── limits.h │ │ │ │ ├── list │ │ │ │ ├── locale │ │ │ │ ├── locale.h │ │ │ │ ├── map │ │ │ │ ├── math.h │ │ │ │ ├── mem.h │ │ │ │ ├── memory │ │ │ │ ├── new │ │ │ │ ├── new.h │ │ │ │ ├── numeric │ │ │ │ ├── ostream │ │ │ │ ├── ostream.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pthread_alloc │ │ │ │ ├── queue │ │ │ │ ├── rlocks.h │ │ │ │ ├── rope │ │ │ │ ├── set │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── slist │ │ │ │ ├── sstream │ │ │ │ ├── stack │ │ │ │ ├── stdarg.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdexcept │ │ │ │ ├── stdint.h │ │ │ │ ├── stdint_msvc.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdiostream.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── stl │ │ │ │ ├── _abbrevs.h │ │ │ │ ├── _algo.c │ │ │ │ ├── _algo.h │ │ │ │ ├── _algobase.c │ │ │ │ ├── _algobase.h │ │ │ │ ├── _alloc.c │ │ │ │ ├── _alloc.h │ │ │ │ ├── _alloc_old.h │ │ │ │ ├── _auto_ptr.h │ │ │ │ ├── _bitset.c │ │ │ │ ├── _bitset.h │ │ │ │ ├── _bvector.h │ │ │ │ ├── _carray.h │ │ │ │ ├── _cctype.h │ │ │ │ ├── _check_config.h │ │ │ │ ├── _clocale.h │ │ │ │ ├── _cmath.h │ │ │ │ ├── _codecvt.h │ │ │ │ ├── _collate.h │ │ │ │ ├── _complex.c │ │ │ │ ├── _complex.h │ │ │ │ ├── _config_compat_post.h │ │ │ │ ├── _construct.h │ │ │ │ ├── _csetjmp.h │ │ │ │ ├── _csignal.h │ │ │ │ ├── _cstdarg.h │ │ │ │ ├── _cstddef.h │ │ │ │ ├── _cstdio.h │ │ │ │ ├── _cstdlib.h │ │ │ │ ├── _cstring.h │ │ │ │ ├── _ctime.h │ │ │ │ ├── _ctraits_fns.h │ │ │ │ ├── _ctype.h │ │ │ │ ├── _cwchar.h │ │ │ │ ├── _cwctype.h │ │ │ │ ├── _deque.c │ │ │ │ ├── _deque.h │ │ │ │ ├── _epilog.h │ │ │ │ ├── _exception.h │ │ │ │ ├── _fstream.c │ │ │ │ ├── _fstream.h │ │ │ │ ├── _function.h │ │ │ │ ├── _function_adaptors.h │ │ │ │ ├── _function_base.h │ │ │ │ ├── _hash_fun.h │ │ │ │ ├── _hash_map.h │ │ │ │ ├── _hash_set.h │ │ │ │ ├── _hashtable.c │ │ │ │ ├── _hashtable.h │ │ │ │ ├── _heap.c │ │ │ │ ├── _heap.h │ │ │ │ ├── _ios.c │ │ │ │ ├── _ios.h │ │ │ │ ├── _ios_base.h │ │ │ │ ├── _ioserr.h │ │ │ │ ├── _iosfwd.h │ │ │ │ ├── _iostream_string.h │ │ │ │ ├── _istream.c │ │ │ │ ├── _istream.h │ │ │ │ ├── _istreambuf_iterator.h │ │ │ │ ├── _iterator.h │ │ │ │ ├── _iterator_base.h │ │ │ │ ├── _iterator_old.h │ │ │ │ ├── _limits.c │ │ │ │ ├── _limits.h │ │ │ │ ├── _list.c │ │ │ │ ├── _list.h │ │ │ │ ├── _locale.h │ │ │ │ ├── _map.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _messages_facets.h │ │ │ │ ├── _monetary.c │ │ │ │ ├── _monetary.h │ │ │ │ ├── _move_construct_fwk.h │ │ │ │ ├── _new.h │ │ │ │ ├── _null_stream.h │ │ │ │ ├── _num_get.c │ │ │ │ ├── _num_get.h │ │ │ │ ├── _num_put.c │ │ │ │ ├── _num_put.h │ │ │ │ ├── _numeric.c │ │ │ │ ├── _numeric.h │ │ │ │ ├── _numpunct.h │ │ │ │ ├── _ostream.c │ │ │ │ ├── _ostream.h │ │ │ │ ├── _ostreambuf_iterator.h │ │ │ │ ├── _pair.h │ │ │ │ ├── _prolog.h │ │ │ │ ├── _pthread_alloc.h │ │ │ │ ├── _ptrs_specialize.h │ │ │ │ ├── _queue.h │ │ │ │ ├── _range_errors.h │ │ │ │ ├── _raw_storage_iter.h │ │ │ │ ├── _relops_cont.h │ │ │ │ ├── _relops_hash_cont.h │ │ │ │ ├── _rope.c │ │ │ │ ├── _rope.h │ │ │ │ ├── _set.h │ │ │ │ ├── _slist.c │ │ │ │ ├── _slist.h │ │ │ │ ├── _slist_base.c │ │ │ │ ├── _slist_base.h │ │ │ │ ├── _sparc_atomic.h │ │ │ │ ├── _sstream.c │ │ │ │ ├── _sstream.h │ │ │ │ ├── _stack.h │ │ │ │ ├── _stdexcept.h │ │ │ │ ├── _stdexcept_base.h │ │ │ │ ├── _stlport_version.h │ │ │ │ ├── _stream_iterator.h │ │ │ │ ├── _streambuf.c │ │ │ │ ├── _streambuf.h │ │ │ │ ├── _string.c │ │ │ │ ├── _string.h │ │ │ │ ├── _string_base.h │ │ │ │ ├── _string_fwd.h │ │ │ │ ├── _string_hash.h │ │ │ │ ├── _string_io.c │ │ │ │ ├── _string_io.h │ │ │ │ ├── _string_npos.h │ │ │ │ ├── _string_operators.h │ │ │ │ ├── _string_sum.h │ │ │ │ ├── _string_sum_methods.h │ │ │ │ ├── _string_workaround.h │ │ │ │ ├── _strstream.h │ │ │ │ ├── _tempbuf.c │ │ │ │ ├── _tempbuf.h │ │ │ │ ├── _threads.c │ │ │ │ ├── _threads.h │ │ │ │ ├── _time_facets.c │ │ │ │ ├── _time_facets.h │ │ │ │ ├── _tree.c │ │ │ │ ├── _tree.h │ │ │ │ ├── _typeinfo.h │ │ │ │ ├── _uninitialized.h │ │ │ │ ├── _unordered_map.h │ │ │ │ ├── _unordered_set.h │ │ │ │ ├── _valarray.c │ │ │ │ ├── _valarray.h │ │ │ │ ├── _vector.c │ │ │ │ ├── _vector.h │ │ │ │ ├── boost_type_traits.h │ │ │ │ ├── c_locale.h │ │ │ │ ├── char_traits.h │ │ │ │ ├── concept_checks.h │ │ │ │ ├── config │ │ │ │ │ ├── _aix.h │ │ │ │ │ ├── _apcc.h │ │ │ │ │ ├── _apple.h │ │ │ │ │ ├── _as400.h │ │ │ │ │ ├── _auto_link.h │ │ │ │ │ ├── _bc.h │ │ │ │ │ ├── _como.h │ │ │ │ │ ├── _cray.h │ │ │ │ │ ├── _cygwin.h │ │ │ │ │ ├── _dec.h │ │ │ │ │ ├── _dec_vms.h │ │ │ │ │ ├── _detect_dll_or_lib.h │ │ │ │ │ ├── _dm.h │ │ │ │ │ ├── _epilog.h │ │ │ │ │ ├── _evc.h │ │ │ │ │ ├── _freebsd.h │ │ │ │ │ ├── _fujitsu.h │ │ │ │ │ ├── _gcc.h │ │ │ │ │ ├── _hpacc.h │ │ │ │ │ ├── _hpux.h │ │ │ │ │ ├── _ibm.h │ │ │ │ │ ├── _icc.h │ │ │ │ │ ├── _intel.h │ │ │ │ │ ├── _kai.h │ │ │ │ │ ├── _linux.h │ │ │ │ │ ├── _mac.h │ │ │ │ │ ├── _macosx.h │ │ │ │ │ ├── _mlc.h │ │ │ │ │ ├── _msvc.h │ │ │ │ │ ├── _mwccnlm.h │ │ │ │ │ ├── _mwerks.h │ │ │ │ │ ├── _native_headers.h │ │ │ │ │ ├── _netware.h │ │ │ │ │ ├── _openbsd.h │ │ │ │ │ ├── _prolog.h │ │ │ │ │ ├── _sgi.h │ │ │ │ │ ├── _solaris.h │ │ │ │ │ ├── _sunprocc.h │ │ │ │ │ ├── _symantec.h │ │ │ │ │ ├── _system.h │ │ │ │ │ ├── _warnings_off.h │ │ │ │ │ ├── _watcom.h │ │ │ │ │ ├── _windows.h │ │ │ │ │ ├── _winegcc.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── features.h │ │ │ │ │ ├── host.h │ │ │ │ │ ├── stl_confix.h │ │ │ │ │ ├── stl_mycomp.h │ │ │ │ │ └── user_config.h │ │ │ │ ├── debug │ │ │ │ │ ├── _debug.c │ │ │ │ │ ├── _debug.h │ │ │ │ │ ├── _deque.h │ │ │ │ │ ├── _hashtable.h │ │ │ │ │ ├── _iterator.h │ │ │ │ │ ├── _list.h │ │ │ │ │ ├── _slist.h │ │ │ │ │ ├── _string.h │ │ │ │ │ ├── _string_sum_methods.h │ │ │ │ │ ├── _tree.h │ │ │ │ │ └── _vector.h │ │ │ │ ├── msl_string.h │ │ │ │ ├── pointers │ │ │ │ │ ├── _deque.h │ │ │ │ │ ├── _list.h │ │ │ │ │ ├── _set.h │ │ │ │ │ ├── _slist.h │ │ │ │ │ ├── _tools.h │ │ │ │ │ └── _vector.h │ │ │ │ ├── type_manips.h │ │ │ │ └── type_traits.h │ │ │ │ ├── stlfwd │ │ │ │ ├── streambuf │ │ │ │ ├── streambuf.h │ │ │ │ ├── string │ │ │ │ ├── string.h │ │ │ │ ├── strstream │ │ │ │ ├── strstream.h │ │ │ │ ├── time.h │ │ │ │ ├── typeinfo │ │ │ │ ├── typeinfo.h │ │ │ │ ├── unordered_map │ │ │ │ ├── unordered_set │ │ │ │ ├── using │ │ │ │ ├── cstring │ │ │ │ ├── export │ │ │ │ ├── fstream │ │ │ │ ├── h │ │ │ │ │ ├── fstream.h │ │ │ │ │ ├── iomanip.h │ │ │ │ │ ├── iostream.h │ │ │ │ │ ├── ostream.h │ │ │ │ │ ├── streambuf.h │ │ │ │ │ └── strstream.h │ │ │ │ ├── iomanip │ │ │ │ ├── ios │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── istream │ │ │ │ ├── locale │ │ │ │ ├── ostream │ │ │ │ ├── sstream │ │ │ │ ├── streambuf │ │ │ │ └── strstream │ │ │ │ ├── utility │ │ │ │ ├── valarray │ │ │ │ ├── vector │ │ │ │ ├── vendor │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── yajl │ │ │ ├── CMakeLists.txt │ │ │ ├── yajl.c │ │ │ ├── yajl_alloc.c │ │ │ ├── yajl_alloc.h │ │ │ ├── yajl_buf.c │ │ │ ├── yajl_buf.h │ │ │ ├── yajl_bytestack.h │ │ │ ├── yajl_common.h │ │ │ ├── yajl_encode.c │ │ │ ├── yajl_encode.h │ │ │ ├── yajl_gen.c │ │ │ ├── yajl_gen.h │ │ │ ├── yajl_lex.c │ │ │ ├── yajl_lex.h │ │ │ ├── yajl_parse.h │ │ │ ├── yajl_parser.c │ │ │ ├── yajl_parser.cpp │ │ │ ├── yajl_parser.h │ │ │ ├── yajl_tree.c │ │ │ ├── yajl_tree.h │ │ │ ├── yajl_version.c │ │ │ └── yajl_version.h │ │ └── zlib │ │ │ ├── CMakeLists.txt │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ └── tools │ │ ├── bison │ │ ├── CMakeLists.txt │ │ ├── bison │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ │ ├── README │ │ │ │ ├── bison.m4 │ │ │ │ ├── c++-skel.m4 │ │ │ │ ├── c++.m4 │ │ │ │ ├── c-like.m4 │ │ │ │ ├── c-skel.m4 │ │ │ │ ├── c.m4 │ │ │ │ ├── glr.c │ │ │ │ ├── glr.cc │ │ │ │ ├── java-skel.m4 │ │ │ │ ├── java.m4 │ │ │ │ ├── lalr1.cc │ │ │ │ ├── lalr1.java │ │ │ │ ├── local.mk │ │ │ │ ├── location.cc │ │ │ │ ├── m4sugar │ │ │ │ │ ├── foreach.m4 │ │ │ │ │ └── m4sugar.m4 │ │ │ │ ├── stack.hh │ │ │ │ ├── variant.hh │ │ │ │ ├── xslt │ │ │ │ │ ├── bison.xsl │ │ │ │ │ ├── xml2dot.xsl │ │ │ │ │ ├── xml2text.xsl │ │ │ │ │ └── xml2xhtml.xsl │ │ │ │ └── yacc.c │ │ │ └── src │ │ │ │ ├── AnnotationList.c │ │ │ │ ├── AnnotationList.h │ │ │ │ ├── InadequacyList.c │ │ │ │ ├── InadequacyList.h │ │ │ │ ├── LR0.c │ │ │ │ ├── LR0.h │ │ │ │ ├── Sbitset.c │ │ │ │ ├── Sbitset.h │ │ │ │ ├── arcadia-root.c.in │ │ │ │ ├── assoc.c │ │ │ │ ├── assoc.h │ │ │ │ ├── closure.c │ │ │ │ ├── closure.h │ │ │ │ ├── complain.c │ │ │ │ ├── complain.h │ │ │ │ ├── conflicts.c │ │ │ │ ├── conflicts.h │ │ │ │ ├── derives.c │ │ │ │ ├── derives.h │ │ │ │ ├── files.c │ │ │ │ ├── files.h │ │ │ │ ├── flex-scanner.h │ │ │ │ ├── getargs.c │ │ │ │ ├── getargs.h │ │ │ │ ├── gram.c │ │ │ │ ├── gram.h │ │ │ │ ├── graphviz.c │ │ │ │ ├── graphviz.h │ │ │ │ ├── ielr.c │ │ │ │ ├── ielr.h │ │ │ │ ├── lalr.c │ │ │ │ ├── lalr.h │ │ │ │ ├── local.mk │ │ │ │ ├── location.c │ │ │ │ ├── location.h │ │ │ │ ├── main.c │ │ │ │ ├── muscle-tab.c │ │ │ │ ├── muscle-tab.h │ │ │ │ ├── named-ref.c │ │ │ │ ├── named-ref.h │ │ │ │ ├── nullable.c │ │ │ │ ├── nullable.h │ │ │ │ ├── output.c │ │ │ │ ├── output.h │ │ │ │ ├── parse-gram.c │ │ │ │ ├── parse-gram.h │ │ │ │ ├── parse-gram.y │ │ │ │ ├── print-xml.c │ │ │ │ ├── print-xml.h │ │ │ │ ├── print.c │ │ │ │ ├── print.h │ │ │ │ ├── print_graph.c │ │ │ │ ├── print_graph.h │ │ │ │ ├── reader.c │ │ │ │ ├── reader.h │ │ │ │ ├── reduce.c │ │ │ │ ├── reduce.h │ │ │ │ ├── relation.c │ │ │ │ ├── relation.h │ │ │ │ ├── scan-code-c.c │ │ │ │ ├── scan-code.c │ │ │ │ ├── scan-code.h │ │ │ │ ├── scan-code.l │ │ │ │ ├── scan-gram-c.c │ │ │ │ ├── scan-gram.c │ │ │ │ ├── scan-gram.h │ │ │ │ ├── scan-gram.l │ │ │ │ ├── scan-skel-c.c │ │ │ │ ├── scan-skel.c │ │ │ │ ├── scan-skel.c.saved │ │ │ │ ├── scan-skel.h │ │ │ │ ├── scan-skel.l │ │ │ │ ├── state.c │ │ │ │ ├── state.h │ │ │ │ ├── symlist.c │ │ │ │ ├── symlist.h │ │ │ │ ├── symtab.c │ │ │ │ ├── symtab.h │ │ │ │ ├── system.h │ │ │ │ ├── tables.c │ │ │ │ ├── tables.h │ │ │ │ ├── uniqstr.c │ │ │ │ └── uniqstr.h │ │ ├── gnulib │ │ │ ├── CMakeLists.txt │ │ │ ├── platform │ │ │ │ ├── posix │ │ │ │ │ ├── config.h │ │ │ │ │ ├── configmake.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── time.h │ │ │ │ │ └── unused-parameter.h │ │ │ │ └── win64 │ │ │ │ │ ├── alloca.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── configmake.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── langinfo.h │ │ │ │ │ ├── locale.h │ │ │ │ │ ├── math.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── spawn.h │ │ │ │ │ ├── stdbool.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── sys │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── time.h │ │ │ │ │ └── wait.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── unitypes.h │ │ │ │ │ ├── uniwidth.h │ │ │ │ │ └── unused-parameter.h │ │ │ └── src │ │ │ │ ├── abitset.c │ │ │ │ ├── abitset.h │ │ │ │ ├── argmatch.c │ │ │ │ ├── argmatch.h │ │ │ │ ├── asnprintf.c │ │ │ │ ├── basename-lgpl.c │ │ │ │ ├── basename.c │ │ │ │ ├── bbitset.h │ │ │ │ ├── binary-io.c │ │ │ │ ├── binary-io.h │ │ │ │ ├── bison-system.h │ │ │ │ ├── bitrotate.c │ │ │ │ ├── bitrotate.h │ │ │ │ ├── bitset.c │ │ │ │ ├── bitset.h │ │ │ │ ├── bitset_stats.c │ │ │ │ ├── bitset_stats.h │ │ │ │ ├── bitsetv-print.c │ │ │ │ ├── bitsetv-print.h │ │ │ │ ├── bitsetv.c │ │ │ │ ├── bitsetv.h │ │ │ │ ├── btowc.c │ │ │ │ ├── c-ctype.c │ │ │ │ ├── c-ctype.h │ │ │ │ ├── c-stack.c │ │ │ │ ├── c-stack.h │ │ │ │ ├── c-strcase.h │ │ │ │ ├── c-strcasecmp.c │ │ │ │ ├── c-strcaseeq.h │ │ │ │ ├── c-strncasecmp.c │ │ │ │ ├── calloc.c │ │ │ │ ├── canonicalize-lgpl.c │ │ │ │ ├── clean-temp.c │ │ │ │ ├── clean-temp.h │ │ │ │ ├── cloexec.c │ │ │ │ ├── cloexec.h │ │ │ │ ├── close-stream.c │ │ │ │ ├── close-stream.h │ │ │ │ ├── close.c │ │ │ │ ├── closein.c │ │ │ │ ├── closein.h │ │ │ │ ├── closeout.c │ │ │ │ ├── closeout.h │ │ │ │ ├── concat-filename.c │ │ │ │ ├── concat-filename.h │ │ │ │ ├── dirname-lgpl.c │ │ │ │ ├── dirname.c │ │ │ │ ├── dirname.h │ │ │ │ ├── dosname.h │ │ │ │ ├── dup-safer-flag.c │ │ │ │ ├── dup-safer.c │ │ │ │ ├── dup2.c │ │ │ │ ├── ebitset.c │ │ │ │ ├── ebitset.h │ │ │ │ ├── error.c │ │ │ │ ├── error.h │ │ │ │ ├── execute.c │ │ │ │ ├── execute.h │ │ │ │ ├── exitfail.c │ │ │ │ ├── exitfail.h │ │ │ │ ├── fatal-signal.c │ │ │ │ ├── fatal-signal.h │ │ │ │ ├── fclose.c │ │ │ │ ├── fcntl.c │ │ │ │ ├── fd-hook.c │ │ │ │ ├── fd-hook.h │ │ │ │ ├── fd-safer-flag.c │ │ │ │ ├── fd-safer.c │ │ │ │ ├── fflush.c │ │ │ │ ├── filename.h │ │ │ │ ├── filenamecat-lgpl.c │ │ │ │ ├── filenamecat.c │ │ │ │ ├── filenamecat.h │ │ │ │ ├── float+.h │ │ │ │ ├── float.c │ │ │ │ ├── fopen-safer.c │ │ │ │ ├── fopen.c │ │ │ │ ├── fpending.c │ │ │ │ ├── fpending.h │ │ │ │ ├── fprintf.c │ │ │ │ ├── fpucw.h │ │ │ │ ├── fpurge.c │ │ │ │ ├── freadahead.c │ │ │ │ ├── freadahead.h │ │ │ │ ├── freading.c │ │ │ │ ├── freading.h │ │ │ │ ├── frexp.c │ │ │ │ ├── fseek.c │ │ │ │ ├── fseeko.c │ │ │ │ ├── fseterr.c │ │ │ │ ├── fseterr.h │ │ │ │ ├── fstat.c │ │ │ │ ├── ftello.c │ │ │ │ ├── get-errno.c │ │ │ │ ├── get-errno.h │ │ │ │ ├── getdtablesize.c │ │ │ │ ├── getopt.c │ │ │ │ ├── getopt1.c │ │ │ │ ├── getopt_int.h │ │ │ │ ├── gettext.h │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── gl_anyhash_list1.h │ │ │ │ ├── gl_anyhash_list2.h │ │ │ │ ├── gl_anylinked_list1.h │ │ │ │ ├── gl_anylinked_list2.h │ │ │ │ ├── gl_anytree_oset.h │ │ │ │ ├── gl_avltree_oset.c │ │ │ │ ├── gl_avltree_oset.h │ │ │ │ ├── gl_linkedhash_list.c │ │ │ │ ├── gl_linkedhash_list.h │ │ │ │ ├── gl_list.c │ │ │ │ ├── gl_list.h │ │ │ │ ├── gl_oset.c │ │ │ │ ├── gl_oset.h │ │ │ │ ├── gl_xlist.c │ │ │ │ ├── gl_xlist.h │ │ │ │ ├── gl_xoset.c │ │ │ │ ├── gl_xoset.h │ │ │ │ ├── glthread │ │ │ │ ├── lock.c │ │ │ │ ├── lock.h │ │ │ │ ├── threadlib.c │ │ │ │ ├── tls.c │ │ │ │ └── tls.h │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── ignore-value.h │ │ │ │ ├── intprops.h │ │ │ │ ├── isnan.c │ │ │ │ ├── isnand-nolibm.h │ │ │ │ ├── isnand.c │ │ │ │ ├── isnanf-nolibm.h │ │ │ │ ├── isnanf.c │ │ │ │ ├── isnanl-nolibm.h │ │ │ │ ├── isnanl.c │ │ │ │ ├── itold.c │ │ │ │ ├── lbitset.c │ │ │ │ ├── lbitset.h │ │ │ │ ├── ldexpl.c │ │ │ │ ├── libiberty.h │ │ │ │ ├── localcharset.c │ │ │ │ ├── localcharset.h │ │ │ │ ├── localeconv.c │ │ │ │ ├── lseek.c │ │ │ │ ├── lstat.c │ │ │ │ ├── malloc.c │ │ │ │ ├── malloca.c │ │ │ │ ├── malloca.h │ │ │ │ ├── math.c │ │ │ │ ├── mbrtowc.c │ │ │ │ ├── mbswidth.c │ │ │ │ ├── mbswidth.h │ │ │ │ ├── mbtowc-impl.h │ │ │ │ ├── mbtowc.c │ │ │ │ ├── memchr.c │ │ │ │ ├── memchr2.c │ │ │ │ ├── memchr2.h │ │ │ │ ├── mkdtemp.c │ │ │ │ ├── mkstemp-safer.c │ │ │ │ ├── mkstemp.c │ │ │ │ ├── msvc-inval.c │ │ │ │ ├── msvc-inval.h │ │ │ │ ├── msvc-nothrow.c │ │ │ │ ├── msvc-nothrow.h │ │ │ │ ├── nl_langinfo.c │ │ │ │ ├── obstack.c │ │ │ │ ├── obstack.h │ │ │ │ ├── obstack_printf.c │ │ │ │ ├── open.c │ │ │ │ ├── palloca.h │ │ │ │ ├── pathmax.h │ │ │ │ ├── penviron.h │ │ │ │ ├── perror.c │ │ │ │ ├── pipe-safer.c │ │ │ │ ├── pipe2-safer.c │ │ │ │ ├── pipe2.c │ │ │ │ ├── printf-args.c │ │ │ │ ├── printf-args.h │ │ │ │ ├── printf-frexp.c │ │ │ │ ├── printf-frexp.h │ │ │ │ ├── printf-frexpl.c │ │ │ │ ├── printf-frexpl.h │ │ │ │ ├── printf-parse.c │ │ │ │ ├── printf-parse.h │ │ │ │ ├── printf.c │ │ │ │ ├── progname.c │ │ │ │ ├── progname.h │ │ │ │ ├── quote.h │ │ │ │ ├── quotearg.c │ │ │ │ ├── quotearg.h │ │ │ │ ├── raise.c │ │ │ │ ├── rawmemchr.c │ │ │ │ ├── readlink.c │ │ │ │ ├── realloc.c │ │ │ │ ├── regcomp.c │ │ │ │ ├── regex.c │ │ │ │ ├── regex.h │ │ │ │ ├── regex_internal.c │ │ │ │ ├── regex_internal.h │ │ │ │ ├── regexec.c │ │ │ │ ├── rename.c │ │ │ │ ├── rmdir.c │ │ │ │ ├── same-inode.h │ │ │ │ ├── secure_getenv.c │ │ │ │ ├── sig-handler.c │ │ │ │ ├── sig-handler.h │ │ │ │ ├── sigaction.c │ │ │ │ ├── siglist.h │ │ │ │ ├── signbitd.c │ │ │ │ ├── signbitf.c │ │ │ │ ├── signbitl.c │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── size_max.h │ │ │ │ ├── snprintf.c │ │ │ │ ├── spawn-pipe.c │ │ │ │ ├── spawn-pipe.h │ │ │ │ ├── spawn_faction_addclose.c │ │ │ │ ├── spawn_faction_adddup2.c │ │ │ │ ├── spawn_faction_addopen.c │ │ │ │ ├── spawn_faction_destroy.c │ │ │ │ ├── spawn_faction_init.c │ │ │ │ ├── spawn_int.h │ │ │ │ ├── spawnattr_destroy.c │ │ │ │ ├── spawnattr_init.c │ │ │ │ ├── spawnattr_setflags.c │ │ │ │ ├── spawnattr_setsigmask.c │ │ │ │ ├── spawni.c │ │ │ │ ├── spawnp.c │ │ │ │ ├── sprintf.c │ │ │ │ ├── stat.c │ │ │ │ ├── stdio--.h │ │ │ │ ├── stdio-impl.h │ │ │ │ ├── stdio-safer.h │ │ │ │ ├── stdio-write.c │ │ │ │ ├── stdlib--.h │ │ │ │ ├── stdlib-safer.h │ │ │ │ ├── stpcpy.c │ │ │ │ ├── str-two-way.h │ │ │ │ ├── strchrnul.c │ │ │ │ ├── strdup.c │ │ │ │ ├── streq.h │ │ │ │ ├── stripslash.c │ │ │ │ ├── strndup.c │ │ │ │ ├── strnlen.c │ │ │ │ ├── strsignal.c │ │ │ │ ├── strstr.c │ │ │ │ ├── strtol.c │ │ │ │ ├── strtoul.c │ │ │ │ ├── strverscmp.c │ │ │ │ ├── tempname.c │ │ │ │ ├── tempname.h │ │ │ │ ├── timevar.c │ │ │ │ ├── timevar.def │ │ │ │ ├── timevar.h │ │ │ │ ├── tmpdir.c │ │ │ │ ├── tmpdir.h │ │ │ │ ├── unistd--.h │ │ │ │ ├── unistd-safer.h │ │ │ │ ├── unistd.c │ │ │ │ ├── uniwidth │ │ │ │ ├── cjk.h │ │ │ │ └── width.c │ │ │ │ ├── unlocked-io.h │ │ │ │ ├── unsetenv.c │ │ │ │ ├── vasnprintf.c │ │ │ │ ├── vasnprintf.h │ │ │ │ ├── vasprintf.c │ │ │ │ ├── vbitset.c │ │ │ │ ├── vbitset.h │ │ │ │ ├── verify.h │ │ │ │ ├── verror.c │ │ │ │ ├── verror.h │ │ │ │ ├── version-etc-fsf.c │ │ │ │ ├── version-etc.c │ │ │ │ ├── version-etc.h │ │ │ │ ├── vfprintf.c │ │ │ │ ├── vsprintf.c │ │ │ │ ├── w32spawn.h │ │ │ │ ├── wait-process.c │ │ │ │ ├── wait-process.h │ │ │ │ ├── waitpid.c │ │ │ │ ├── wcrtomb.c │ │ │ │ ├── wctype-h.c │ │ │ │ ├── wcwidth.c │ │ │ │ ├── xalloc-die.c │ │ │ │ ├── xalloc-oversized.h │ │ │ │ ├── xalloc.h │ │ │ │ ├── xasprintf.c │ │ │ │ ├── xconcat-filename.c │ │ │ │ ├── xmalloc.c │ │ │ │ ├── xmalloca.c │ │ │ │ ├── xmalloca.h │ │ │ │ ├── xmemdup0.c │ │ │ │ ├── xmemdup0.h │ │ │ │ ├── xprintf.c │ │ │ │ ├── xprintf.h │ │ │ │ ├── xsize.c │ │ │ │ ├── xsize.h │ │ │ │ ├── xstrndup.c │ │ │ │ ├── xstrndup.h │ │ │ │ ├── xvasprintf.c │ │ │ │ └── xvasprintf.h │ │ └── m4 │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── builtin.c │ │ │ ├── cpp.cpp │ │ │ ├── debug.c │ │ │ ├── eval.c │ │ │ ├── format.c │ │ │ ├── freeze.c │ │ │ ├── input.c │ │ │ ├── m4.c │ │ │ ├── m4.h │ │ │ ├── macro.c │ │ │ ├── output.c │ │ │ ├── path.c │ │ │ └── symtab.c │ │ ├── flex-old │ │ ├── CMakeLists.txt │ │ ├── FlexLexer.h │ │ ├── ccl.c │ │ ├── config.h │ │ ├── dfa.c │ │ ├── ecs.c │ │ ├── flexdef.h │ │ ├── gen.c │ │ ├── main.c │ │ ├── misc.c │ │ ├── nfa.c │ │ ├── parse.c │ │ ├── parse.h │ │ ├── scan.c │ │ ├── skel.c │ │ ├── sym.c │ │ ├── tblcmp.c │ │ ├── version.h │ │ └── yylex.c │ │ ├── protoc │ │ ├── CMakeLists.txt │ │ └── plugins │ │ │ └── cpp_styleguide │ │ │ ├── CMakeLists.txt │ │ │ ├── cpp_styleguide.cpp │ │ │ └── cpp_styleguide.h │ │ └── yasm │ │ ├── CMakeLists.txt │ │ ├── config.h │ │ ├── frontends │ │ └── yasm │ │ │ ├── yasm-options.c │ │ │ ├── yasm-options.h │ │ │ └── yasm.c │ │ ├── gas-token.c │ │ ├── genstring.c │ │ ├── lc3bid.c │ │ ├── libyasm-stdint.h │ │ ├── libyasm.h │ │ ├── libyasm │ │ ├── arch.h │ │ ├── assocdat.c │ │ ├── assocdat.h │ │ ├── bc-align.c │ │ ├── bc-data.c │ │ ├── bc-incbin.c │ │ ├── bc-org.c │ │ ├── bc-reserve.c │ │ ├── bitvect.c │ │ ├── bitvect.h │ │ ├── bytecode.c │ │ ├── bytecode.h │ │ ├── compat-queue.h │ │ ├── coretype.h │ │ ├── dbgfmt.h │ │ ├── errwarn.c │ │ ├── errwarn.h │ │ ├── expr.c │ │ ├── expr.h │ │ ├── file.c │ │ ├── file.h │ │ ├── floatnum.c │ │ ├── floatnum.h │ │ ├── genmodule.c │ │ ├── hamt.c │ │ ├── hamt.h │ │ ├── insn.c │ │ ├── insn.h │ │ ├── intnum.c │ │ ├── intnum.h │ │ ├── inttree.c │ │ ├── inttree.h │ │ ├── linemap.c │ │ ├── linemap.h │ │ ├── listfmt.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mergesort.c │ │ ├── module.h │ │ ├── module.in │ │ ├── objfmt.h │ │ ├── parser.h │ │ ├── phash.c │ │ ├── phash.h │ │ ├── preproc.h │ │ ├── section.c │ │ ├── section.h │ │ ├── strcasecmp.c │ │ ├── strsep.c │ │ ├── symrec.c │ │ ├── symrec.h │ │ ├── valparam.c │ │ ├── valparam.h │ │ ├── value.c │ │ ├── value.h │ │ ├── xmalloc.c │ │ └── xstrdup.c │ │ ├── license.c │ │ ├── module.c │ │ ├── modules │ │ ├── arch │ │ │ ├── lc3b │ │ │ │ ├── lc3barch.c │ │ │ │ ├── lc3barch.h │ │ │ │ └── lc3bbc.c │ │ │ └── x86 │ │ │ │ ├── x86arch.c │ │ │ │ ├── x86arch.h │ │ │ │ ├── x86bc.c │ │ │ │ ├── x86expr.c │ │ │ │ └── x86id.c │ │ ├── dbgfmts │ │ │ ├── codeview │ │ │ │ ├── cv-dbgfmt.c │ │ │ │ ├── cv-dbgfmt.h │ │ │ │ ├── cv-symline.c │ │ │ │ ├── cv-type.c │ │ │ │ └── cv8.txt │ │ │ ├── dwarf2 │ │ │ │ ├── dwarf2-aranges.c │ │ │ │ ├── dwarf2-dbgfmt.c │ │ │ │ ├── dwarf2-dbgfmt.h │ │ │ │ ├── dwarf2-info.c │ │ │ │ └── dwarf2-line.c │ │ │ ├── null │ │ │ │ └── null-dbgfmt.c │ │ │ └── stabs │ │ │ │ └── stabs-dbgfmt.c │ │ ├── listfmts │ │ │ └── nasm │ │ │ │ └── nasm-listfmt.c │ │ ├── objfmts │ │ │ ├── bin │ │ │ │ └── bin-objfmt.c │ │ │ ├── coff │ │ │ │ ├── coff-objfmt.c │ │ │ │ ├── coff-objfmt.h │ │ │ │ └── win64-except.c │ │ │ ├── dbg │ │ │ │ └── dbg-objfmt.c │ │ │ ├── elf │ │ │ │ ├── elf-machine.h │ │ │ │ ├── elf-objfmt.c │ │ │ │ ├── elf-x86-amd64.c │ │ │ │ ├── elf-x86-x86.c │ │ │ │ ├── elf.c │ │ │ │ └── elf.h │ │ │ ├── macho │ │ │ │ └── macho-objfmt.c │ │ │ ├── rdf │ │ │ │ └── rdf-objfmt.c │ │ │ └── xdf │ │ │ │ └── xdf-objfmt.c │ │ ├── parsers │ │ │ ├── gas │ │ │ │ ├── gas-parse-intel.c │ │ │ │ ├── gas-parse.c │ │ │ │ ├── gas-parser.c │ │ │ │ └── gas-parser.h │ │ │ └── nasm │ │ │ │ ├── nasm-parse.c │ │ │ │ ├── nasm-parser-struct.h │ │ │ │ ├── nasm-parser.c │ │ │ │ └── nasm-parser.h │ │ └── preprocs │ │ │ ├── cpp │ │ │ └── cpp-preproc.c │ │ │ ├── gas │ │ │ ├── gas-eval.c │ │ │ ├── gas-eval.h │ │ │ └── gas-preproc.c │ │ │ ├── nasm │ │ │ ├── genversion.c │ │ │ ├── nasm-eval.c │ │ │ ├── nasm-eval.h │ │ │ ├── nasm-pp.c │ │ │ ├── nasm-pp.h │ │ │ ├── nasm-preproc.c │ │ │ ├── nasm.h │ │ │ ├── nasmlib.c │ │ │ └── nasmlib.h │ │ │ └── raw │ │ │ └── raw-preproc.c │ │ ├── nasm-macros.c │ │ ├── nasm-token.c │ │ ├── nasm-version.c │ │ ├── stdint_msvc.h │ │ ├── test_hd.c │ │ ├── util.h │ │ ├── win64-gas.c │ │ ├── win64-nasm.c │ │ ├── x86cpu.c │ │ ├── x86insn_gas.c │ │ ├── x86insn_nasm.c │ │ ├── x86insns.c │ │ └── x86regtmod.c ├── devtools │ └── ymake │ │ └── buildrules │ │ └── scripts │ │ └── parseenum.lua ├── dict │ ├── dictutil │ │ ├── CMakeLists.txt │ │ ├── ascii.cpp │ │ ├── buf_ptr.h │ │ ├── char_map.h │ │ ├── char_set.cpp │ │ ├── char_set.h │ │ ├── chars.h │ │ ├── charset.cpp │ │ ├── charset.h │ │ ├── defs.h │ │ ├── dictutil.h │ │ ├── encode.cpp │ │ ├── exceptions.cpp │ │ ├── exceptions.h │ │ ├── generated │ │ │ └── zh_tables.cpp │ │ ├── lang_ids.cpp │ │ ├── lang_ids.h │ │ ├── lang_map.h │ │ ├── lang_utils.cpp │ │ ├── map_str.cpp │ │ ├── math.cpp │ │ ├── prefsuff.cpp │ │ ├── script.cpp │ │ ├── split.cpp │ │ ├── static_ctor.h │ │ ├── str.cpp │ │ ├── str.h │ │ ├── str_metric.cpp │ │ ├── str_metric.h │ │ ├── wcs.cpp │ │ └── wcs.h │ └── gazetteer │ │ └── compiler │ │ ├── CMakeLists.txt │ │ └── main.cpp ├── kernel │ └── gazetteer │ │ ├── CMakeLists.txt │ │ ├── articlefilter.cpp │ │ ├── articlefilter.h │ │ ├── articleiter.h │ │ ├── articlepool.cpp │ │ ├── articlepool.h │ │ ├── base.proto │ │ ├── binary.proto │ │ ├── builtin.cpp │ │ ├── builtin.h │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── binaryguard.cpp │ │ ├── binaryguard.h │ │ ├── bytesize.h │ │ ├── compactstorage.h │ │ ├── constptr.h │ │ ├── hashindex.h │ │ ├── packedint.h │ │ ├── parserbase.cpp │ │ ├── parserbase.h │ │ ├── protohelpers.cpp │ │ ├── protohelpers.h │ │ ├── pushinput.h │ │ ├── recode.h │ │ ├── reflectioniter.h │ │ ├── secondhand.h │ │ ├── serialize.h │ │ ├── tokeniterator.h │ │ ├── tokenizer.h │ │ ├── tools.cpp │ │ ├── tools.h │ │ ├── triebuilder.h │ │ └── vector2d.h │ │ ├── config │ │ ├── CMakeLists.txt │ │ ├── protoconf.cpp │ │ └── protoconf.h │ │ ├── descriptors.cpp │ │ ├── descriptors.h │ │ ├── filterdata.cpp │ │ ├── filterdata.h │ │ ├── gazetteer.cpp │ │ ├── gazetteer.h │ │ ├── generator.cpp │ │ ├── generator.h │ │ ├── gztarticle.cpp │ │ ├── gztarticle.h │ │ ├── gztparser.cpp │ │ ├── gztparser.h │ │ ├── gzttrie.cpp │ │ ├── gzttrie.h │ │ ├── inputwords.h │ │ ├── options.h │ │ ├── protoparser.cpp │ │ ├── protoparser.h │ │ ├── protopool.cpp │ │ ├── protopool.h │ │ ├── searchtree.h │ │ ├── sourcetree.cpp │ │ ├── sourcetree.h │ │ ├── syntax.proto │ │ ├── tokenize.cpp │ │ ├── tokenize.h │ │ ├── version.h │ │ ├── worditerator.cpp │ │ └── worditerator.h ├── library │ ├── 2darray │ │ ├── 2d_array.cpp │ │ ├── 2d_array.h │ │ └── CMakeLists.txt │ ├── archive │ │ ├── CMakeLists.txt │ │ ├── yarchive.cpp │ │ └── yarchive.h │ ├── binsaver │ │ ├── BasicFactory.h │ │ ├── BinSaver.cpp │ │ ├── BinSaver.h │ │ ├── BlobIO.cpp │ │ ├── BlobIO.h │ │ ├── BufferedIO.cpp │ │ ├── BufferedIO.h │ │ ├── CMakeLists.txt │ │ ├── UtilStreamIO.cpp │ │ └── UtilStreamIO.h │ ├── chunks │ │ ├── CMakeLists.txt │ │ ├── chunked_helpers.cpp │ │ ├── chunked_helpers.h │ │ ├── reader.cpp │ │ ├── reader.h │ │ ├── writer.cpp │ │ └── writer.h │ ├── comptrie │ │ ├── CMakeLists.txt │ │ ├── array_with_size.h │ │ ├── chunked_helpers_trie.h │ │ ├── compact_vector.h │ │ ├── comptrie.cpp │ │ ├── comptrie.h │ │ ├── comptrie_bool.h │ │ ├── comptrie_builder.h │ │ ├── comptrie_builder_bool.h │ │ ├── comptrie_impl.cpp │ │ ├── comptrie_impl.h │ │ ├── comptrie_packers.h │ │ ├── comptrie_trie.h │ │ ├── comptrie_trie_bool.h │ │ ├── key_selector.h │ │ ├── leaf_skipper.h │ │ ├── make_fast_layout.cpp │ │ ├── make_fast_layout.h │ │ ├── minimize.cpp │ │ ├── minimize.h │ │ ├── node.cpp │ │ ├── node.h │ │ ├── protopacker.h │ │ ├── set.h │ │ ├── write_trie_backwards.cpp │ │ ├── write_trie_backwards.h │ │ ├── writeable_node.cpp │ │ └── writeable_node.h │ ├── getopt │ │ ├── CMakeLists.txt │ │ ├── last_getopt.cpp │ │ ├── last_getopt.h │ │ ├── last_getopt_support.h │ │ ├── opt.cpp │ │ ├── opt.h │ │ ├── opt2.cpp │ │ ├── opt2.h │ │ ├── posix_getopt.cpp │ │ ├── posix_getopt.h │ │ ├── ygetopt.cpp │ │ └── ygetopt.h │ ├── iter │ │ ├── CMakeLists.txt │ │ ├── adaptor.h │ │ ├── base.h │ │ ├── begin_end.h │ │ ├── empty.h │ │ ├── filtering.h │ │ ├── indexed_container.h │ │ ├── integer.h │ │ ├── iter.cpp │ │ ├── iter.h │ │ ├── iter_holder.h │ │ ├── join.h │ │ ├── mapped.h │ │ ├── non_temp.h │ │ ├── range.h │ │ ├── scalar.h │ │ ├── set.h │ │ ├── stl_container.h │ │ ├── super.h │ │ ├── value.h │ │ └── vector.h │ ├── json │ │ ├── CMakeLists.txt │ │ ├── json_prettifier.cpp │ │ ├── json_prettifier.h │ │ ├── json_reader.cpp │ │ ├── json_reader.h │ │ ├── json_value.h │ │ ├── json_writer.cpp │ │ ├── json_writer.h │ │ └── writer │ │ │ ├── CMakeLists.txt │ │ │ ├── json.cpp │ │ │ ├── json.h │ │ │ ├── json_value.cpp │ │ │ └── json_value.h │ ├── lemmer │ │ ├── alpha │ │ │ ├── CMakeLists.txt │ │ │ ├── abc.h │ │ │ ├── abc_code.py │ │ │ ├── abc_code_ut.py │ │ │ ├── abc_data.cpp │ │ │ ├── alphabet.cpp │ │ │ ├── alphaux.h │ │ │ ├── build_abc_data.py │ │ │ ├── diacritics.h │ │ │ ├── directory.cpp │ │ │ ├── directory_ut.cpp │ │ │ ├── generated │ │ │ │ └── abc_data.h │ │ │ ├── normalizer.cpp │ │ │ ├── normalizer_ut.cpp │ │ │ └── ut │ │ │ │ └── CMakeLists.txt │ │ └── dictlib │ │ │ ├── CMakeLists.txt │ │ │ ├── ccl.cpp │ │ │ ├── gleiche.cpp │ │ │ ├── gleiche.h │ │ │ ├── grammarhelper.cpp │ │ │ ├── grammarhelper.h │ │ │ ├── terminals.cpp │ │ │ ├── terminals.h │ │ │ ├── tgrammar_processing.cpp │ │ │ ├── tgrammar_processing.h │ │ │ ├── yx_gram.cpp │ │ │ ├── yx_gram.h │ │ │ ├── yx_gram_enum.cpp │ │ │ └── yx_gram_enum.h │ ├── lfalloc │ │ ├── CMakeLists.txt │ │ ├── lf_allocX64.cpp │ │ └── malloc-info.cpp │ ├── malloc │ │ ├── api │ │ │ ├── CMakeLists.txt │ │ │ ├── malloc.cpp │ │ │ └── malloc.h │ │ └── system │ │ │ ├── CMakeLists.txt │ │ │ └── malloc-info.cpp │ ├── pire │ │ ├── CMakeLists.txt │ │ ├── extraencodings.cpp │ │ ├── inline │ │ │ └── CMakeLists.txt │ │ ├── pcre2pire.cpp │ │ ├── pcre2pire.h │ │ ├── pire.h │ │ └── regexp.h │ ├── protobuf │ │ ├── json │ │ │ ├── CMakeLists.txt │ │ │ ├── inline.cpp │ │ │ ├── inline.h │ │ │ ├── json2proto.cpp │ │ │ ├── json2proto.h │ │ │ ├── proto2json.cpp │ │ │ ├── proto2json.h │ │ │ ├── string_transform.cpp │ │ │ └── string_transform.h │ │ └── util │ │ │ ├── CMakeLists.txt │ │ │ ├── cast.h │ │ │ ├── is_equal.cpp │ │ │ ├── is_equal.h │ │ │ ├── pb_io.cpp │ │ │ ├── pb_io.h │ │ │ ├── pb_utils.h │ │ │ ├── repeated_field_utils.h │ │ │ ├── simple_reflection.h │ │ │ ├── traits.h │ │ │ └── walk.h │ ├── svnversion │ │ ├── CMakeLists.txt │ │ ├── svnversion.cpp │ │ └── svnversion.h │ ├── token │ │ ├── CMakeLists.txt │ │ ├── charfilter.cpp │ │ ├── charfilter.h │ │ ├── enumbitset.h │ │ ├── formtype.h │ │ ├── generated │ │ │ └── custom_decompositions.cpp │ │ ├── nlptypes.cpp │ │ ├── nlptypes.h │ │ ├── token_flags.cpp │ │ ├── token_flags.h │ │ ├── token_structure.h │ │ ├── token_util.cpp │ │ └── token_util.h │ ├── unicode_normalization │ │ ├── CMakeLists.txt │ │ ├── custom_encoder.cpp │ │ ├── custom_encoder.h │ │ ├── decomposition_table.h │ │ ├── generated │ │ │ ├── composition.cpp │ │ │ └── decomposition.cpp │ │ ├── normalization.cpp │ │ └── normalization.h │ └── xsltransform │ │ ├── CMakeLists.txt │ │ ├── catxml.cpp │ │ ├── catxml.h │ │ ├── datefun.cpp │ │ ├── datefun.h │ │ ├── xsltransform.cpp │ │ └── xsltransform.h ├── local.cmake ├── tools │ └── archiver │ │ ├── CMakeLists.txt │ │ └── main.cpp └── util │ ├── CMakeLists.txt │ ├── autoarray.h │ ├── charset │ ├── CMakeLists.txt │ ├── codepage.cpp │ ├── codepage.h │ ├── cp_encrec.cpp │ ├── doccodes.cpp │ ├── doccodes.h │ ├── generated │ │ ├── cp_data.cpp │ │ ├── encrec_data.cpp │ │ ├── unidata.cpp │ │ └── uniscripts.cpp │ ├── iconv.h │ ├── recyr.hh │ ├── recyr_int.hh │ ├── unicode_table.h │ ├── unidata.h │ ├── utf.cpp │ ├── utf.h │ ├── wide.cpp │ └── wide.h │ ├── cpp11.h │ ├── datetime │ ├── CMakeLists.txt │ ├── base.cpp │ ├── base.h │ ├── cputimer.cpp │ ├── cputimer.h │ ├── strptime.cpp │ ├── systime.cpp │ └── systime.h │ ├── digest │ ├── CMakeLists.txt │ ├── city.cpp │ ├── city.h │ ├── crc.cpp │ ├── crc.h │ ├── crc.i │ ├── iterator.h │ ├── md5.cpp │ ├── md5.h │ ├── murmur.cpp │ ├── murmur.h │ └── numeric.h │ ├── draft │ ├── CMakeLists.txt │ ├── accessors.h │ ├── accessors_impl.h │ ├── align.h │ ├── bitutils.cpp │ ├── bitutils.h │ ├── delim_file_iter.cpp │ ├── delim_file_iter.h │ ├── delim_stroka_iter.h │ ├── format.cpp │ ├── format.h │ ├── matrix.h │ ├── memory_traits.h │ ├── relaxed_escaper.h │ └── variant.h │ ├── ffb.cpp │ ├── ffb.h │ ├── fgood.h │ ├── fileptr.cpp │ ├── folder │ ├── CMakeLists.txt │ ├── dirent_win.c │ ├── dirent_win.h │ ├── dirut.cpp │ ├── dirut.h │ ├── filelist.cpp │ ├── filelist.h │ ├── fts.cpp │ ├── fts.h │ ├── iterator.cpp │ ├── iterator.h │ ├── lstat_win.c │ ├── lstat_win.h │ ├── path.cpp │ ├── path.h │ ├── pathsplit.cpp │ └── pathsplit.h │ ├── fput.h │ ├── generic │ ├── CMakeLists.txt │ ├── algorithm.h │ ├── array.h │ ├── avltree.h │ ├── bitmap.h │ ├── bitops.h │ ├── buffer.cpp │ ├── buffer.h │ ├── cast.h │ ├── char_buf.h │ ├── chartraits.cpp │ ├── chartraits.h │ ├── deque.h │ ├── fastqueue.h │ ├── forward.h │ ├── fwd.h │ ├── hash.h │ ├── hash_set.h │ ├── intrlist.h │ ├── iterator.h │ ├── list.h │ ├── map.h │ ├── mapfindptr.h │ ├── maybe.h │ ├── move.h │ ├── noncopyable.h │ ├── pair.cpp │ ├── pair.h │ ├── ptr.cpp │ ├── ptr.h │ ├── queue.h │ ├── ref.h │ ├── refcount.h │ ├── region.h │ ├── reinterpretcast.h │ ├── set.h │ ├── singleton.cpp │ ├── singleton.h │ ├── stack.h │ ├── static_assert.h │ ├── stlfwd.h │ ├── strbuf.cpp │ ├── strbuf.h │ ├── strfcpy.cpp │ ├── strfcpy.h │ ├── stroka.cpp │ ├── stroka.h │ ├── stroka_io.cpp │ ├── stroka_io.h │ ├── stroka_stdio.cpp │ ├── typehelpers.h │ ├── typelist.h │ ├── typetraits.h │ ├── utility.h │ ├── vector.h │ ├── yexception.cpp │ ├── yexception.h │ ├── ylimits.h │ ├── ymath.cpp │ └── ymath.h │ ├── lambda │ ├── CMakeLists.txt │ ├── bind.h │ ├── function.h │ ├── function_traits.h │ ├── generated │ │ └── bind.h │ ├── lib.cpp │ └── memfun.h │ ├── mbitmap.cpp │ ├── mbitmap.h │ ├── memory │ ├── CMakeLists.txt │ ├── addstorage.h │ ├── alloc.cpp │ ├── alloc.h │ ├── blob.cpp │ ├── blob.h │ ├── pool.cpp │ ├── pool.h │ ├── segmented_string_pool.h │ ├── smallobj.h │ ├── tempbuf.cpp │ └── tempbuf.h │ ├── network │ ├── CMakeLists.txt │ ├── address.h │ ├── hostip.h │ ├── init.cpp │ ├── init.h │ ├── iovec.h │ ├── ip.h │ ├── pair.cpp │ ├── pair.h │ ├── pollerimpl.h │ ├── socket.cpp │ └── socket.h │ ├── random │ ├── CMakeLists.txt │ ├── entropy.cpp │ ├── entropy.h │ ├── mersenne.cpp │ ├── mersenne.h │ ├── mersenne32.h │ ├── mersenne64.h │ ├── randcpp.cpp │ ├── randcpp.h │ ├── random.cpp │ └── random.h │ ├── regexp │ ├── CMakeLists.txt │ ├── glob.cpp │ ├── glob_compat.h │ ├── regexp.cpp │ └── regexp.h │ ├── str_hash.cpp │ ├── str_hash.h │ ├── str_map.h │ ├── str_stl.h │ ├── stream │ ├── CMakeLists.txt │ ├── aligned.h │ ├── base.h │ ├── buffer.cpp │ ├── buffer.h │ ├── buffered.cpp │ ├── buffered.h │ ├── bzip2.h │ ├── chunk.cpp │ ├── chunk.h │ ├── debug.cpp │ ├── debug.h │ ├── factory.cpp │ ├── factory.h │ ├── file.cpp │ ├── file.h │ ├── format.cpp │ ├── format.h │ ├── helpers.cpp │ ├── helpers.h │ ├── holder.h │ ├── input.cpp │ ├── input.h │ ├── ios.h │ ├── length.cpp │ ├── length.h │ ├── lz.cpp │ ├── lz.h │ ├── lzma.h │ ├── mem.cpp │ ├── mem.h │ ├── multi.h │ ├── null.cpp │ ├── null.h │ ├── output.cpp │ ├── output.h │ ├── pipe.cpp │ ├── pipe.h │ ├── printf.cpp │ ├── printf.h │ ├── stack.h │ ├── stack_factory.h │ ├── stack_file.cpp │ ├── stack_input.h │ ├── stack_input_file.h │ ├── stack_output.h │ ├── stack_output_file.h │ ├── str.cpp │ ├── str.h │ ├── tee.cpp │ ├── tee.h │ ├── tempbuf.h │ ├── walk.h │ ├── zerocopy.h │ ├── zlib.cpp │ └── zlib.h │ ├── string │ ├── CMakeLists.txt │ ├── ascii.cpp │ ├── ascii.h │ ├── base64.cpp │ ├── base64.h │ ├── builder.cpp │ ├── builder.h │ ├── cast.cc │ ├── cast.h │ ├── cat.h │ ├── cstriter.h │ ├── dtoa.cpp │ ├── dtoa.i │ ├── dtoa_impl.cpp │ ├── encodexml.cpp │ ├── encodexml.h │ ├── escape.cpp │ ├── escape.h │ ├── hex.cpp │ ├── hex.h │ ├── kmp.cpp │ ├── kmp.h │ ├── pcdata.cpp │ ├── pcdata.h │ ├── printf.cpp │ ├── printf.h │ ├── quote.cpp │ ├── quote.h │ ├── split.cpp │ ├── split.h │ ├── split_iterator.cpp │ ├── split_iterator.h │ ├── strip.cpp │ ├── strip.h │ ├── strspn.h │ ├── subst.h │ ├── traits.h │ ├── type.cpp │ ├── type.h │ ├── url.cpp │ ├── url.h │ ├── util.cpp │ ├── util.h │ ├── vector.cpp │ └── vector.h │ ├── system │ ├── CMakeLists.txt │ ├── align.h │ ├── atexit.cpp │ ├── atexit.h │ ├── atomic.h │ ├── atomic_gcc.h │ ├── atomic_ops.h │ ├── atomic_win.h │ ├── atomic_x86.h │ ├── backtrace.cpp │ ├── backtrace.h │ ├── byteorder.h │ ├── compat.cpp │ ├── compat.h │ ├── condvar.cpp │ ├── condvar.h │ ├── context_x86.asm │ ├── context_x86_64.asm │ ├── datetime.cpp │ ├── datetime.h │ ├── defaults.h │ ├── demangle.cpp │ ├── demangle.h │ ├── dynlib.cpp │ ├── dynlib.h │ ├── env.cpp │ ├── env.h │ ├── err.cpp │ ├── error.cpp │ ├── error.h │ ├── event.cpp │ ├── event.h │ ├── execpath.cpp │ ├── execpath.h │ ├── fasttime.cpp │ ├── fasttime.h │ ├── fhandle.h │ ├── file.cpp │ ├── file.h │ ├── filemap.cpp │ ├── filemap.h │ ├── flock.cpp │ ├── flock.h │ ├── freeBSD_mktemp.cpp │ ├── fs.cpp │ ├── fs.h │ ├── fs_win.cpp │ ├── fs_win.h │ ├── fstat.cpp │ ├── fstat.h │ ├── guard.h │ ├── hostname.cpp │ ├── hostname.h │ ├── hp_timer.cpp │ ├── hp_timer.h │ ├── info.cpp │ ├── info.h │ ├── maxlen.h │ ├── mlock.cpp │ ├── mlock.h │ ├── mutex.cpp │ ├── mutex.h │ ├── oldfile.cpp │ ├── oldfile.h │ ├── pipe.cpp │ ├── pipe.h │ ├── platform.h │ ├── progname.cpp │ ├── progname.h │ ├── rusage.cpp │ ├── rusage.h │ ├── rwlock.cpp │ ├── rwlock.h │ ├── sem.cpp │ ├── sem.h │ ├── spinlock.cpp │ ├── spinlock.h │ ├── src_root.cpp │ ├── src_root.h │ ├── strlcpy.c │ ├── sysstat.cpp │ ├── sysstat.h │ ├── tempfile.h │ ├── thread.cpp │ ├── thread.h │ ├── thread.i │ ├── tls.cpp │ ├── tls.h │ ├── user.cpp │ ├── user.h │ ├── valgrind.h │ ├── winint.h │ ├── yassert.cpp │ ├── yassert.h │ ├── yield.cpp │ └── yield.h │ ├── thread │ ├── CMakeLists.txt │ ├── lfstack.h │ ├── pool.cpp │ ├── pool.h │ ├── queue.cpp │ ├── queue.h │ ├── singleton.h │ ├── tasks.cpp │ └── tasks.h │ ├── ysafeptr.cpp │ ├── ysafeptr.h │ ├── ysaveload.cpp │ └── ysaveload.h └── tests ├── bastard_mode ├── dic.gzt ├── facttypes.proto ├── gram.cxx └── text.txt ├── config_bastard_mode_always.proto ├── config_bastard_mode_no.proto ├── config_bastard_mode_outofdict.proto └── correct ├── config_bastard_mode_always.proto.out ├── config_bastard_mode_no.proto.out └── config_bastard_mode_outofdict.proto.out /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/en/dg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/README.md -------------------------------------------------------------------------------- /docs/en/dg/all-labels-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/all-labels-list.md -------------------------------------------------------------------------------- /docs/en/dg/debug-grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/debug-grammar.md -------------------------------------------------------------------------------- /docs/en/dg/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/example.md -------------------------------------------------------------------------------- /docs/en/dg/gazetteer-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/gazetteer-syntax.md -------------------------------------------------------------------------------- /docs/en/dg/grammemes-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/grammemes-values.md -------------------------------------------------------------------------------- /docs/en/dg/images/debughtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/images/debughtml.png -------------------------------------------------------------------------------- /docs/en/dg/interpretation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/interpretation.md -------------------------------------------------------------------------------- /docs/en/dg/labels-limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/labels-limits.md -------------------------------------------------------------------------------- /docs/en/dg/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/link.md -------------------------------------------------------------------------------- /docs/en/dg/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/overview.md -------------------------------------------------------------------------------- /docs/en/dg/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/rules.md -------------------------------------------------------------------------------- /docs/en/dg/run-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/run-parser.md -------------------------------------------------------------------------------- /docs/en/dg/syntax-grammars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/syntax-grammars.md -------------------------------------------------------------------------------- /docs/en/dg/syntax-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/syntax-labels.md -------------------------------------------------------------------------------- /docs/en/dg/terminals-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/terminals-list.md -------------------------------------------------------------------------------- /docs/en/dg/unobvious-solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/dg/unobvious-solutions.md -------------------------------------------------------------------------------- /docs/en/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/README.md -------------------------------------------------------------------------------- /docs/en/tutorial/basic-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/basic-rules.md -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut1_po.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut1_po.png -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut1_po2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut1_po2.png -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut2_po1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut2_po1.png -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut2_po2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut2_po2.png -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut2_po3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut2_po3.png -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut2_po4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut2_po4.png -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut2_po5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut2_po5.png -------------------------------------------------------------------------------- /docs/en/tutorial/images/tut2_po6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/images/tut2_po6.png -------------------------------------------------------------------------------- /docs/en/tutorial/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/include.md -------------------------------------------------------------------------------- /docs/en/tutorial/interpretation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/interpretation.md -------------------------------------------------------------------------------- /docs/en/tutorial/kwtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/kwtype.md -------------------------------------------------------------------------------- /docs/en/tutorial/limits-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/limits-fields.md -------------------------------------------------------------------------------- /docs/en/tutorial/limits-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/limits-labels.md -------------------------------------------------------------------------------- /docs/en/tutorial/mainword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/mainword.md -------------------------------------------------------------------------------- /docs/en/tutorial/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/operators.md -------------------------------------------------------------------------------- /docs/en/tutorial/pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/pattern.md -------------------------------------------------------------------------------- /docs/en/tutorial/source-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/en/tutorial/source-files.md -------------------------------------------------------------------------------- /docs/ru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/README.md -------------------------------------------------------------------------------- /docs/ru/dg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/README.md -------------------------------------------------------------------------------- /docs/ru/dg/all-labels-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/all-labels-list.md -------------------------------------------------------------------------------- /docs/ru/dg/debug-grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/debug-grammar.md -------------------------------------------------------------------------------- /docs/ru/dg/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/example.md -------------------------------------------------------------------------------- /docs/ru/dg/gazetteer-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/gazetteer-syntax.md -------------------------------------------------------------------------------- /docs/ru/dg/grammemes-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/grammemes-values.md -------------------------------------------------------------------------------- /docs/ru/dg/images/debughtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/images/debughtml.png -------------------------------------------------------------------------------- /docs/ru/dg/interpretation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/interpretation.md -------------------------------------------------------------------------------- /docs/ru/dg/labels-limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/labels-limits.md -------------------------------------------------------------------------------- /docs/ru/dg/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/link.md -------------------------------------------------------------------------------- /docs/ru/dg/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/overview.md -------------------------------------------------------------------------------- /docs/ru/dg/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/rules.md -------------------------------------------------------------------------------- /docs/ru/dg/run-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/run-parser.md -------------------------------------------------------------------------------- /docs/ru/dg/syntax-grammars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/syntax-grammars.md -------------------------------------------------------------------------------- /docs/ru/dg/syntax-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/syntax-labels.md -------------------------------------------------------------------------------- /docs/ru/dg/terminals-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/terminals-list.md -------------------------------------------------------------------------------- /docs/ru/dg/unobvious-solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/dg/unobvious-solutions.md -------------------------------------------------------------------------------- /docs/ru/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/README.md -------------------------------------------------------------------------------- /docs/ru/tutorial/basic-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/basic-rules.md -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut1_po.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut1_po.png -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut1_po2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut1_po2.png -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut2_po1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut2_po1.png -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut2_po2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut2_po2.png -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut2_po3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut2_po3.png -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut2_po4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut2_po4.png -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut2_po5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut2_po5.png -------------------------------------------------------------------------------- /docs/ru/tutorial/images/tut2_po6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/images/tut2_po6.png -------------------------------------------------------------------------------- /docs/ru/tutorial/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/include.md -------------------------------------------------------------------------------- /docs/ru/tutorial/interpretation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/interpretation.md -------------------------------------------------------------------------------- /docs/ru/tutorial/kwtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/kwtype.md -------------------------------------------------------------------------------- /docs/ru/tutorial/limits-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/limits-fields.md -------------------------------------------------------------------------------- /docs/ru/tutorial/limits-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/limits-labels.md -------------------------------------------------------------------------------- /docs/ru/tutorial/mainword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/mainword.md -------------------------------------------------------------------------------- /docs/ru/tutorial/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/operators.md -------------------------------------------------------------------------------- /docs/ru/tutorial/pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/pattern.md -------------------------------------------------------------------------------- /docs/ru/tutorial/source-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/tutorial/source-files.md -------------------------------------------------------------------------------- /docs/ru/video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/docs/ru/video/README.md -------------------------------------------------------------------------------- /examples/algfio/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/algfio/config.proto -------------------------------------------------------------------------------- /examples/algfio/facttypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/algfio/facttypes.proto -------------------------------------------------------------------------------- /examples/algfio/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/algfio/mydic.gzt -------------------------------------------------------------------------------- /examples/algfio/people.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/algfio/people.cxx -------------------------------------------------------------------------------- /examples/algfio/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/algfio/test.txt -------------------------------------------------------------------------------- /examples/bornin/bornin.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/bornin/bornin.cxx -------------------------------------------------------------------------------- /examples/bornin/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/bornin/config.proto -------------------------------------------------------------------------------- /examples/bornin/dic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/bornin/dic.gzt -------------------------------------------------------------------------------- /examples/bornin/facttypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/bornin/facttypes.proto -------------------------------------------------------------------------------- /examples/bornin/kwtypes_my.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/bornin/kwtypes_my.proto -------------------------------------------------------------------------------- /examples/bornin/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/bornin/test.txt -------------------------------------------------------------------------------- /examples/factxml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/factxml.xsd -------------------------------------------------------------------------------- /examples/minimal/config.proto: -------------------------------------------------------------------------------- 1 | encoding "utf8"; 2 | 3 | TTextMinerConfig { 4 | Dictionary = "mydic.gzt"; 5 | } 6 | -------------------------------------------------------------------------------- /examples/minimal/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/minimal/mydic.gzt -------------------------------------------------------------------------------- /examples/parsefacts/C++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/parsefacts/C++/Makefile -------------------------------------------------------------------------------- /examples/parsefacts/C++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/parsefacts/C++/main.cpp -------------------------------------------------------------------------------- /examples/parsefacts/C++/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/parsefacts/C++/readme.md -------------------------------------------------------------------------------- /examples/parsefacts/Ruby/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/parsefacts/Ruby/generate.sh -------------------------------------------------------------------------------- /examples/parsefacts/facts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/parsefacts/facts.proto -------------------------------------------------------------------------------- /examples/sample/config.proto: -------------------------------------------------------------------------------- 1 | encoding "utf8"; 2 | 3 | TTextMinerConfig { 4 | Dictionary = "mydic.gzt"; 5 | } 6 | -------------------------------------------------------------------------------- /examples/sample/date.cxx: -------------------------------------------------------------------------------- 1 | #encoding "utf-8" 2 | #GRAMMAR_ROOT S 3 | -------------------------------------------------------------------------------- /examples/sample/facttypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/sample/facttypes.proto -------------------------------------------------------------------------------- /examples/sample/film.cxx: -------------------------------------------------------------------------------- 1 | #encoding "utf-8" 2 | #GRAMMAR_ROOT S 3 | 4 | -------------------------------------------------------------------------------- /examples/sample/genre.gzt: -------------------------------------------------------------------------------- 1 | encoding "utf8"; 2 | 3 | -------------------------------------------------------------------------------- /examples/sample/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/sample/input.txt -------------------------------------------------------------------------------- /examples/sample/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/sample/mydic.gzt -------------------------------------------------------------------------------- /examples/tutorial1/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial1/config.proto -------------------------------------------------------------------------------- /examples/tutorial1/first.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial1/first.cxx -------------------------------------------------------------------------------- /examples/tutorial1/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial1/mydic.gzt -------------------------------------------------------------------------------- /examples/tutorial1/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial1/test.txt -------------------------------------------------------------------------------- /examples/tutorial2/adjperson.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial2/adjperson.cxx -------------------------------------------------------------------------------- /examples/tutorial2/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial2/config.proto -------------------------------------------------------------------------------- /examples/tutorial2/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial2/mydic.gzt -------------------------------------------------------------------------------- /examples/tutorial2/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial2/test1.txt -------------------------------------------------------------------------------- /examples/tutorial2/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial2/test2.txt -------------------------------------------------------------------------------- /examples/tutorial2/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial2/test3.txt -------------------------------------------------------------------------------- /examples/tutorial3/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial3/config.proto -------------------------------------------------------------------------------- /examples/tutorial3/fioborn.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial3/fioborn.cxx -------------------------------------------------------------------------------- /examples/tutorial3/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial3/mydic.gzt -------------------------------------------------------------------------------- /examples/tutorial3/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial3/test.txt -------------------------------------------------------------------------------- /examples/tutorial4/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial4/config.proto -------------------------------------------------------------------------------- /examples/tutorial4/date.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial4/date.cxx -------------------------------------------------------------------------------- /examples/tutorial4/facttypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial4/facttypes.proto -------------------------------------------------------------------------------- /examples/tutorial4/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial4/mydic.gzt -------------------------------------------------------------------------------- /examples/tutorial4/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial4/test.txt -------------------------------------------------------------------------------- /examples/tutorial5/animals_dict.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/animals_dict.gzt -------------------------------------------------------------------------------- /examples/tutorial5/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/config.proto -------------------------------------------------------------------------------- /examples/tutorial5/date.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/date.cxx -------------------------------------------------------------------------------- /examples/tutorial5/facttypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/facttypes.proto -------------------------------------------------------------------------------- /examples/tutorial5/kwtypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/kwtypes.proto -------------------------------------------------------------------------------- /examples/tutorial5/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/main.cxx -------------------------------------------------------------------------------- /examples/tutorial5/mammals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/mammals.txt -------------------------------------------------------------------------------- /examples/tutorial5/mydic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/mydic.gzt -------------------------------------------------------------------------------- /examples/tutorial5/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/examples/tutorial5/test.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/FactExtract/Parser/afdocparser/afdocruspureparserlib/afdoc.cpp: -------------------------------------------------------------------------------- 1 | #include "afdoc.h" 2 | -------------------------------------------------------------------------------- /src/FactExtract/Parser/common/docreaders/docstreambase.cpp: -------------------------------------------------------------------------------- 1 | #include "docstreambase.h" 2 | 3 | -------------------------------------------------------------------------------- /src/FactExtract/Parser/geo_hierarchy/geo_hierarchy.cpp: -------------------------------------------------------------------------------- 1 | #include "geo_hierarchy.h" 2 | 3 | -------------------------------------------------------------------------------- /src/FactExtract/Parser/tomita-parser/aftextminer.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | //#include "resource.h" 4 | -------------------------------------------------------------------------------- /src/bindings/c/mystem/iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/bindings/c/mystem/iface.h -------------------------------------------------------------------------------- /src/cmake/include/FindPerl2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/FindPerl2.cmake -------------------------------------------------------------------------------- /src/cmake/include/UsePerl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/UsePerl.cmake -------------------------------------------------------------------------------- /src/cmake/include/UsePython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/UsePython.cmake -------------------------------------------------------------------------------- /src/cmake/include/UseSwig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/UseSwig.cmake -------------------------------------------------------------------------------- /src/cmake/include/att_udf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/att_udf.cmake -------------------------------------------------------------------------------- /src/cmake/include/buildlibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/buildlibs.cmake -------------------------------------------------------------------------------- /src/cmake/include/buildrules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/buildrules.cmake -------------------------------------------------------------------------------- /src/cmake/include/codgen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/codgen.cmake -------------------------------------------------------------------------------- /src/cmake/include/compilerinit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/compilerinit.cmake -------------------------------------------------------------------------------- /src/cmake/include/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/config.cmake -------------------------------------------------------------------------------- /src/cmake/include/debugtools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/debugtools.cmake -------------------------------------------------------------------------------- /src/cmake/include/deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/deps.cmake -------------------------------------------------------------------------------- /src/cmake/include/dtmk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/dtmk.cmake -------------------------------------------------------------------------------- /src/cmake/include/fwd_compat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/fwd_compat.cmake -------------------------------------------------------------------------------- /src/cmake/include/gazetteer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/gazetteer.cmake -------------------------------------------------------------------------------- /src/cmake/include/genscheeme.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/genscheeme.cmake -------------------------------------------------------------------------------- /src/cmake/include/global.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/global.cmake -------------------------------------------------------------------------------- /src/cmake/include/packages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/packages.cmake -------------------------------------------------------------------------------- /src/cmake/include/pire_inline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/pire_inline.cmake -------------------------------------------------------------------------------- /src/cmake/include/scripts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/scripts.cmake -------------------------------------------------------------------------------- /src/cmake/include/suffixes.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/suffixes.cmake -------------------------------------------------------------------------------- /src/cmake/include/svn_info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/svn_info.lua -------------------------------------------------------------------------------- /src/cmake/include/tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/tools.cmake -------------------------------------------------------------------------------- /src/cmake/include/xsyn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/cmake/include/xsyn.cmake -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/common.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/crypto.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/date.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/dynamic.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/exslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/exslt.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/exslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/exslt.h -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/libexslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/libexslt.h -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/math.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/saxon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/saxon.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/sets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/sets.c -------------------------------------------------------------------------------- /src/contrib/libs/libexslt/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libexslt/strings.c -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/aliases.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/aliases2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/aliases2.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/ascii.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/atarist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/atarist.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/big5.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/c99.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/c99.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/ces_big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/ces_big5.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/ces_gbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/ces_gbk.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cns11643.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cns11643.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/config.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1046.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1124.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1124.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1125.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1125.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1129.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1129.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1131.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1131.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1133.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1133.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1161.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1162.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1162.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1163.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1250.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1251.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1251.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1252.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1252.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1253.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1254.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1255.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1256.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1257.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1257.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp1258.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp1258.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp437.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp737.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp737.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp775.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp775.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp850.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp852.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp852.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp853.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp853.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp855.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp856.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp856.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp857.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp857.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp858.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp858.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp860.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp860.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp861.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp861.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp862.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp862.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp863.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp863.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp864.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp864.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp865.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp866.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp866.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp869.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp869.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp874.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp874.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp922.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp922.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp932.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp932.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp932ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp932ext.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp936.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp936.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp936ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp936ext.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp943.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp943.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp949.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp949.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp950.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp950.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/cp950ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/cp950ext.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/euc_cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/euc_cn.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/flags.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/gbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/gbk.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/hz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/hz.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/iconv.c -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/iconv.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/java.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/johab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/johab.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/loops.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/pt154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/pt154.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/sjis.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/tcvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/tcvn.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/ucs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/ucs2.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/ucs4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/ucs4.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/uhc_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/uhc_1.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/uhc_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/uhc_2.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/utf16.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/utf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/utf32.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/utf7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/utf7.h -------------------------------------------------------------------------------- /src/contrib/libs/libiconv/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libiconv/utf8.h -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/attrvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/attrvt.c -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/extra.c -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/extra.h -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/keys.c -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/keys.h -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/trio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/trio.h -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/xslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/xslt.c -------------------------------------------------------------------------------- /src/contrib/libs/libxslt/xslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/libxslt/xslt.h -------------------------------------------------------------------------------- /src/contrib/libs/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/lz4/lz4.c -------------------------------------------------------------------------------- /src/contrib/libs/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/lz4/lz4.h -------------------------------------------------------------------------------- /src/contrib/libs/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/lz4/lz4hc.c -------------------------------------------------------------------------------- /src/contrib/libs/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/lz4/lz4hc.h -------------------------------------------------------------------------------- /src/contrib/libs/pcre/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/config.h -------------------------------------------------------------------------------- /src/contrib/libs/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/pcre.h -------------------------------------------------------------------------------- /src/contrib/libs/pcre/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/pcre_exec.c -------------------------------------------------------------------------------- /src/contrib/libs/pcre/pcre_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/pcre_get.c -------------------------------------------------------------------------------- /src/contrib/libs/pcre/pcre_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/pcre_info.c -------------------------------------------------------------------------------- /src/contrib/libs/pcre/pcreposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/pcreposix.c -------------------------------------------------------------------------------- /src/contrib/libs/pcre/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/pcreposix.h -------------------------------------------------------------------------------- /src/contrib/libs/pcre/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/rename.h -------------------------------------------------------------------------------- /src/contrib/libs/pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/ucp.h -------------------------------------------------------------------------------- /src/contrib/libs/pcre/ucptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pcre/ucptable.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pire/pire/any.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pire/pire/defs.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pire/pire/easy.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pire/pire/fsm.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pire/pire/glue.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/pire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pire/pire/pire.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/pire/pire/run.h -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/stub/lexical_cast.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/contrib/libs/pire/pire/stub/saveload.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /src/contrib/libs/stlport/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/stlport/config.h -------------------------------------------------------------------------------- /src/contrib/libs/stlport/stlport-5.1.4/stlport/stl/config/_aix.h: -------------------------------------------------------------------------------- 1 | #define _STLP_PLATFORM "AIX" 2 | -------------------------------------------------------------------------------- /src/contrib/libs/stlport/stlport-5.1.4/stlport/stl/config/_freebsd.h: -------------------------------------------------------------------------------- 1 | #define _STLP_PLATFORM "Free BSD" 2 | -------------------------------------------------------------------------------- /src/contrib/libs/stlport/stlport-5.1.4/stlport/stl/config/_mac.h: -------------------------------------------------------------------------------- 1 | #define _STLP_PLATFORM "Mac" 2 | -------------------------------------------------------------------------------- /src/contrib/libs/stlport/stlport-5.1.4/stlport/stl/config/_netware.h: -------------------------------------------------------------------------------- 1 | #define _STLP_PLATFORM "Novell Netware" 2 | -------------------------------------------------------------------------------- /src/contrib/libs/stlport/stlport-5.1.4/stlport/stl/config/_openbsd.h: -------------------------------------------------------------------------------- 1 | #define _STLP_PLATFORM "Open BSD" 2 | -------------------------------------------------------------------------------- /src/contrib/libs/stlport/stlport-5.1.4/stlport/using/h/streambuf.h: -------------------------------------------------------------------------------- 1 | using ::streambuf; 2 | -------------------------------------------------------------------------------- /src/contrib/libs/stlport/stlport-5.1.4/stlport/vendor: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define STL_VENDOR_STLPORT 1 4 | -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl.c -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_buf.c -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_buf.h -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_gen.c -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_gen.h -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_lex.c -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_lex.h -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_tree.c -------------------------------------------------------------------------------- /src/contrib/libs/yajl/yajl_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/yajl/yajl_tree.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/adler32.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/compress.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/crc32.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/crc32.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/deflate.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/deflate.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/gzclose.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/gzguts.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/gzlib.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/gzread.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/infback.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/inffast.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/inffast.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/inffixed.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/inflate.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/inflate.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/trees.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/trees.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/zconf.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/zlib.h -------------------------------------------------------------------------------- /src/contrib/libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/zutil.c -------------------------------------------------------------------------------- /src/contrib/libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/libs/zlib/zutil.h -------------------------------------------------------------------------------- /src/contrib/tools/bison/bison/src/arcadia-root.c.in: -------------------------------------------------------------------------------- 1 | const char* arcadia_root() { return "@ARCADIA_ROOT@"; } 2 | -------------------------------------------------------------------------------- /src/contrib/tools/bison/gnulib/platform/win64/configmake.h: -------------------------------------------------------------------------------- 1 | /* DO NOT EDIT! GENERATED AUTOMATICALLY! */ 2 | -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/ccl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/ccl.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/dfa.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/ecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/ecs.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/gen.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/main.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/misc.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/nfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/nfa.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/scan.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/skel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/skel.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/flex-old/sym.c -------------------------------------------------------------------------------- /src/contrib/tools/flex-old/version.h: -------------------------------------------------------------------------------- 1 | #define FLEX_VERSION "2.5.4" 2 | -------------------------------------------------------------------------------- /src/contrib/tools/yasm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/config.h -------------------------------------------------------------------------------- /src/contrib/tools/yasm/lc3bid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/lc3bid.c -------------------------------------------------------------------------------- /src/contrib/tools/yasm/libyasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/libyasm.h -------------------------------------------------------------------------------- /src/contrib/tools/yasm/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/license.c -------------------------------------------------------------------------------- /src/contrib/tools/yasm/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/module.c -------------------------------------------------------------------------------- /src/contrib/tools/yasm/test_hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/test_hd.c -------------------------------------------------------------------------------- /src/contrib/tools/yasm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/util.h -------------------------------------------------------------------------------- /src/contrib/tools/yasm/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/x86cpu.c -------------------------------------------------------------------------------- /src/contrib/tools/yasm/x86insns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/contrib/tools/yasm/x86insns.c -------------------------------------------------------------------------------- /src/dict/dictutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/CMakeLists.txt -------------------------------------------------------------------------------- /src/dict/dictutil/ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/ascii.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/buf_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/buf_ptr.h -------------------------------------------------------------------------------- /src/dict/dictutil/char_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/char_map.h -------------------------------------------------------------------------------- /src/dict/dictutil/char_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/char_set.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/char_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/char_set.h -------------------------------------------------------------------------------- /src/dict/dictutil/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/chars.h -------------------------------------------------------------------------------- /src/dict/dictutil/charset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/charset.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/charset.h -------------------------------------------------------------------------------- /src/dict/dictutil/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/defs.h -------------------------------------------------------------------------------- /src/dict/dictutil/dictutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/dictutil.h -------------------------------------------------------------------------------- /src/dict/dictutil/encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/encode.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/exceptions.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/exceptions.h -------------------------------------------------------------------------------- /src/dict/dictutil/lang_ids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/lang_ids.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/lang_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/lang_ids.h -------------------------------------------------------------------------------- /src/dict/dictutil/lang_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/lang_map.h -------------------------------------------------------------------------------- /src/dict/dictutil/lang_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/lang_utils.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/map_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/map_str.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/math.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/prefsuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/prefsuff.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/script.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/split.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/static_ctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/static_ctor.h -------------------------------------------------------------------------------- /src/dict/dictutil/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/str.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/str.h -------------------------------------------------------------------------------- /src/dict/dictutil/str_metric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/str_metric.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/str_metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/str_metric.h -------------------------------------------------------------------------------- /src/dict/dictutil/wcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/wcs.cpp -------------------------------------------------------------------------------- /src/dict/dictutil/wcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/dict/dictutil/wcs.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/base.proto -------------------------------------------------------------------------------- /src/kernel/gazetteer/binary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/binary.proto -------------------------------------------------------------------------------- /src/kernel/gazetteer/builtin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/builtin.cpp -------------------------------------------------------------------------------- /src/kernel/gazetteer/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/builtin.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/filterdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/filterdata.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/gazetteer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/gazetteer.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/generator.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/gztarticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/gztarticle.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/gztparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/gztparser.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/gzttrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/gzttrie.cpp -------------------------------------------------------------------------------- /src/kernel/gazetteer/gzttrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/gzttrie.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/inputwords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/inputwords.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/options.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/protopool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/protopool.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/searchtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/searchtree.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/sourcetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/sourcetree.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/syntax.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/syntax.proto -------------------------------------------------------------------------------- /src/kernel/gazetteer/tokenize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/tokenize.cpp -------------------------------------------------------------------------------- /src/kernel/gazetteer/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/tokenize.h -------------------------------------------------------------------------------- /src/kernel/gazetteer/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/kernel/gazetteer/version.h -------------------------------------------------------------------------------- /src/library/2darray/2d_array.cpp: -------------------------------------------------------------------------------- 1 | #include "2d_array.h" 2 | -------------------------------------------------------------------------------- /src/library/2darray/2d_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/2darray/2d_array.h -------------------------------------------------------------------------------- /src/library/archive/yarchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/archive/yarchive.cpp -------------------------------------------------------------------------------- /src/library/archive/yarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/archive/yarchive.h -------------------------------------------------------------------------------- /src/library/binsaver/BinSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/binsaver/BinSaver.cpp -------------------------------------------------------------------------------- /src/library/binsaver/BinSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/binsaver/BinSaver.h -------------------------------------------------------------------------------- /src/library/binsaver/BlobIO.cpp: -------------------------------------------------------------------------------- 1 | #include "BlobIO.h" 2 | -------------------------------------------------------------------------------- /src/library/binsaver/BlobIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/binsaver/BlobIO.h -------------------------------------------------------------------------------- /src/library/binsaver/BufferedIO.cpp: -------------------------------------------------------------------------------- 1 | #include "BufferedIO.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/library/binsaver/BufferedIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/binsaver/BufferedIO.h -------------------------------------------------------------------------------- /src/library/binsaver/UtilStreamIO.cpp: -------------------------------------------------------------------------------- 1 | #include "UtilStreamIO.h" 2 | -------------------------------------------------------------------------------- /src/library/chunks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/chunks/CMakeLists.txt -------------------------------------------------------------------------------- /src/library/chunks/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/chunks/reader.cpp -------------------------------------------------------------------------------- /src/library/chunks/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/chunks/reader.h -------------------------------------------------------------------------------- /src/library/chunks/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/chunks/writer.cpp -------------------------------------------------------------------------------- /src/library/chunks/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/chunks/writer.h -------------------------------------------------------------------------------- /src/library/comptrie/comptrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/comptrie/comptrie.cpp -------------------------------------------------------------------------------- /src/library/comptrie/comptrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/comptrie/comptrie.h -------------------------------------------------------------------------------- /src/library/comptrie/minimize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/comptrie/minimize.cpp -------------------------------------------------------------------------------- /src/library/comptrie/minimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/comptrie/minimize.h -------------------------------------------------------------------------------- /src/library/comptrie/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/comptrie/node.cpp -------------------------------------------------------------------------------- /src/library/comptrie/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/comptrie/node.h -------------------------------------------------------------------------------- /src/library/comptrie/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/comptrie/set.h -------------------------------------------------------------------------------- /src/library/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /src/library/getopt/last_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/last_getopt.h -------------------------------------------------------------------------------- /src/library/getopt/opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/opt.cpp -------------------------------------------------------------------------------- /src/library/getopt/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/opt.h -------------------------------------------------------------------------------- /src/library/getopt/opt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/opt2.cpp -------------------------------------------------------------------------------- /src/library/getopt/opt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/opt2.h -------------------------------------------------------------------------------- /src/library/getopt/posix_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/posix_getopt.h -------------------------------------------------------------------------------- /src/library/getopt/ygetopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/ygetopt.cpp -------------------------------------------------------------------------------- /src/library/getopt/ygetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/getopt/ygetopt.h -------------------------------------------------------------------------------- /src/library/iter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/CMakeLists.txt -------------------------------------------------------------------------------- /src/library/iter/adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/adaptor.h -------------------------------------------------------------------------------- /src/library/iter/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/base.h -------------------------------------------------------------------------------- /src/library/iter/begin_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/begin_end.h -------------------------------------------------------------------------------- /src/library/iter/empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/empty.h -------------------------------------------------------------------------------- /src/library/iter/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/filtering.h -------------------------------------------------------------------------------- /src/library/iter/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/integer.h -------------------------------------------------------------------------------- /src/library/iter/iter.cpp: -------------------------------------------------------------------------------- 1 | #include "iter.h" 2 | -------------------------------------------------------------------------------- /src/library/iter/iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/iter.h -------------------------------------------------------------------------------- /src/library/iter/iter_holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/iter_holder.h -------------------------------------------------------------------------------- /src/library/iter/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/join.h -------------------------------------------------------------------------------- /src/library/iter/mapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/mapped.h -------------------------------------------------------------------------------- /src/library/iter/non_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/non_temp.h -------------------------------------------------------------------------------- /src/library/iter/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/range.h -------------------------------------------------------------------------------- /src/library/iter/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/scalar.h -------------------------------------------------------------------------------- /src/library/iter/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/set.h -------------------------------------------------------------------------------- /src/library/iter/stl_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/stl_container.h -------------------------------------------------------------------------------- /src/library/iter/super.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/super.h -------------------------------------------------------------------------------- /src/library/iter/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/value.h -------------------------------------------------------------------------------- /src/library/iter/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/iter/vector.h -------------------------------------------------------------------------------- /src/library/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/CMakeLists.txt -------------------------------------------------------------------------------- /src/library/json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/json_reader.cpp -------------------------------------------------------------------------------- /src/library/json/json_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/json_reader.h -------------------------------------------------------------------------------- /src/library/json/json_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/json_value.h -------------------------------------------------------------------------------- /src/library/json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/json_writer.cpp -------------------------------------------------------------------------------- /src/library/json/json_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/json_writer.h -------------------------------------------------------------------------------- /src/library/json/writer/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/writer/json.cpp -------------------------------------------------------------------------------- /src/library/json/writer/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/json/writer/json.h -------------------------------------------------------------------------------- /src/library/lemmer/alpha/abc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/lemmer/alpha/abc.h -------------------------------------------------------------------------------- /src/library/lemmer/dictlib/tgrammar_processing.cpp: -------------------------------------------------------------------------------- 1 | #include "tgrammar_processing.h" 2 | -------------------------------------------------------------------------------- /src/library/lemmer/dictlib/yx_gram.cpp: -------------------------------------------------------------------------------- 1 | #include "yx_gram.h" 2 | -------------------------------------------------------------------------------- /src/library/lemmer/dictlib/yx_gram_enum.cpp: -------------------------------------------------------------------------------- 1 | #include "yx_gram_enum.h" 2 | -------------------------------------------------------------------------------- /src/library/malloc/api/malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/malloc/api/malloc.cpp -------------------------------------------------------------------------------- /src/library/malloc/api/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/malloc/api/malloc.h -------------------------------------------------------------------------------- /src/library/pire/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/pire/CMakeLists.txt -------------------------------------------------------------------------------- /src/library/pire/pcre2pire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/pire/pcre2pire.cpp -------------------------------------------------------------------------------- /src/library/pire/pcre2pire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/pire/pcre2pire.h -------------------------------------------------------------------------------- /src/library/pire/pire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/pire/pire.h -------------------------------------------------------------------------------- /src/library/pire/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/pire/regexp.h -------------------------------------------------------------------------------- /src/library/protobuf/util/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/protobuf/util/cast.h -------------------------------------------------------------------------------- /src/library/protobuf/util/pb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/protobuf/util/pb_io.h -------------------------------------------------------------------------------- /src/library/protobuf/util/walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/protobuf/util/walk.h -------------------------------------------------------------------------------- /src/library/token/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/CMakeLists.txt -------------------------------------------------------------------------------- /src/library/token/charfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/charfilter.cpp -------------------------------------------------------------------------------- /src/library/token/charfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/charfilter.h -------------------------------------------------------------------------------- /src/library/token/enumbitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/enumbitset.h -------------------------------------------------------------------------------- /src/library/token/formtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/formtype.h -------------------------------------------------------------------------------- /src/library/token/nlptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/nlptypes.cpp -------------------------------------------------------------------------------- /src/library/token/nlptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/nlptypes.h -------------------------------------------------------------------------------- /src/library/token/token_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/token_flags.cpp -------------------------------------------------------------------------------- /src/library/token/token_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/token_flags.h -------------------------------------------------------------------------------- /src/library/token/token_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/token_util.cpp -------------------------------------------------------------------------------- /src/library/token/token_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/token/token_util.h -------------------------------------------------------------------------------- /src/library/xsltransform/catxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/library/xsltransform/catxml.h -------------------------------------------------------------------------------- /src/local.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/local.cmake -------------------------------------------------------------------------------- /src/tools/archiver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/tools/archiver/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/archiver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/tools/archiver/main.cpp -------------------------------------------------------------------------------- /src/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/autoarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/autoarray.h -------------------------------------------------------------------------------- /src/util/charset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/charset/codepage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/codepage.cpp -------------------------------------------------------------------------------- /src/util/charset/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/codepage.h -------------------------------------------------------------------------------- /src/util/charset/cp_encrec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/cp_encrec.cpp -------------------------------------------------------------------------------- /src/util/charset/doccodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/doccodes.cpp -------------------------------------------------------------------------------- /src/util/charset/doccodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/doccodes.h -------------------------------------------------------------------------------- /src/util/charset/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/iconv.h -------------------------------------------------------------------------------- /src/util/charset/recyr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/recyr.hh -------------------------------------------------------------------------------- /src/util/charset/recyr_int.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/recyr_int.hh -------------------------------------------------------------------------------- /src/util/charset/unicode_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/unicode_table.h -------------------------------------------------------------------------------- /src/util/charset/unidata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/unidata.h -------------------------------------------------------------------------------- /src/util/charset/utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/utf.cpp -------------------------------------------------------------------------------- /src/util/charset/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/utf.h -------------------------------------------------------------------------------- /src/util/charset/wide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/wide.cpp -------------------------------------------------------------------------------- /src/util/charset/wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/charset/wide.h -------------------------------------------------------------------------------- /src/util/cpp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/cpp11.h -------------------------------------------------------------------------------- /src/util/datetime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/datetime/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/base.cpp -------------------------------------------------------------------------------- /src/util/datetime/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/base.h -------------------------------------------------------------------------------- /src/util/datetime/cputimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/cputimer.cpp -------------------------------------------------------------------------------- /src/util/datetime/cputimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/cputimer.h -------------------------------------------------------------------------------- /src/util/datetime/strptime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/strptime.cpp -------------------------------------------------------------------------------- /src/util/datetime/systime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/systime.cpp -------------------------------------------------------------------------------- /src/util/datetime/systime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/datetime/systime.h -------------------------------------------------------------------------------- /src/util/digest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/digest/city.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/city.cpp -------------------------------------------------------------------------------- /src/util/digest/city.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/city.h -------------------------------------------------------------------------------- /src/util/digest/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/crc.cpp -------------------------------------------------------------------------------- /src/util/digest/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/crc.h -------------------------------------------------------------------------------- /src/util/digest/crc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/crc.i -------------------------------------------------------------------------------- /src/util/digest/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/iterator.h -------------------------------------------------------------------------------- /src/util/digest/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/md5.cpp -------------------------------------------------------------------------------- /src/util/digest/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/md5.h -------------------------------------------------------------------------------- /src/util/digest/murmur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/murmur.cpp -------------------------------------------------------------------------------- /src/util/digest/murmur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/murmur.h -------------------------------------------------------------------------------- /src/util/digest/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/digest/numeric.h -------------------------------------------------------------------------------- /src/util/draft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/draft/accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/accessors.h -------------------------------------------------------------------------------- /src/util/draft/accessors_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/accessors_impl.h -------------------------------------------------------------------------------- /src/util/draft/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/align.h -------------------------------------------------------------------------------- /src/util/draft/bitutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/bitutils.cpp -------------------------------------------------------------------------------- /src/util/draft/bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/bitutils.h -------------------------------------------------------------------------------- /src/util/draft/delim_file_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/delim_file_iter.h -------------------------------------------------------------------------------- /src/util/draft/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/format.cpp -------------------------------------------------------------------------------- /src/util/draft/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/format.h -------------------------------------------------------------------------------- /src/util/draft/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/matrix.h -------------------------------------------------------------------------------- /src/util/draft/memory_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/memory_traits.h -------------------------------------------------------------------------------- /src/util/draft/relaxed_escaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/relaxed_escaper.h -------------------------------------------------------------------------------- /src/util/draft/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/draft/variant.h -------------------------------------------------------------------------------- /src/util/ffb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/ffb.cpp -------------------------------------------------------------------------------- /src/util/ffb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/ffb.h -------------------------------------------------------------------------------- /src/util/fgood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/fgood.h -------------------------------------------------------------------------------- /src/util/fileptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/fileptr.cpp -------------------------------------------------------------------------------- /src/util/folder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/folder/dirent_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/dirent_win.c -------------------------------------------------------------------------------- /src/util/folder/dirent_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/dirent_win.h -------------------------------------------------------------------------------- /src/util/folder/dirut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/dirut.cpp -------------------------------------------------------------------------------- /src/util/folder/dirut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/dirut.h -------------------------------------------------------------------------------- /src/util/folder/filelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/filelist.cpp -------------------------------------------------------------------------------- /src/util/folder/filelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/filelist.h -------------------------------------------------------------------------------- /src/util/folder/fts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/fts.cpp -------------------------------------------------------------------------------- /src/util/folder/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/fts.h -------------------------------------------------------------------------------- /src/util/folder/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/iterator.cpp -------------------------------------------------------------------------------- /src/util/folder/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/iterator.h -------------------------------------------------------------------------------- /src/util/folder/lstat_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/lstat_win.c -------------------------------------------------------------------------------- /src/util/folder/lstat_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/lstat_win.h -------------------------------------------------------------------------------- /src/util/folder/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/path.cpp -------------------------------------------------------------------------------- /src/util/folder/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/path.h -------------------------------------------------------------------------------- /src/util/folder/pathsplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/pathsplit.cpp -------------------------------------------------------------------------------- /src/util/folder/pathsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/folder/pathsplit.h -------------------------------------------------------------------------------- /src/util/fput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/fput.h -------------------------------------------------------------------------------- /src/util/generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/generic/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/algorithm.h -------------------------------------------------------------------------------- /src/util/generic/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/array.h -------------------------------------------------------------------------------- /src/util/generic/avltree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/avltree.h -------------------------------------------------------------------------------- /src/util/generic/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/bitmap.h -------------------------------------------------------------------------------- /src/util/generic/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/bitops.h -------------------------------------------------------------------------------- /src/util/generic/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/buffer.cpp -------------------------------------------------------------------------------- /src/util/generic/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/buffer.h -------------------------------------------------------------------------------- /src/util/generic/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/cast.h -------------------------------------------------------------------------------- /src/util/generic/char_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/char_buf.h -------------------------------------------------------------------------------- /src/util/generic/chartraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/chartraits.cpp -------------------------------------------------------------------------------- /src/util/generic/chartraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/chartraits.h -------------------------------------------------------------------------------- /src/util/generic/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/deque.h -------------------------------------------------------------------------------- /src/util/generic/fastqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/fastqueue.h -------------------------------------------------------------------------------- /src/util/generic/forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/forward.h -------------------------------------------------------------------------------- /src/util/generic/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/fwd.h -------------------------------------------------------------------------------- /src/util/generic/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/hash.h -------------------------------------------------------------------------------- /src/util/generic/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/hash_set.h -------------------------------------------------------------------------------- /src/util/generic/intrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/intrlist.h -------------------------------------------------------------------------------- /src/util/generic/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/iterator.h -------------------------------------------------------------------------------- /src/util/generic/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/list.h -------------------------------------------------------------------------------- /src/util/generic/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/map.h -------------------------------------------------------------------------------- /src/util/generic/mapfindptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/mapfindptr.h -------------------------------------------------------------------------------- /src/util/generic/maybe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/maybe.h -------------------------------------------------------------------------------- /src/util/generic/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/move.h -------------------------------------------------------------------------------- /src/util/generic/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/noncopyable.h -------------------------------------------------------------------------------- /src/util/generic/pair.cpp: -------------------------------------------------------------------------------- 1 | #include "pair.h" 2 | 3 | TSwallowAssign TieIgnore; 4 | -------------------------------------------------------------------------------- /src/util/generic/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/pair.h -------------------------------------------------------------------------------- /src/util/generic/ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/ptr.cpp -------------------------------------------------------------------------------- /src/util/generic/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/ptr.h -------------------------------------------------------------------------------- /src/util/generic/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/queue.h -------------------------------------------------------------------------------- /src/util/generic/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/ref.h -------------------------------------------------------------------------------- /src/util/generic/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/refcount.h -------------------------------------------------------------------------------- /src/util/generic/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/region.h -------------------------------------------------------------------------------- /src/util/generic/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/set.h -------------------------------------------------------------------------------- /src/util/generic/singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/singleton.cpp -------------------------------------------------------------------------------- /src/util/generic/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/singleton.h -------------------------------------------------------------------------------- /src/util/generic/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/stack.h -------------------------------------------------------------------------------- /src/util/generic/static_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/static_assert.h -------------------------------------------------------------------------------- /src/util/generic/stlfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/stlfwd.h -------------------------------------------------------------------------------- /src/util/generic/strbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/strbuf.cpp -------------------------------------------------------------------------------- /src/util/generic/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/strbuf.h -------------------------------------------------------------------------------- /src/util/generic/strfcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/strfcpy.cpp -------------------------------------------------------------------------------- /src/util/generic/strfcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/strfcpy.h -------------------------------------------------------------------------------- /src/util/generic/stroka.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/stroka.cpp -------------------------------------------------------------------------------- /src/util/generic/stroka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/stroka.h -------------------------------------------------------------------------------- /src/util/generic/stroka_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/stroka_io.cpp -------------------------------------------------------------------------------- /src/util/generic/stroka_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/stroka_io.h -------------------------------------------------------------------------------- /src/util/generic/stroka_stdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/stroka_stdio.cpp -------------------------------------------------------------------------------- /src/util/generic/typehelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/typehelpers.h -------------------------------------------------------------------------------- /src/util/generic/typelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/typelist.h -------------------------------------------------------------------------------- /src/util/generic/typetraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/typetraits.h -------------------------------------------------------------------------------- /src/util/generic/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/utility.h -------------------------------------------------------------------------------- /src/util/generic/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/vector.h -------------------------------------------------------------------------------- /src/util/generic/yexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/yexception.cpp -------------------------------------------------------------------------------- /src/util/generic/yexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/yexception.h -------------------------------------------------------------------------------- /src/util/generic/ylimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/ylimits.h -------------------------------------------------------------------------------- /src/util/generic/ymath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/ymath.cpp -------------------------------------------------------------------------------- /src/util/generic/ymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/generic/ymath.h -------------------------------------------------------------------------------- /src/util/lambda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/lambda/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/lambda/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/lambda/bind.h -------------------------------------------------------------------------------- /src/util/lambda/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/lambda/function.h -------------------------------------------------------------------------------- /src/util/lambda/function_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/lambda/function_traits.h -------------------------------------------------------------------------------- /src/util/lambda/generated/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/lambda/generated/bind.h -------------------------------------------------------------------------------- /src/util/lambda/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/lambda/lib.cpp -------------------------------------------------------------------------------- /src/util/lambda/memfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/lambda/memfun.h -------------------------------------------------------------------------------- /src/util/mbitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/mbitmap.cpp -------------------------------------------------------------------------------- /src/util/mbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/mbitmap.h -------------------------------------------------------------------------------- /src/util/memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/memory/addstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/addstorage.h -------------------------------------------------------------------------------- /src/util/memory/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/alloc.cpp -------------------------------------------------------------------------------- /src/util/memory/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/alloc.h -------------------------------------------------------------------------------- /src/util/memory/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/blob.cpp -------------------------------------------------------------------------------- /src/util/memory/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/blob.h -------------------------------------------------------------------------------- /src/util/memory/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/pool.cpp -------------------------------------------------------------------------------- /src/util/memory/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/pool.h -------------------------------------------------------------------------------- /src/util/memory/smallobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/smallobj.h -------------------------------------------------------------------------------- /src/util/memory/tempbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/tempbuf.cpp -------------------------------------------------------------------------------- /src/util/memory/tempbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/memory/tempbuf.h -------------------------------------------------------------------------------- /src/util/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/network/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/address.h -------------------------------------------------------------------------------- /src/util/network/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/hostip.h -------------------------------------------------------------------------------- /src/util/network/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/init.cpp -------------------------------------------------------------------------------- /src/util/network/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/init.h -------------------------------------------------------------------------------- /src/util/network/iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/iovec.h -------------------------------------------------------------------------------- /src/util/network/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/ip.h -------------------------------------------------------------------------------- /src/util/network/pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/pair.cpp -------------------------------------------------------------------------------- /src/util/network/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/pair.h -------------------------------------------------------------------------------- /src/util/network/pollerimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/pollerimpl.h -------------------------------------------------------------------------------- /src/util/network/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/socket.cpp -------------------------------------------------------------------------------- /src/util/network/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/network/socket.h -------------------------------------------------------------------------------- /src/util/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/random/entropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/entropy.cpp -------------------------------------------------------------------------------- /src/util/random/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/entropy.h -------------------------------------------------------------------------------- /src/util/random/mersenne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/mersenne.cpp -------------------------------------------------------------------------------- /src/util/random/mersenne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/mersenne.h -------------------------------------------------------------------------------- /src/util/random/mersenne32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/mersenne32.h -------------------------------------------------------------------------------- /src/util/random/mersenne64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/mersenne64.h -------------------------------------------------------------------------------- /src/util/random/randcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/randcpp.cpp -------------------------------------------------------------------------------- /src/util/random/randcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/randcpp.h -------------------------------------------------------------------------------- /src/util/random/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/random.cpp -------------------------------------------------------------------------------- /src/util/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/random/random.h -------------------------------------------------------------------------------- /src/util/regexp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/regexp/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/regexp/glob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/regexp/glob.cpp -------------------------------------------------------------------------------- /src/util/regexp/glob_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/regexp/glob_compat.h -------------------------------------------------------------------------------- /src/util/regexp/regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/regexp/regexp.cpp -------------------------------------------------------------------------------- /src/util/regexp/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/regexp/regexp.h -------------------------------------------------------------------------------- /src/util/str_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/str_hash.cpp -------------------------------------------------------------------------------- /src/util/str_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/str_hash.h -------------------------------------------------------------------------------- /src/util/str_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/str_map.h -------------------------------------------------------------------------------- /src/util/str_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/str_stl.h -------------------------------------------------------------------------------- /src/util/stream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/stream/aligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/aligned.h -------------------------------------------------------------------------------- /src/util/stream/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/base.h -------------------------------------------------------------------------------- /src/util/stream/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/buffer.cpp -------------------------------------------------------------------------------- /src/util/stream/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/buffer.h -------------------------------------------------------------------------------- /src/util/stream/buffered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/buffered.cpp -------------------------------------------------------------------------------- /src/util/stream/buffered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/buffered.h -------------------------------------------------------------------------------- /src/util/stream/bzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/bzip2.h -------------------------------------------------------------------------------- /src/util/stream/chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/chunk.cpp -------------------------------------------------------------------------------- /src/util/stream/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/chunk.h -------------------------------------------------------------------------------- /src/util/stream/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/debug.cpp -------------------------------------------------------------------------------- /src/util/stream/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/debug.h -------------------------------------------------------------------------------- /src/util/stream/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/factory.cpp -------------------------------------------------------------------------------- /src/util/stream/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/factory.h -------------------------------------------------------------------------------- /src/util/stream/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/file.cpp -------------------------------------------------------------------------------- /src/util/stream/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/file.h -------------------------------------------------------------------------------- /src/util/stream/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/format.cpp -------------------------------------------------------------------------------- /src/util/stream/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/format.h -------------------------------------------------------------------------------- /src/util/stream/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/helpers.cpp -------------------------------------------------------------------------------- /src/util/stream/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/helpers.h -------------------------------------------------------------------------------- /src/util/stream/holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/holder.h -------------------------------------------------------------------------------- /src/util/stream/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/input.cpp -------------------------------------------------------------------------------- /src/util/stream/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/input.h -------------------------------------------------------------------------------- /src/util/stream/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/ios.h -------------------------------------------------------------------------------- /src/util/stream/length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/length.cpp -------------------------------------------------------------------------------- /src/util/stream/length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/length.h -------------------------------------------------------------------------------- /src/util/stream/lz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/lz.cpp -------------------------------------------------------------------------------- /src/util/stream/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/lz.h -------------------------------------------------------------------------------- /src/util/stream/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/lzma.h -------------------------------------------------------------------------------- /src/util/stream/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/mem.cpp -------------------------------------------------------------------------------- /src/util/stream/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/mem.h -------------------------------------------------------------------------------- /src/util/stream/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/multi.h -------------------------------------------------------------------------------- /src/util/stream/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/null.cpp -------------------------------------------------------------------------------- /src/util/stream/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/null.h -------------------------------------------------------------------------------- /src/util/stream/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/output.cpp -------------------------------------------------------------------------------- /src/util/stream/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/output.h -------------------------------------------------------------------------------- /src/util/stream/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/pipe.cpp -------------------------------------------------------------------------------- /src/util/stream/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/pipe.h -------------------------------------------------------------------------------- /src/util/stream/printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/printf.cpp -------------------------------------------------------------------------------- /src/util/stream/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/printf.h -------------------------------------------------------------------------------- /src/util/stream/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/stack.h -------------------------------------------------------------------------------- /src/util/stream/stack_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/stack_factory.h -------------------------------------------------------------------------------- /src/util/stream/stack_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/stack_file.cpp -------------------------------------------------------------------------------- /src/util/stream/stack_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/stack_input.h -------------------------------------------------------------------------------- /src/util/stream/stack_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/stack_output.h -------------------------------------------------------------------------------- /src/util/stream/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/str.cpp -------------------------------------------------------------------------------- /src/util/stream/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/str.h -------------------------------------------------------------------------------- /src/util/stream/tee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/tee.cpp -------------------------------------------------------------------------------- /src/util/stream/tee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/tee.h -------------------------------------------------------------------------------- /src/util/stream/tempbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/tempbuf.h -------------------------------------------------------------------------------- /src/util/stream/walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/walk.h -------------------------------------------------------------------------------- /src/util/stream/zerocopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/zerocopy.h -------------------------------------------------------------------------------- /src/util/stream/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/zlib.cpp -------------------------------------------------------------------------------- /src/util/stream/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/stream/zlib.h -------------------------------------------------------------------------------- /src/util/string/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/string/ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/ascii.cpp -------------------------------------------------------------------------------- /src/util/string/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/ascii.h -------------------------------------------------------------------------------- /src/util/string/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/base64.cpp -------------------------------------------------------------------------------- /src/util/string/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/base64.h -------------------------------------------------------------------------------- /src/util/string/builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/builder.cpp -------------------------------------------------------------------------------- /src/util/string/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/builder.h -------------------------------------------------------------------------------- /src/util/string/cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/cast.cc -------------------------------------------------------------------------------- /src/util/string/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/cast.h -------------------------------------------------------------------------------- /src/util/string/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/cat.h -------------------------------------------------------------------------------- /src/util/string/cstriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/cstriter.h -------------------------------------------------------------------------------- /src/util/string/dtoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/dtoa.cpp -------------------------------------------------------------------------------- /src/util/string/dtoa.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/dtoa.i -------------------------------------------------------------------------------- /src/util/string/dtoa_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/dtoa_impl.cpp -------------------------------------------------------------------------------- /src/util/string/encodexml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/encodexml.cpp -------------------------------------------------------------------------------- /src/util/string/encodexml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/encodexml.h -------------------------------------------------------------------------------- /src/util/string/escape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/escape.cpp -------------------------------------------------------------------------------- /src/util/string/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/escape.h -------------------------------------------------------------------------------- /src/util/string/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/hex.cpp -------------------------------------------------------------------------------- /src/util/string/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/hex.h -------------------------------------------------------------------------------- /src/util/string/kmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/kmp.cpp -------------------------------------------------------------------------------- /src/util/string/kmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/kmp.h -------------------------------------------------------------------------------- /src/util/string/pcdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/pcdata.cpp -------------------------------------------------------------------------------- /src/util/string/pcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/pcdata.h -------------------------------------------------------------------------------- /src/util/string/printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/printf.cpp -------------------------------------------------------------------------------- /src/util/string/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/printf.h -------------------------------------------------------------------------------- /src/util/string/quote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/quote.cpp -------------------------------------------------------------------------------- /src/util/string/quote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/quote.h -------------------------------------------------------------------------------- /src/util/string/split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/split.cpp -------------------------------------------------------------------------------- /src/util/string/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/split.h -------------------------------------------------------------------------------- /src/util/string/split_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/split_iterator.h -------------------------------------------------------------------------------- /src/util/string/strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/strip.cpp -------------------------------------------------------------------------------- /src/util/string/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/strip.h -------------------------------------------------------------------------------- /src/util/string/strspn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/strspn.h -------------------------------------------------------------------------------- /src/util/string/subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/subst.h -------------------------------------------------------------------------------- /src/util/string/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/traits.h -------------------------------------------------------------------------------- /src/util/string/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/type.cpp -------------------------------------------------------------------------------- /src/util/string/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/type.h -------------------------------------------------------------------------------- /src/util/string/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/url.cpp -------------------------------------------------------------------------------- /src/util/string/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/url.h -------------------------------------------------------------------------------- /src/util/string/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/util.cpp -------------------------------------------------------------------------------- /src/util/string/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/util.h -------------------------------------------------------------------------------- /src/util/string/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/vector.cpp -------------------------------------------------------------------------------- /src/util/string/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/string/vector.h -------------------------------------------------------------------------------- /src/util/system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/system/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/align.h -------------------------------------------------------------------------------- /src/util/system/atexit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/atexit.cpp -------------------------------------------------------------------------------- /src/util/system/atexit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/atexit.h -------------------------------------------------------------------------------- /src/util/system/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/atomic.h -------------------------------------------------------------------------------- /src/util/system/atomic_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/atomic_gcc.h -------------------------------------------------------------------------------- /src/util/system/atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/atomic_ops.h -------------------------------------------------------------------------------- /src/util/system/atomic_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/atomic_win.h -------------------------------------------------------------------------------- /src/util/system/atomic_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/atomic_x86.h -------------------------------------------------------------------------------- /src/util/system/backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/backtrace.cpp -------------------------------------------------------------------------------- /src/util/system/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/backtrace.h -------------------------------------------------------------------------------- /src/util/system/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/byteorder.h -------------------------------------------------------------------------------- /src/util/system/compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/compat.cpp -------------------------------------------------------------------------------- /src/util/system/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/compat.h -------------------------------------------------------------------------------- /src/util/system/condvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/condvar.cpp -------------------------------------------------------------------------------- /src/util/system/condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/condvar.h -------------------------------------------------------------------------------- /src/util/system/context_x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/context_x86.asm -------------------------------------------------------------------------------- /src/util/system/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/datetime.cpp -------------------------------------------------------------------------------- /src/util/system/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/datetime.h -------------------------------------------------------------------------------- /src/util/system/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/defaults.h -------------------------------------------------------------------------------- /src/util/system/demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/demangle.cpp -------------------------------------------------------------------------------- /src/util/system/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/demangle.h -------------------------------------------------------------------------------- /src/util/system/dynlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/dynlib.cpp -------------------------------------------------------------------------------- /src/util/system/dynlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/dynlib.h -------------------------------------------------------------------------------- /src/util/system/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/env.cpp -------------------------------------------------------------------------------- /src/util/system/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/env.h -------------------------------------------------------------------------------- /src/util/system/err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/err.cpp -------------------------------------------------------------------------------- /src/util/system/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/error.cpp -------------------------------------------------------------------------------- /src/util/system/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/error.h -------------------------------------------------------------------------------- /src/util/system/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/event.cpp -------------------------------------------------------------------------------- /src/util/system/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/event.h -------------------------------------------------------------------------------- /src/util/system/execpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/execpath.cpp -------------------------------------------------------------------------------- /src/util/system/execpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/execpath.h -------------------------------------------------------------------------------- /src/util/system/fasttime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fasttime.cpp -------------------------------------------------------------------------------- /src/util/system/fasttime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fasttime.h -------------------------------------------------------------------------------- /src/util/system/fhandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fhandle.h -------------------------------------------------------------------------------- /src/util/system/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/file.cpp -------------------------------------------------------------------------------- /src/util/system/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/file.h -------------------------------------------------------------------------------- /src/util/system/filemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/filemap.cpp -------------------------------------------------------------------------------- /src/util/system/filemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/filemap.h -------------------------------------------------------------------------------- /src/util/system/flock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/flock.cpp -------------------------------------------------------------------------------- /src/util/system/flock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/flock.h -------------------------------------------------------------------------------- /src/util/system/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fs.cpp -------------------------------------------------------------------------------- /src/util/system/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fs.h -------------------------------------------------------------------------------- /src/util/system/fs_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fs_win.cpp -------------------------------------------------------------------------------- /src/util/system/fs_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fs_win.h -------------------------------------------------------------------------------- /src/util/system/fstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fstat.cpp -------------------------------------------------------------------------------- /src/util/system/fstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/fstat.h -------------------------------------------------------------------------------- /src/util/system/guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/guard.h -------------------------------------------------------------------------------- /src/util/system/hostname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/hostname.cpp -------------------------------------------------------------------------------- /src/util/system/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/hostname.h -------------------------------------------------------------------------------- /src/util/system/hp_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/hp_timer.cpp -------------------------------------------------------------------------------- /src/util/system/hp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/hp_timer.h -------------------------------------------------------------------------------- /src/util/system/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/info.cpp -------------------------------------------------------------------------------- /src/util/system/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/info.h -------------------------------------------------------------------------------- /src/util/system/maxlen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/maxlen.h -------------------------------------------------------------------------------- /src/util/system/mlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/mlock.cpp -------------------------------------------------------------------------------- /src/util/system/mlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/mlock.h -------------------------------------------------------------------------------- /src/util/system/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/mutex.cpp -------------------------------------------------------------------------------- /src/util/system/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/mutex.h -------------------------------------------------------------------------------- /src/util/system/oldfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/oldfile.cpp -------------------------------------------------------------------------------- /src/util/system/oldfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/oldfile.h -------------------------------------------------------------------------------- /src/util/system/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/pipe.cpp -------------------------------------------------------------------------------- /src/util/system/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/pipe.h -------------------------------------------------------------------------------- /src/util/system/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/platform.h -------------------------------------------------------------------------------- /src/util/system/progname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/progname.cpp -------------------------------------------------------------------------------- /src/util/system/progname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/progname.h -------------------------------------------------------------------------------- /src/util/system/rusage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/rusage.cpp -------------------------------------------------------------------------------- /src/util/system/rusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/rusage.h -------------------------------------------------------------------------------- /src/util/system/rwlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/rwlock.cpp -------------------------------------------------------------------------------- /src/util/system/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/rwlock.h -------------------------------------------------------------------------------- /src/util/system/sem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/sem.cpp -------------------------------------------------------------------------------- /src/util/system/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/sem.h -------------------------------------------------------------------------------- /src/util/system/spinlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/spinlock.cpp -------------------------------------------------------------------------------- /src/util/system/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/spinlock.h -------------------------------------------------------------------------------- /src/util/system/src_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/src_root.cpp -------------------------------------------------------------------------------- /src/util/system/src_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/src_root.h -------------------------------------------------------------------------------- /src/util/system/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/strlcpy.c -------------------------------------------------------------------------------- /src/util/system/sysstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/sysstat.cpp -------------------------------------------------------------------------------- /src/util/system/sysstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/sysstat.h -------------------------------------------------------------------------------- /src/util/system/tempfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/tempfile.h -------------------------------------------------------------------------------- /src/util/system/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/thread.cpp -------------------------------------------------------------------------------- /src/util/system/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/thread.h -------------------------------------------------------------------------------- /src/util/system/thread.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/thread.i -------------------------------------------------------------------------------- /src/util/system/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/tls.cpp -------------------------------------------------------------------------------- /src/util/system/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/tls.h -------------------------------------------------------------------------------- /src/util/system/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/user.cpp -------------------------------------------------------------------------------- /src/util/system/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/user.h -------------------------------------------------------------------------------- /src/util/system/valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/valgrind.h -------------------------------------------------------------------------------- /src/util/system/winint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/winint.h -------------------------------------------------------------------------------- /src/util/system/yassert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/yassert.cpp -------------------------------------------------------------------------------- /src/util/system/yassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/yassert.h -------------------------------------------------------------------------------- /src/util/system/yield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/yield.cpp -------------------------------------------------------------------------------- /src/util/system/yield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/system/yield.h -------------------------------------------------------------------------------- /src/util/thread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/thread/lfstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/lfstack.h -------------------------------------------------------------------------------- /src/util/thread/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/pool.cpp -------------------------------------------------------------------------------- /src/util/thread/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/pool.h -------------------------------------------------------------------------------- /src/util/thread/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/queue.cpp -------------------------------------------------------------------------------- /src/util/thread/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/queue.h -------------------------------------------------------------------------------- /src/util/thread/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/singleton.h -------------------------------------------------------------------------------- /src/util/thread/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/tasks.cpp -------------------------------------------------------------------------------- /src/util/thread/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/thread/tasks.h -------------------------------------------------------------------------------- /src/util/ysafeptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/ysafeptr.cpp -------------------------------------------------------------------------------- /src/util/ysafeptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/ysafeptr.h -------------------------------------------------------------------------------- /src/util/ysaveload.cpp: -------------------------------------------------------------------------------- 1 | #include "ysaveload.h" 2 | -------------------------------------------------------------------------------- /src/util/ysaveload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/src/util/ysaveload.h -------------------------------------------------------------------------------- /tests/bastard_mode/dic.gzt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/tests/bastard_mode/dic.gzt -------------------------------------------------------------------------------- /tests/bastard_mode/gram.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/tests/bastard_mode/gram.cxx -------------------------------------------------------------------------------- /tests/bastard_mode/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/tomita-parser/HEAD/tests/bastard_mode/text.txt --------------------------------------------------------------------------------