History log of /trunk/main/autodoc/source/ (Results 1 - 24 of 24)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
11c03c6d10-Feb-2024 Damjan Jovanovic

Merge main/cosv and main/udm into main/autodoc.

main/autodoc depends on main/cosv and main/udm.
main/udm depends on main/cosv.
No other module depends on main/cosv or main/udm.
T

Merge main/cosv and main/udm into main/autodoc.

main/autodoc depends on main/cosv and main/udm.
main/udm depends on main/cosv.
No other module depends on main/cosv or main/udm.
The only deliverable from main/autodoc is the autodoc executable -
there are no libraries, and all headers remain private and undelivered.

We might even be able to use some third-party documentation generator
instead of autodoc, perhaps Doxygen. Whether we should go that way is debatable,
but there is no point in littering main/ with 2 modules and littering solver/
with many headers and 2 static libraries just so autodoc can consume them.
Rather make their code internal to autodoc.

Patch by: me

show more ...

Revision tags: AOO420-Dev5-m5, AOO4115-GA, AOO4114-GA, AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA
56b8eddc25-Sep-2020 mseidel

Fixed typo (explicitely -> explicitly) and some more

Revision tags: 420-Dev2-m2, AOO417, AOO420-Dev-m1, AOO416, AOO416-RC1
42e3c32429-Mar-2018 Damjan Jovanovic

Port main/autodoc to gbuild.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1827951 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO415
b32aa35910-Mar-2018 Damjan Jovanovic

tr;dr: Don't use .map files for main/cppuhelper on Windows, control
symbol visibility using source-level declarations instead.

C++ symbols are mangled differently on Win64 and Win32, and

tr;dr: Don't use .map files for main/cppuhelper on Windows, control
symbol visibility using source-level declarations instead.

C++ symbols are mangled differently on Win64 and Win32, and extracting
new symbols from binaries and updating .DEF/.map files that control symbol
visibility is painful. Both Windows and *nix have moved from using .DEF
and .map files to using declarations in the source code instead, of the
form __declspec(dllexport) and __attribute__ ((visibility("default")))
(which we wrap in SAL_DLLPUBLIC_EXPORT).

The GBuild ported modules also have to replace .map files with source code
declarations (and all so far have), as the default symbol visibility in
GBuild is "hidden" and GBuild has no mechanism to use .map files so far.

So for the purpose of the Win64 port, but as a generally good idea and a
necessity for future GBuild ports, re-implement linker symbol visibility
in main/cppuhelper using SAL_DLLPUBLIC_EXPORT declarations in the source
code instead of using .map files. The purpose of .map files is to version
symbols in the ELF binary format on *nix instead of just controlling
visibility, so they still provide that benefit on *nix, but Windows has no
symbol versioning, all dmake does with .map files is convert them to
unversioned .DEF files, which are harder to maintain than source-level
declarations (as they are both mangled and in a separate file, and have
to be specified per method instead of only once per class).

This turned out to cause trouble, as our autodoc tool doesn't have a C
preprocessor, so the "CPPUHELPER_DLLPUBLIC" was breaking generating
documentation, which was breaking the build due to documentation
completeness checks in main/odk. Thus main/autodoc had to be patched to
allow command line parameters passed to it to specify parsing tokens to
ignore, and main/odk had to be patched to pass "CPPUHELPER_DLLPUBLIC" as
the token to ignore.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1826398 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO414, AOO413, AOO4121
4b0745c414-Feb-2016 Kay Schenk

#i126652# [Autodoc] Numeric character reference should ends with a semicolon
Patch by: hanya



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1730411 13f79535-47b

#i126652# [Autodoc] Numeric character reference should ends with a semicolon
Patch by: hanya



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1730411 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO412, SNAPSHOT, AOO411
c64f2bbd06-Sep-2015 Pedro Giffuni

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis


git-svn-id: https://svn.apache.org/repos/as

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1701535 13f79535-47bb-0310-9956-ffa450edef68

show more ...

07a3d7f129-Apr-2014 Pedro Giffuni

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame

Many spelling fixes: directories a* - g*.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades. We
could probably blame the international nature of the code but
it is somewhat shameful that this wasn't done before.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591058 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO410, AOO410_Beta
a87170c620-Dec-2013 Jürgen Schmidt

#123891# allow OpenOffice since tag only

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1552559 13f79535-47bb-0310-9956-ffa450edef68

a0d53b3521-Nov-2013 Jürgen Schmidt

#122853# replace slist size>0 with not empty

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1544060 13f79535-47bb-0310-9956-ffa450edef68

b597708b18-Nov-2013 Herbert Dürr

#i122362# remove stlport4-build support

but keep the --without-stlport configure option for now
it is the new default anyway


git-svn-id: https://svn.apache.org/repos/asf/op

#i122362# remove stlport4-build support

but keep the --without-stlport configure option for now
it is the new default anyway


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1543067 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO401, AOO400
c945f25526-Jul-2013 Herbert Dürr

#i122853# replace use of size() method for single linked lists


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1507304 13f79535-47bb-0310-9956-ffa450edef68

6f51c32907-Feb-2013 Herbert Dürr

fix build for compilers supporting user-defined literals

User defined literals (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2378.pdf)
are already available in gcc 4.7 and cl

fix build for compilers supporting user-defined literals

User defined literals (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2378.pdf)
are already available in gcc 4.7 and clang 3.1 and this results in problems in code
where literal strings are concatenated without any whitespace inbetween.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1443509 13f79535-47bb-0310-9956-ffa450edef68

show more ...

Revision tags: AOO340
507825dd25-Aug-2012 Ariel Constenla-Haile

#i120710# - Fix typo in license text

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1377315 13f79535-47bb-0310-9956-ffa450edef68

4f7d22dc19-Jul-2012 Ariel Constenla-Haile

#i120302# - Add support for "AOO" and "Apache OpenOffice" in @since IDL tag

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1363563 13f79535-47bb-0310-9956-ffa450edef68

672406ed04-Jun-2012 Jürgen Schmidt

119677: correct copyright footer

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1345928 13f79535-47bb-0310-9956-ffa450edef68

9f22d7c229-Mar-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1307005 13f79535-47bb-0310-9956-ffa450edef68

2123d75712-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230717 13f79535-47bb-0310-9956-ffa450edef68

