Home | History | Annotate | Download | only in bits

Lines Matching defs:catalog

1642    *  @brief  Messages facet base class providing catalog typedef.
1646 typedef int catalog;
1715 * @brief Open a message catalog.
1717 * This function opens and returns a handle to a message catalog by
1720 * @param s The catalog to open.
1722 * @return Handle to the catalog or value < 0 if open fails.
1724 catalog
1730 * @brief Open a message catalog.
1733 * catalog by returning do_open(s, loc). The third argument provides a
1734 * message catalog root directory for gnu gettext and is ignored
1737 * @param s The catalog to open.
1739 * @param dir Message catalog root directory.
1740 * @return Handle to the catalog or value < 0 if open fails.
1742 catalog
1746 * @brief Look up a string in a message catalog.
1748 * This function retrieves and returns a message from a catalog by
1754 * @param c The catalog to access.
1761 get(catalog __c, int __set, int __msgid, const string_type& __s) const
1765 * @brief Close a message catalog.
1767 * Closes catalog @a c by calling do_close(c).
1769 * @param c The catalog to close.
1772 close(catalog __c) const
1781 * @brief Open a message catalog.
1783 * This function opens and returns a handle to a message catalog in an
1787 * @param s The catalog to open.
1789 * @return Handle to the opened catalog, value < 0 if open failed.
1791 virtual catalog
1795 * @brief Look up a string in a message catalog.
1797 * This function retrieves and returns a message from a catalog in an
1804 * @param c The catalog to access.
1811 do_get(catalog, int, int, const string_type& __dfault) const;
1814 * @brief Close a message catalog.
1816 * @param c The catalog to close.
1819 do_close(catalog) const;
1840 // Convert char* to _CharT in locale used to open catalog.
1877 messages<char>::do_get(catalog, int, int, const string&) const;
1882 messages<wchar_t>::do_get(catalog, int, int, const wstring&) const;