Home | History | Annotate | Download | only in bits

Lines Matching defs:catalog

1665    *  @brief  Messages facet base class providing catalog typedef.
1670 typedef int catalog;
1740 * @brief Open a message catalog.
1742 * This function opens and returns a handle to a message catalog by
1745 * @param s The catalog to open.
1747 * @return Handle to the catalog or value < 0 if open fails.
1749 catalog
1755 * @brief Open a message catalog.
1758 * catalog by returning do_open(s, loc). The third argument provides a
1759 * message catalog root directory for gnu gettext and is ignored
1762 * @param s The catalog to open.
1764 * @param dir Message catalog root directory.
1765 * @return Handle to the catalog or value < 0 if open fails.
1767 catalog
1771 * @brief Look up a string in a message catalog.
1773 * This function retrieves and returns a message from a catalog by
1779 * @param c The catalog to access.
1786 get(catalog __c, int __set, int __msgid, const string_type& __s) const
1790 * @brief Close a message catalog.
1792 * Closes catalog @a c by calling do_close(c).
1794 * @param c The catalog to close.
1797 close(catalog __c) const
1806 * @brief Open a message catalog.
1808 * This function opens and returns a handle to a message catalog in an
1812 * @param s The catalog to open.
1814 * @return Handle to the opened catalog, value < 0 if open failed.
1816 virtual catalog
1820 * @brief Look up a string in a message catalog.
1822 * This function retrieves and returns a message from a catalog in an
1829 * @param c The catalog to access.
1836 do_get(catalog, int, int, const string_type& __dfault) const;
1839 * @brief Close a message catalog.
1841 * @param c The catalog to close.
1844 do_close(catalog) const;
1865 // Convert char* to _CharT in locale used to open catalog.
1902 messages<char>::do_get(catalog, int, int, const string&) const;
1907 messages<wchar_t>::do_get(catalog, int, int, const wstring&) const;