0841af7912-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230364 13f79535-47bb-0310-9956-ffa450edef68

d291ea2812-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230363 13f79535-47bb-0310-9956-ffa450edef68


ary/cpp/c_builtintype.cxx
ary/cpp/c_class.cxx
ary/cpp/c_de.cxx
ary/cpp/c_define.cxx
ary/cpp/c_enum.cxx
ary/cpp/c_enuval.cxx
ary/cpp/c_funct.cxx
ary/cpp/c_macro.cxx
ary/cpp/c_namesp.cxx
ary/cpp/c_osigna.cxx
ary/cpp/c_reposypart.cxx
ary/cpp/c_slots.cxx
ary/cpp/c_traits.cxx
ary/cpp/c_tydef.cxx
ary/cpp/c_vari.cxx
ary/cpp/ca_ce.cxx
ary/cpp/ca_def.cxx
ary/cpp/ca_type.cxx
ary/cpp/cs_ce.cxx
ary/cpp/cs_def.cxx
ary/cpp/cs_type.cxx
ary/cpp/namechain.cxx
ary/cpp/tplparam.cxx
ary/cpp/usedtype.cxx
ary/doc/d_boolean.cxx
ary/doc/d_docu.cxx
ary/doc/d_node.cxx
ary/doc/d_oldcppdocu.cxx
ary/doc/d_oldidldocu.cxx
ary/idl/i2s_calculator.cxx
ary/idl/i_attribute.cxx
ary/idl/i_ce2s.cxx
ary/idl/i_comrela.cxx
ary/idl/i_constant.cxx
ary/idl/i_enum.cxx
ary/idl/i_exception.cxx
ary/idl/i_function.cxx
ary/idl/i_interface.cxx
ary/idl/i_module.cxx
ary/idl/i_namelookup.cxx
ary/idl/i_param.cxx
ary/idl/i_property.cxx
ary/idl/i_reposypart.cxx
ary/idl/i_service.cxx
ary/idl/i_singleton.cxx
ary/idl/i_siservice.cxx
ary/idl/i_sisingleton.cxx
ary/idl/i_traits.cxx
ary/idl/i_typedef.cxx
ary/idl/ia_ce.cxx
ary/idl/ia_type.cxx
ary/idl/is_ce.cxx
ary/idl/it_explicit.cxx
ary/idl/it_tplparam.cxx
ary/idl/it_xnameroom.cxx
ary/info/all_dts.cxx
ary/info/all_tags.cxx
ary/info/ci_attag.cxx
ary/info/ci_text.cxx
ary/kernel/ary_disp.cxx
ary/kernel/cessentl.cxx
ary/kernel/namesort.cxx
ary/kernel/qualiname.cxx
ary/kernel/reposy.cxx
ary/kernel/slots.cxx
ary/loc/loc_dir.cxx
ary/loc/loc_file.cxx
ary/loc/loc_filebase.cxx
ary/loc/loc_root.cxx
ary/loc/loc_traits.cxx
ary/loc/loca_le.cxx
ary/loc/locs_le.cxx
ary_i/kernel/ci_atag2.cxx
ary_i/kernel/ci_text2.cxx
ary_i/kernel/d_token.cxx
display/idl/hfi_doc.cxx
display/idl/hfi_enum.cxx
display/idl/hfi_globalindex.cxx
display/idl/hfi_hierarchy.cxx
display/idl/hfi_module.cxx
display/idl/hfi_navibar.cxx
display/idl/hfi_service.cxx
display/idl/hfi_singleton.cxx
display/idl/hfi_siservice.cxx
display/idl/hfi_typedef.cxx
display/idl/hfi_typetext.cxx
display/idl/hi_ary.cxx
display/idl/hi_display.cxx
display/idl/hi_env.cxx
display/idl/hi_linkhelper.cxx
display/idl/hi_main.cxx
exes/adc_uni/adc_cl.cxx
exes/adc_uni/adc_cmd_parse.cxx
exes/adc_uni/adc_cmds.cxx
exes/adc_uni/adc_msg.cxx
exes/adc_uni/cmd_run.cxx
exes/adc_uni/cmd_sincedata.cxx
exes/adc_uni/main.cxx
tools/filecoll.cxx
tools/tkpchars.cxx
78bc99aa12-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1230362 13f79535-47bb-0310-9956-ffa450edef68


ary/idl/i_ce.cxx
ary/idl/i_constgroup.cxx
ary/idl/i_enumvalue.cxx
ary/idl/i_struct.cxx
ary/idl/i_structelem.cxx
ary/idl/is_type.cxx
ary/idl/it_builtin.cxx
ary/idl/it_ce.cxx
ary/idl/it_sequence.cxx
parser/adoc/a_rdocu.cxx
parser/adoc/adoc_tok.cxx
parser/adoc/cx_a_std.cxx
parser/adoc/cx_a_sub.cxx
parser/adoc/docu_pe.cxx
parser/adoc/prs_adoc.cxx
parser/adoc/tk_attag.cxx
parser/adoc/tk_docw.cxx
parser/cpp/all_toks.cxx
parser/cpp/c_dealer.cxx
parser/cpp/c_rcode.cxx
parser/cpp/cpp_pe.cxx
parser/cpp/cx_base.cxx
parser/cpp/cx_c_pp.cxx
parser/cpp/cx_c_std.cxx
parser/cpp/cx_c_sub.cxx
parser/cpp/cxt2ary.cxx
parser/cpp/defdescr.cxx
parser/cpp/icprivow.cxx
parser/cpp/pe_base.cxx
parser/cpp/pe_class.cxx
parser/cpp/pe_defs.cxx
parser/cpp/pe_enum.cxx
parser/cpp/pe_enval.cxx
parser/cpp/pe_expr.cxx
parser/cpp/pe_file.cxx
parser/cpp/pe_funct.cxx
parser/cpp/pe_ignor.cxx
parser/cpp/pe_namsp.cxx
parser/cpp/pe_param.cxx
parser/cpp/pe_tpltp.cxx
parser/cpp/pe_tydef.cxx
parser/cpp/pe_type.cxx
parser/cpp/pe_vafu.cxx
parser/cpp/pe_vari.cxx
parser/cpp/preproc.cxx
parser/cpp/prs_cpp.cxx
parser/cpp/tkp_cpp.cxx
parser/kernel/parsefct.cxx
parser/kernel/x_docu.cxx
parser/kernel/x_parse.cxx
parser/semantic/parseenv.cxx
parser/tokens/stmstarr.cxx
parser/tokens/stmstate.cxx
parser/tokens/stmstfin.cxx
parser/tokens/tkp.cxx
parser/tokens/tkpcontx.cxx
parser/tokens/tkpstama.cxx
parser/tokens/tokdeal.cxx
parser_i/idl/cx_idlco.cxx
parser_i/idl/cx_sub.cxx
parser_i/idl/distrib.cxx
parser_i/idl/parsenv2.cxx
parser_i/idl/pe_attri.cxx
parser_i/idl/pe_const.cxx
parser_i/idl/pe_enum2.cxx
parser_i/idl/pe_evalu.cxx
parser_i/idl/pe_excp.cxx
parser_i/idl/pe_file2.cxx
parser_i/idl/pe_func2.cxx
parser_i/idl/pe_iface.cxx
parser_i/idl/pe_property.cxx
parser_i/idl/pe_selem.cxx
parser_i/idl/pe_servi.cxx
parser_i/idl/pe_singl.cxx
parser_i/idl/pe_struc.cxx
parser_i/idl/pe_tydf2.cxx
parser_i/idl/pe_type2.cxx
parser_i/idl/pe_vari2.cxx
parser_i/idl/pestate.cxx
parser_i/idl/semnode.cxx
parser_i/idl/tk_const.cxx
parser_i/idl/tk_ident.cxx
parser_i/idl/tk_keyw.cxx
parser_i/idl/tk_punct.cxx
parser_i/idl/tkp_uidl.cxx
parser_i/idl/unoidl.cxx
parser_i/idoc/cx_docu2.cxx
parser_i/idoc/cx_dsapi.cxx
parser_i/idoc/docu_pe2.cxx
parser_i/idoc/tk_atag2.cxx
parser_i/idoc/tk_docw2.cxx
parser_i/idoc/tk_html.cxx
parser_i/idoc/tk_xml.cxx
parser_i/tokens/stmstar2.cxx
parser_i/tokens/stmstat2.cxx
parser_i/tokens/stmstfi2.cxx
parser_i/tokens/tkp2.cxx
parser_i/tokens/tkpcont2.cxx
parser_i/tokens/tkpstam2.cxx
parser_i/tokens/x_parse2.cxx
7871dc3e11-Jan-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1229815 13f79535-47bb-0310-9956-ffa450edef68

1c78a5d606-Nov-2011 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1198400 13f79535-47bb-0310-9956-ffa450edef68


ary/cpp/c_reposypart.hxx
ary/cpp/c_slots.hxx
ary/cpp/ca_ce.hxx
ary/cpp/ca_def.hxx
ary/cpp/ca_type.hxx
ary/cpp/cs_ce.hxx
ary/cpp/cs_def.hxx
ary/cpp/cs_type.hxx
ary/cpp/tplparam.hxx
ary/idl/i2s_calculator.hxx
ary/idl/i_nnfinder.hxx
ary/idl/i_reposypart.hxx
ary/idl/ia_ce.hxx
ary/idl/ia_type.hxx
ary/idl/is_ce.hxx
ary/idl/is_type.hxx
ary/idl/it_builtin.hxx
ary/idl/it_ce.hxx
ary/idl/it_explicit.hxx
ary/idl/it_named.hxx
ary/idl/it_sequence.hxx
ary/idl/it_tplparam.hxx
ary/idl/it_xnameroom.hxx
ary/inc/cpp_internalgate.hxx
ary/inc/cross_refs.hxx
ary/inc/idl_internalgate.hxx
ary/inc/idsort.hxx
ary/inc/loc_internalgate.hxx
ary/inc/nametreenode.hxx
ary/inc/reposy.hxx
ary/inc/sci_impl.hxx
ary/inc/slots.hxx
ary/inc/sorted_idset.hxx
ary/inc/sortedids.hxx
ary/inc/store/s_base.hxx
ary/inc/store/s_iterator.hxx
ary/inc/store/s_storage.hxx
ary/inc/traits_impl.hxx
ary/loc/loca_le.hxx
ary/loc/locs_le.hxx
display/html/aryattrs.hxx
display/html/cre_link.hxx
display/html/dsply_cl.hxx
display/html/dsply_da.hxx
display/html/dsply_op.hxx
display/html/easywri.hxx
display/html/hd_chlst.hxx
display/html/hd_docu.hxx
display/html/hdimpl.hxx
display/html/html_kit.hxx
display/html/nav_main.hxx
display/html/navibar.hxx
display/html/opageenv.hxx
display/html/outfile.hxx
display/html/pagemake.hxx
display/html/pm_aldef.hxx
display/html/pm_base.hxx
display/html/pm_class.hxx
display/html/pm_help.hxx
display/html/pm_index.hxx
display/html/pm_namsp.hxx
display/html/pm_start.hxx
display/html/protarea.hxx
display/html/strconst.hxx
display/idl/hfi_constgroup.hxx
display/idl/hfi_doc.hxx
display/idl/hfi_enum.hxx
display/idl/hfi_globalindex.hxx
display/idl/hfi_hierarchy.hxx
display/idl/hfi_interface.hxx
display/idl/hfi_linklist.hxx
display/idl/hfi_method.hxx
display/idl/hfi_module.hxx
display/idl/hfi_navibar.hxx
display/idl/hfi_property.hxx
display/idl/hfi_service.hxx
display/idl/hfi_singleton.hxx
display/idl/hfi_siservice.hxx
display/idl/hfi_struct.hxx
display/idl/hfi_tag.hxx
display/idl/hfi_typedef.hxx
display/idl/hfi_typetext.hxx
display/idl/hfi_xrefpage.hxx
display/idl/hi_ary.hxx
display/idl/hi_env.hxx
display/idl/hi_factory.hxx
display/idl/hi_linkhelper.hxx
display/idl/hi_main.hxx
display/inc/cfrstd.hxx
display/inc/html/chd_udk2.hxx
display/inc/idl/hi_display.hxx
display/inc/toolkit/hf_docentry.hxx
display/inc/toolkit/hf_funcdecl.hxx
display/inc/toolkit/hf_linachain.hxx
display/inc/toolkit/hf_navi_main.hxx
display/inc/toolkit/hf_navi_sub.hxx
display/inc/toolkit/hf_title.hxx
display/inc/toolkit/htmlfactory.hxx
display/inc/toolkit/htmlfile.hxx
display/inc/toolkit/out_node.hxx
display/inc/toolkit/out_position.hxx
display/inc/toolkit/out_tree.hxx
display/inc/toolkit/outputstack.hxx
display/kernel/displfct.hxx
exes/adc_uni/adc_cmd.hxx
exes/adc_uni/adc_cmd_parse.hxx
exes/adc_uni/adc_cmds.hxx
exes/adc_uni/cmd_run.hxx
exes/adc_uni/cmd_sincedata.hxx
inc/adc_cl.hxx
inc/adc_msg.hxx
inc/docu_node_ids.hxx
inc/estack.hxx
inc/luxenum.hxx
inc/manip.hxx
inc/prprpr.hxx
inc/tools/filecoll.hxx
inc/tools/tkpchars.hxx
parser/cpp/all_toks.hxx
parser/cpp/c_dealer.hxx
parser/cpp/c_rcode.hxx
parser/cpp/cpp_pe.hxx
parser/cpp/cpp_tok.hxx
parser/cpp/cx_base.hxx
parser/cpp/cx_c_pp.hxx
parser/cpp/cx_c_std.hxx
parser/cpp/cx_c_sub.hxx
parser/cpp/cxt2ary.hxx
parser/cpp/defdescr.hxx
parser/cpp/fevnthdl.hxx
parser/cpp/icprivow.hxx
parser/cpp/pe_base.hxx
parser/cpp/pe_class.hxx
parser/cpp/pe_defs.hxx
parser/cpp/pe_enum.hxx
parser/cpp/pe_enval.hxx
parser/cpp/pe_expr.hxx
parser/cpp/pe_file.hxx
parser/cpp/pe_funct.hxx
parser/cpp/pe_ignor.hxx
parser/cpp/pe_namsp.hxx
parser/cpp/pe_param.hxx
parser/cpp/pe_tpltp.hxx
parser/cpp/pe_tydef.hxx
parser/cpp/pe_type.hxx
parser/cpp/pe_vafu.hxx
parser/cpp/pe_vari.hxx
parser/cpp/pev.hxx
parser/cpp/preproc.hxx
parser/cpp/sdocdist.hxx
parser/cpp/sfscope.hxx
parser/cpp/sownstck.hxx
parser/cpp/srecover.hxx
parser/cpp/tkp_cpp.hxx
parser/cpp/tokintpr.hxx
parser/inc/adoc/a_rdocu.hxx
parser/inc/adoc/adoc_tok.hxx
parser/inc/adoc/atokdeal.hxx
parser/inc/adoc/cx_a_std.hxx
parser/inc/adoc/cx_a_sub.hxx
parser/inc/adoc/docu_pe.hxx
parser/inc/adoc/prs_adoc.hxx
parser/inc/adoc/tk_attag.hxx
parser/inc/adoc/tk_docw.hxx
parser/inc/adoc/tokintpr.hxx
parser/inc/cpp/ctokdeal.hxx
parser/inc/cpp/prs_cpp.hxx
parser/inc/doc_deal.hxx
parser/inc/semantic/callf.hxx
parser/inc/semantic/parseenv.hxx
parser/inc/semantic/sub_pe.hxx
parser/inc/semantic/sub_peu.hxx
parser/inc/tokens/parseinc.hxx
parser/inc/tokens/stmstarr.hxx
parser/inc/tokens/stmstate.hxx
parser/inc/tokens/stmstfin.hxx
parser/inc/tokens/tkp.hxx
parser/inc/tokens/tkpcontx.hxx
parser/inc/tokens/tkpstama.hxx
parser/inc/tokens/tokdeal.hxx
parser/inc/tokens/token.hxx
parser/inc/tokens/tokproct.hxx
parser/inc/x_docu.hxx
parser/inc/x_parse.hxx
parser/kernel/parsefct.hxx
parser_i/inc/s2_dsapi/cx_docu2.hxx
parser_i/inc/s2_dsapi/cx_dsapi.hxx
parser_i/inc/s2_dsapi/docu_pe2.hxx
parser_i/inc/s2_dsapi/dsapitok.hxx
parser_i/inc/s2_dsapi/tk_atag2.hxx
parser_i/inc/s2_dsapi/tk_docw2.hxx
parser_i/inc/s2_dsapi/tk_html.hxx
parser_i/inc/s2_dsapi/tk_xml.hxx
parser_i/inc/s2_dsapi/tokintpr.hxx
parser_i/inc/s2_dsapi/tokrecv.hxx
parser_i/inc/s2_luidl/cx_idlco.hxx
parser_i/inc/s2_luidl/cx_sub.hxx
parser_i/inc/s2_luidl/distrib.hxx
parser_i/inc/s2_luidl/parsenv2.hxx
parser_i/inc/s2_luidl/pe_attri.hxx
parser_i/inc/s2_luidl/pe_const.hxx
parser_i/inc/s2_luidl/pe_enum2.hxx
parser_i/inc/s2_luidl/pe_evalu.hxx
parser_i/inc/s2_luidl/pe_excp.hxx
parser_i/inc/s2_luidl/pe_file2.hxx
parser_i/inc/s2_luidl/pe_func2.hxx
parser_i/inc/s2_luidl/pe_iface.hxx
parser_i/inc/s2_luidl/pe_modul.hxx
parser_i/inc/s2_luidl/pe_property.hxx
parser_i/inc/s2_luidl/pe_selem.hxx
parser_i/inc/s2_luidl/pe_servi.hxx
parser_i/inc/s2_luidl/pe_singl.hxx
parser_i/inc/s2_luidl/pe_struc.hxx
parser_i/inc/s2_luidl/pe_tydf2.hxx
parser_i/inc/s2_luidl/pe_type2.hxx
parser_i/inc/s2_luidl/pe_vari2.hxx
parser_i/inc/s2_luidl/pestate.hxx
parser_i/inc/s2_luidl/semnode.hxx
parser_i/inc/s2_luidl/smp_uidl.hxx
parser_i/inc/s2_luidl/tk_const.hxx
parser_i/inc/s2_luidl/tk_ident.hxx
parser_i/inc/s2_luidl/tk_keyw.hxx
parser_i/inc/s2_luidl/tk_punct.hxx
parser_i/inc/s2_luidl/tkp_uidl.hxx
parser_i/inc/s2_luidl/tokintpr.hxx
parser_i/inc/s2_luidl/tokproct.hxx
parser_i/inc/s2_luidl/tokrecv.hxx
parser_i/inc/s2_luidl/uidl_tok.hxx
parser_i/inc/semantic/parsenv2.hxx
parser_i/inc/tokens/stmstar2.hxx
parser_i/inc/tokens/stmstat2.hxx
parser_i/inc/tokens/stmstfi2.hxx
parser_i/inc/tokens/tkp2.hxx
parser_i/inc/tokens/tkpcont2.hxx
parser_i/inc/tokens/tkpstam2.hxx
parser_i/inc/tokens/token2.hxx
parser_i/inc/x_parse2.hxx
889cced128-Aug-2011 Eike Rathke

fix build breakers unxlngx6.pro gcc 4.6.1 (Debian wheezy amd64)

Builds up to but not including offapi.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162554 13f79

fix build breakers unxlngx6.pro gcc 4.6.1 (Debian wheezy amd64)

Builds up to but not including offapi.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162554 13f79535-47bb-0310-9956-ffa450edef68

show more ...

cdf0e10c16-Aug-2011 rcweir

Initial import of the old OOo hg repository tip revision.

.../trunk/main is a copy of (currently tip-most)
http://hg.services.openoffice.org/OOO340/rev/c904c1944462

.../trunk/

Initial import of the old OOo hg repository tip revision.

.../trunk/main is a copy of (currently tip-most)
http://hg.services.openoffice.org/OOO340/rev/c904c1944462

.../trunk/extras/l10n is a copy of (currently tip-most)
http://hg.services.openoffice.org/master_l10n/OOO340/rev/af6bc9467af5

Note that the following files with line-end and/or encoding anomalies were left out (they will need to be to be checked in separately):

/ooo/trunk/core/dictionaries/de_DE/README_hyph_de_DE.txt
/ooo/trunk/core/dictionaries/de_CH/README_hyph_de_CH.txt
/ooo/trunk/core/dictionaries/de_AT/README_hyph_de_AT.txt
/ooo/trunk/core/gettext/gettext-0.18.1.1.patch
/ooo/trunk/core/apache-commons/patches/codec.patch
/ooo/trunk/core/libcroco/libcroco-0.6.2.patch
/ooo/trunk/core/testautomation/writer/optional/input/import/mactext.txt
/ooo/trunk/core/graphite/graphite-2.3.1.patch
/ooo/trunk/core/hwpfilter/source/hwpeq.cpp
/ooo/trunk/core/solenv/bin/cwstouched.pl
/ooo/trunk/core/readlicense_oo/html/THIRDPARTYLICENSEREADME.html
/ooo/trunk/core/writerfilter/source/doctok/escher.html
/ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/xsdlib.xsd
/ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/wordnetaux.xsd
/ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/body.xsl
/ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl

Also: Repository.mk from the l10n toplevel


git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162288 13f79535-47bb-0310-9956-ffa450edef68

show more ...


ary/cpp/c_builtintype.cxx
ary/cpp/c_class.cxx
ary/cpp/c_de.cxx
ary/cpp/c_define.cxx
ary/cpp/c_enum.cxx
ary/cpp/c_enuval.cxx
ary/cpp/c_funct.cxx
ary/cpp/c_macro.cxx
ary/cpp/c_namesp.cxx
ary/cpp/c_osigna.cxx
ary/cpp/c_reposypart.cxx
ary/cpp/c_reposypart.hxx
ary/cpp/c_slots.cxx
ary/cpp/c_slots.hxx
ary/cpp/c_traits.cxx
ary/cpp/c_tydef.cxx
ary/cpp/c_vari.cxx
ary/cpp/ca_ce.cxx
ary/cpp/ca_ce.hxx
ary/cpp/ca_def.cxx
ary/cpp/ca_def.hxx
ary/cpp/ca_type.cxx
ary/cpp/ca_type.hxx
ary/cpp/cs_ce.cxx
ary/cpp/cs_ce.hxx
ary/cpp/cs_def.cxx
ary/cpp/cs_def.hxx
ary/cpp/cs_type.cxx
ary/cpp/cs_type.hxx
ary/cpp/makefile.mk
ary/cpp/namechain.cxx
ary/cpp/tplparam.cxx
ary/cpp/tplparam.hxx
ary/cpp/usedtype.cxx
ary/doc/d_boolean.cxx
ary/doc/d_docu.cxx
ary/doc/d_node.cxx
ary/doc/d_oldcppdocu.cxx
ary/doc/d_oldidldocu.cxx
ary/doc/makefile.mk
ary/idl/i2s_calculator.cxx
ary/idl/i2s_calculator.hxx
ary/idl/i_attribute.cxx
ary/idl/i_ce.cxx
ary/idl/i_ce2s.cxx
ary/idl/i_comrela.cxx
ary/idl/i_constant.cxx
ary/idl/i_constgroup.cxx
ary/idl/i_enum.cxx
ary/idl/i_enumvalue.cxx
ary/idl/i_exception.cxx
ary/idl/i_function.cxx
ary/idl/i_interface.cxx
ary/idl/i_module.cxx
ary/idl/i_namelookup.cxx
ary/idl/i_nnfinder.hxx
ary/idl/i_param.cxx
ary/idl/i_property.cxx
ary/idl/i_reposypart.cxx
ary/idl/i_reposypart.hxx
ary/idl/i_service.cxx
ary/idl/i_singleton.cxx
ary/idl/i_siservice.cxx
ary/idl/i_sisingleton.cxx
ary/idl/i_struct.cxx
ary/idl/i_structelem.cxx
ary/idl/i_traits.cxx
ary/idl/i_typedef.cxx
ary/idl/ia_ce.cxx
ary/idl/ia_ce.hxx
ary/idl/ia_type.cxx
ary/idl/ia_type.hxx
ary/idl/is_ce.cxx
ary/idl/is_ce.hxx
ary/idl/is_type.cxx
ary/idl/is_type.hxx
ary/idl/it_builtin.cxx
ary/idl/it_builtin.hxx
ary/idl/it_ce.cxx
ary/idl/it_ce.hxx
ary/idl/it_explicit.cxx
ary/idl/it_explicit.hxx
ary/idl/it_named.hxx
ary/idl/it_sequence.cxx
ary/idl/it_sequence.hxx
ary/idl/it_tplparam.cxx
ary/idl/it_tplparam.hxx
ary/idl/it_xnameroom.cxx
ary/idl/it_xnameroom.hxx
ary/idl/makefile.mk
ary/inc/cpp_internalgate.hxx
ary/inc/cross_refs.hxx
ary/inc/idl_internalgate.hxx
ary/inc/idsort.hxx
ary/inc/loc_internalgate.hxx
ary/inc/nametreenode.hxx
ary/inc/reposy.hxx
ary/inc/sci_impl.hxx
ary/inc/slots.hxx
ary/inc/sorted_idset.hxx
ary/inc/sortedids.hxx
ary/inc/store/s_base.hxx
ary/inc/store/s_iterator.hxx
ary/inc/store/s_storage.hxx
ary/inc/traits_impl.hxx
ary/info/all_dts.cxx
ary/info/all_tags.cxx
ary/info/ci_attag.cxx
ary/info/ci_text.cxx
ary/info/makefile.mk
ary/kernel/ary_disp.cxx
ary/kernel/cessentl.cxx
ary/kernel/makefile.mk
ary/kernel/namesort.cxx
ary/kernel/qualiname.cxx
ary/kernel/reposy.cxx
ary/kernel/slots.cxx
ary/loc/loc_dir.cxx
ary/loc/loc_file.cxx
ary/loc/loc_filebase.cxx
ary/loc/loc_root.cxx
ary/loc/loc_traits.cxx
ary/loc/loca_le.cxx
ary/loc/loca_le.hxx
ary/loc/locs_le.cxx
ary/loc/locs_le.hxx
ary/loc/makefile.mk
ary_i/kernel/ci_atag2.cxx
ary_i/kernel/ci_text2.cxx
ary_i/kernel/d_token.cxx
ary_i/kernel/makefile.mk
display/html/aryattrs.cxx
display/html/aryattrs.hxx
display/html/cfrstd.cxx
display/html/chd_udk2.cxx
display/html/cre_link.cxx
display/html/cre_link.hxx
display/html/dsply_cl.cxx
display/html/dsply_cl.hxx
display/html/dsply_da.cxx
display/html/dsply_da.hxx
display/html/dsply_op.cxx
display/html/dsply_op.hxx
display/html/easywri.cxx
display/html/easywri.hxx
display/html/hd_chlst.cxx
display/html/hd_chlst.hxx
display/html/hd_docu.cxx
display/html/hd_docu.hxx
display/html/hdimpl.cxx
display/html/hdimpl.hxx
display/html/html_kit.cxx
display/html/html_kit.hxx
display/html/makefile.mk
display/html/nav_main.cxx
display/html/nav_main.hxx
display/html/navibar.cxx
display/html/navibar.hxx
display/html/opageenv.cxx
display/html/opageenv.hxx
display/html/outfile.cxx
display/html/outfile.hxx
display/html/pagemake.cxx
display/html/pagemake.hxx
display/html/pm_aldef.cxx
display/html/pm_aldef.hxx
display/html/pm_base.cxx
display/html/pm_base.hxx
display/html/pm_class.cxx
display/html/pm_class.hxx
display/html/pm_help.cxx
display/html/pm_help.hxx
display/html/pm_index.cxx
display/html/pm_index.hxx
display/html/pm_namsp.cxx
display/html/pm_namsp.hxx
display/html/pm_start.cxx
display/html/pm_start.hxx
display/html/protarea.cxx
display/html/protarea.hxx
display/html/strconst.hxx
display/idl/hfi_constgroup.cxx
display/idl/hfi_constgroup.hxx
display/idl/hfi_doc.cxx
display/idl/hfi_doc.hxx
display/idl/hfi_enum.cxx
display/idl/hfi_enum.hxx
display/idl/hfi_globalindex.cxx
display/idl/hfi_globalindex.hxx
display/idl/hfi_hierarchy.cxx
display/idl/hfi_hierarchy.hxx
display/idl/hfi_interface.cxx
display/idl/hfi_interface.hxx
display/idl/hfi_linklist.cxx
display/idl/hfi_linklist.hxx
display/idl/hfi_method.cxx
display/idl/hfi_method.hxx
display/idl/hfi_module.cxx
display/idl/hfi_module.hxx
display/idl/hfi_navibar.cxx
display/idl/hfi_navibar.hxx
display/idl/hfi_property.cxx
display/idl/hfi_property.hxx
display/idl/hfi_service.cxx
display/idl/hfi_service.hxx
display/idl/hfi_singleton.cxx
display/idl/hfi_singleton.hxx
display/idl/hfi_siservice.cxx
display/idl/hfi_siservice.hxx
display/idl/hfi_struct.cxx
display/idl/hfi_struct.hxx
display/idl/hfi_tag.cxx
display/idl/hfi_tag.hxx
display/idl/hfi_typedef.cxx
display/idl/hfi_typedef.hxx
display/idl/hfi_typetext.cxx
display/idl/hfi_typetext.hxx
display/idl/hfi_xrefpage.cxx
display/idl/hfi_xrefpage.hxx
display/idl/hi_ary.cxx
display/idl/hi_ary.hxx
display/idl/hi_display.cxx
display/idl/hi_env.cxx
display/idl/hi_env.hxx
display/idl/hi_factory.cxx
display/idl/hi_factory.hxx
display/idl/hi_linkhelper.cxx
display/idl/hi_linkhelper.hxx
display/idl/hi_main.cxx
display/idl/hi_main.hxx
display/idl/makefile.mk
display/inc/cfrstd.hxx
display/inc/html/chd_udk2.hxx
display/inc/idl/hi_display.hxx
display/inc/toolkit/hf_docentry.hxx
display/inc/toolkit/hf_funcdecl.hxx
display/inc/toolkit/hf_linachain.hxx
display/inc/toolkit/hf_navi_main.hxx
display/inc/toolkit/hf_navi_sub.hxx
display/inc/toolkit/hf_title.hxx
display/inc/toolkit/htmlfactory.hxx
display/inc/toolkit/htmlfile.hxx
display/inc/toolkit/out_node.hxx
display/inc/toolkit/out_position.hxx
display/inc/toolkit/out_tree.hxx
display/inc/toolkit/outputstack.hxx
display/kernel/displfct.cxx
display/kernel/displfct.hxx
display/kernel/makefile.mk
display/toolkit/hf_docentry.cxx
display/toolkit/hf_funcdecl.cxx
display/toolkit/hf_linachain.cxx
display/toolkit/hf_navi_main.cxx
display/toolkit/hf_navi_sub.cxx
display/toolkit/hf_title.cxx
display/toolkit/htmlfile.cxx
display/toolkit/makefile.mk
display/toolkit/out_node.cxx
display/toolkit/out_position.cxx
display/toolkit/out_tree.cxx
display/toolkit/outputstack.cxx
exes/adc_uni/adc_cl.cxx
exes/adc_uni/adc_cmd.hxx
exes/adc_uni/adc_cmd_parse.cxx
exes/adc_uni/adc_cmd_parse.hxx
exes/adc_uni/adc_cmds.cxx
exes/adc_uni/adc_cmds.hxx
exes/adc_uni/adc_msg.cxx
exes/adc_uni/cmd_run.cxx
exes/adc_uni/cmd_run.hxx
exes/adc_uni/cmd_sincedata.cxx
exes/adc_uni/cmd_sincedata.hxx
exes/adc_uni/main.cxx
exes/adc_uni/makefile.mk
exes/adc_uni/spec-CommandLine.txt
exes/adc_uni/spec-DevGuideReferenceFile.txt
exes/adc_uni/spec-SinceTag_Handling.txt
inc/adc_cl.hxx
inc/adc_msg.hxx
inc/docu_node_ids.hxx
inc/estack.hxx
inc/luxenum.hxx
inc/manip.hxx
inc/precomp.h
inc/prprpr.hxx
inc/tools/filecoll.hxx
inc/tools/tkpchars.hxx
mkinc/fullcpp.mk
parser/adoc/a_rdocu.cxx
parser/adoc/adoc_tok.cxx
parser/adoc/cx_a_std.cxx
parser/adoc/cx_a_sub.cxx
parser/adoc/docu_pe.cxx
parser/adoc/makefile.mk
parser/adoc/prs_adoc.cxx
parser/adoc/tk_attag.cxx
parser/adoc/tk_docw.cxx
parser/cpp/all_toks.cxx
parser/cpp/all_toks.hxx
parser/cpp/c_dealer.cxx
parser/cpp/c_dealer.hxx
parser/cpp/c_rcode.cxx
parser/cpp/c_rcode.hxx
parser/cpp/cpp_pe.cxx
parser/cpp/cpp_pe.hxx
parser/cpp/cpp_tok.hxx
parser/cpp/cx_base.cxx
parser/cpp/cx_base.hxx
parser/cpp/cx_c_pp.cxx
parser/cpp/cx_c_pp.hxx
parser/cpp/cx_c_std.cxx
parser/cpp/cx_c_std.hxx
parser/cpp/cx_c_sub.cxx
parser/cpp/cx_c_sub.hxx
parser/cpp/cxt2ary.cxx
parser/cpp/cxt2ary.hxx
parser/cpp/defdescr.cxx
parser/cpp/defdescr.hxx
parser/cpp/fevnthdl.hxx
parser/cpp/icprivow.cxx
parser/cpp/icprivow.hxx
parser/cpp/makefile.mk
parser/cpp/pe_base.cxx
parser/cpp/pe_base.hxx
parser/cpp/pe_class.cxx
parser/cpp/pe_class.hxx
parser/cpp/pe_defs.cxx
parser/cpp/pe_defs.hxx
parser/cpp/pe_enum.cxx
parser/cpp/pe_enum.hxx
parser/cpp/pe_enval.cxx
parser/cpp/pe_enval.hxx
parser/cpp/pe_expr.cxx
parser/cpp/pe_expr.hxx
parser/cpp/pe_file.cxx
parser/cpp/pe_file.hxx
parser/cpp/pe_funct.cxx
parser/cpp/pe_funct.hxx
parser/cpp/pe_ignor.cxx
parser/cpp/pe_ignor.hxx
parser/cpp/pe_namsp.cxx
parser/cpp/pe_namsp.hxx
parser/cpp/pe_param.cxx
parser/cpp/pe_param.hxx
parser/cpp/pe_tpltp.cxx
parser/cpp/pe_tpltp.hxx
parser/cpp/pe_tydef.cxx
parser/cpp/pe_tydef.hxx
parser/cpp/pe_type.cxx
parser/cpp/pe_type.hxx
parser/cpp/pe_vafu.cxx
parser/cpp/pe_vafu.hxx
parser/cpp/pe_vari.cxx
parser/cpp/pe_vari.hxx
parser/cpp/pev.hxx
parser/cpp/preproc.cxx
parser/cpp/preproc.hxx
parser/cpp/prs_cpp.cxx
parser/cpp/sdocdist.hxx
parser/cpp/sfscope.hxx
parser/cpp/sownstck.hxx
parser/cpp/srecover.hxx
parser/cpp/tkp_cpp.cxx
parser/cpp/tkp_cpp.hxx
parser/cpp/tokintpr.hxx
parser/inc/adoc/a_rdocu.hxx
parser/inc/adoc/adoc_tok.hxx
parser/inc/adoc/atokdeal.hxx
parser/inc/adoc/cx_a_std.hxx
parser/inc/adoc/cx_a_sub.hxx
parser/inc/adoc/docu_pe.hxx
parser/inc/adoc/prs_adoc.hxx
parser/inc/adoc/tk_attag.hxx
parser/inc/adoc/tk_docw.hxx
parser/inc/adoc/tokintpr.hxx
parser/inc/cpp/ctokdeal.hxx
parser/inc/cpp/prs_cpp.hxx
parser/inc/doc_deal.hxx
parser/inc/semantic/callf.hxx
parser/inc/semantic/parseenv.hxx
parser/inc/semantic/sub_pe.hxx
parser/inc/semantic/sub_peu.hxx
parser/inc/tokens/parseinc.hxx
parser/inc/tokens/stmstarr.hxx
parser/inc/tokens/stmstate.hxx
parser/inc/tokens/stmstfin.hxx
parser/inc/tokens/tkp.hxx
parser/inc/tokens/tkpcontx.hxx
parser/inc/tokens/tkpstama.hxx
parser/inc/tokens/tokdeal.hxx
parser/inc/tokens/token.hxx
parser/inc/tokens/tokproct.hxx
parser/inc/x_docu.hxx
parser/inc/x_parse.hxx
parser/kernel/makefile.mk
parser/kernel/parsefct.cxx
parser/kernel/parsefct.hxx
parser/kernel/x_docu.cxx
parser/kernel/x_parse.cxx
parser/semantic/makefile.mk
parser/semantic/parseenv.cxx
parser/tokens/makefile.mk
parser/tokens/stmstarr.cxx
parser/tokens/stmstate.cxx
parser/tokens/stmstfin.cxx
parser/tokens/tkp.cxx
parser/tokens/tkpcontx.cxx
parser/tokens/tkpstama.cxx
parser/tokens/tokdeal.cxx
parser_i/idl/cx_idlco.cxx
parser_i/idl/cx_sub.cxx
parser_i/idl/distrib.cxx
parser_i/idl/makefile.mk
parser_i/idl/parsenv2.cxx
parser_i/idl/pe_attri.cxx
parser_i/idl/pe_const.cxx
parser_i/idl/pe_enum2.cxx
parser_i/idl/pe_evalu.cxx
parser_i/idl/pe_excp.cxx
parser_i/idl/pe_file2.cxx
parser_i/idl/pe_func2.cxx
parser_i/idl/pe_iface.cxx
parser_i/idl/pe_property.cxx
parser_i/idl/pe_selem.cxx
parser_i/idl/pe_servi.cxx
parser_i/idl/pe_singl.cxx
parser_i/idl/pe_struc.cxx
parser_i/idl/pe_tydf2.cxx
parser_i/idl/pe_type2.cxx
parser_i/idl/pe_vari2.cxx
parser_i/idl/pestate.cxx
parser_i/idl/semnode.cxx
parser_i/idl/tk_const.cxx
parser_i/idl/tk_ident.cxx
parser_i/idl/tk_keyw.cxx
parser_i/idl/tk_punct.cxx
parser_i/idl/tkp_uidl.cxx
parser_i/idl/unoidl.cxx
parser_i/idoc/cx_docu2.cxx
parser_i/idoc/cx_dsapi.cxx
parser_i/idoc/docu_pe2.cxx
parser_i/idoc/makefile.mk
parser_i/idoc/tk_atag2.cxx
parser_i/idoc/tk_docw2.cxx
parser_i/idoc/tk_html.cxx
parser_i/idoc/tk_xml.cxx
parser_i/inc/s2_dsapi/cx_docu2.hxx
parser_i/inc/s2_dsapi/cx_dsapi.hxx
parser_i/inc/s2_dsapi/docu_pe2.hxx
parser_i/inc/s2_dsapi/dsapitok.hxx
parser_i/inc/s2_dsapi/tk_atag2.hxx
parser_i/inc/s2_dsapi/tk_docw2.hxx
parser_i/inc/s2_dsapi/tk_html.hxx
parser_i/inc/s2_dsapi/tk_xml.hxx
parser_i/inc/s2_dsapi/tokintpr.hxx
parser_i/inc/s2_dsapi/tokrecv.hxx
parser_i/inc/s2_luidl/cx_idlco.hxx
parser_i/inc/s2_luidl/cx_sub.hxx
parser_i/inc/s2_luidl/distrib.hxx
parser_i/inc/s2_luidl/parsenv2.hxx
parser_i/inc/s2_luidl/pe_attri.hxx
parser_i/inc/s2_luidl/pe_const.hxx
parser_i/inc/s2_luidl/pe_enum2.hxx
parser_i/inc/s2_luidl/pe_evalu.hxx
parser_i/inc/s2_luidl/pe_excp.hxx
parser_i/inc/s2_luidl/pe_file2.hxx
parser_i/inc/s2_luidl/pe_func2.hxx
parser_i/inc/s2_luidl/pe_iface.hxx
parser_i/inc/s2_luidl/pe_modul.hxx
parser_i/inc/s2_luidl/pe_property.hxx
parser_i/inc/s2_luidl/pe_selem.hxx
parser_i/inc/s2_luidl/pe_servi.hxx
parser_i/inc/s2_luidl/pe_singl.hxx
parser_i/inc/s2_luidl/pe_struc.hxx
parser_i/inc/s2_luidl/pe_tydf2.hxx
parser_i/inc/s2_luidl/pe_type2.hxx
parser_i/inc/s2_luidl/pe_vari2.hxx
parser_i/inc/s2_luidl/pestate.hxx
parser_i/inc/s2_luidl/semnode.hxx
parser_i/inc/s2_luidl/smp_uidl.hxx
parser_i/inc/s2_luidl/tk_const.hxx
parser_i/inc/s2_luidl/tk_ident.hxx
parser_i/inc/s2_luidl/tk_keyw.hxx
parser_i/inc/s2_luidl/tk_punct.hxx
parser_i/inc/s2_luidl/tkp_uidl.hxx
parser_i/inc/s2_luidl/tokintpr.hxx
parser_i/inc/s2_luidl/tokproct.hxx
parser_i/inc/s2_luidl/tokrecv.hxx
parser_i/inc/s2_luidl/uidl_tok.hxx
parser_i/inc/semantic/parsenv2.hxx
parser_i/inc/tokens/stmstar2.hxx
parser_i/inc/tokens/stmstat2.hxx
parser_i/inc/tokens/stmstfi2.hxx
parser_i/inc/tokens/tkp2.hxx
parser_i/inc/tokens/tkpcont2.hxx
parser_i/inc/tokens/tkpstam2.hxx
parser_i/inc/tokens/token2.hxx
parser_i/inc/x_parse2.hxx
parser_i/tokens/makefile.mk
parser_i/tokens/stmstar2.cxx
parser_i/tokens/stmstat2.cxx
parser_i/tokens/stmstfi2.cxx
parser_i/tokens/tkp2.cxx
parser_i/tokens/tkpcont2.cxx
parser_i/tokens/tkpstam2.cxx
parser_i/tokens/x_parse2.cxx
tools/filecoll.cxx
tools/makefile.mk
tools/tkpchars.cxx