HomeSort by: relevance | last modified time | path
    Searched defs:catalog (Results 1 - 12 of 12) sorted by relevancy

  /src/external/bsd/ntp/dist/libntp/lib/isc/nls/
msgcat.c 45 * in order to use a message catalog.
51 nl_catd catalog; member in struct:isc_msgcat
63 * Open a message catalog.
81 msgcat->catalog = catopen(name, 0);
93 * Close a message catalog.
102 if (msgcat->catalog != (nl_catd)(-1))
103 (void)catclose(msgcat->catalog);
129 return (catgets(msgcat->catalog, set, message, default_text));
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/
hello.cs 16 private static GettextResourceManager catalog = field in class:Hello
30 label1.Text = catalog.GetString("Hello, world!");
37 catalog.GetString("This program is running as process number {0}."),
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java/
Hello.java 14 ResourceBundle catalog = ResourceBundle.getBundle("hello-java"); local
15 System.out.println(GettextResource.gettext(catalog,"Hello, world!"));
18 GettextResource.gettext(catalog,
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-swing/
Hello.java 17 ResourceBundle catalog = ResourceBundle.getBundle("hello-java-swing"); local
21 new JLabel(GettextResource.gettext(catalog,"Hello, world!"));
25 GettextResource.gettext(catalog,
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/
Hello.java 16 ResourceBundle catalog = ResourceBundle.getBundle("hello-java-awt"); local
24 Label label1 = new Label(GettextResource.gettext(catalog,"Hello, world!"));
28 GettextResource.gettext(catalog,
  /src/external/gpl2/gettext/dist/gettext-tools/src/gnu/gettext/
DumpResource.java 69 private ResourceBundle catalog; field in class:DumpResource
71 // Lookup the value corresponding to a key found in catalog.getKeys().
72 // Here we assume that the catalog returns a non-inherited value for
79 value = lookupMethod.invoke(catalog, new Object[] { key });
87 value = catalog.getObject(key);
96 lookupMethod = catalog.getClass().getMethod("lookup", new Class[] { java.lang.String.class });
102 pluralMethod = catalog.getClass().getMethod("get_msgid_plural_table", new Class[0]);
108 pluralField = catalog.getClass().getField("plural");
115 Enumeration keys = catalog.getKeys();
130 Enumeration keys = catalog.getKeys()
208 ResourceBundle catalog = ResourceBundle.getBundle(resource_name,locale); local
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
cxx11-shim_facets.cc 214 messages_base::catalog
221 messages_base::catalog, int, int, const C*, size_t);
225 __messages_close(other_abi, const facet*, messages_base::catalog);
443 typedef messages_base::catalog catalog; typedef in struct:__facet_shims::__anon14834::messages_shim
449 virtual catalog
457 do_get(catalog c, int set, int msgid, const string_type& dfault) const
466 do_close(catalog c) const
627 messages_base::catalog
636 template messages_base::catalog
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
cxx11-shim_facets.cc 214 messages_base::catalog
221 messages_base::catalog, int, int, const C*, size_t);
225 __messages_close(other_abi, const facet*, messages_base::catalog);
443 typedef messages_base::catalog catalog; typedef in struct:__facet_shims::__anon17232::messages_shim
449 virtual catalog
457 do_get(catalog c, int set, int msgid, const string_type& dfault) const
466 do_close(catalog c) const
627 messages_base::catalog
636 template messages_base::catalog
    [all...]
  /src/usr.bin/grep/
grep.c 59 nl_catd catalog; variable
329 catalog = catopen("grep", NL_CAT_LOCALE);
716 catclose(catalog);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
locale_facets_nonio.h 1823 * @brief Messages facet base class providing catalog typedef.
1828 typedef int catalog; typedef in struct:messages_base
1900 * @brief Open a message catalog.
1902 * This function opens and returns a handle to a message catalog by
1905 * @param __s The catalog to open.
1907 * @return Handle to the catalog or value < 0 if open fails.
1909 catalog
1915 * @brief Open a message catalog.
1918 * catalog by returning do_open(s, loc). The third argument provides a
1919 * message catalog root directory for gnu gettext and is ignore
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
locale_facets_nonio.h 1823 * @brief Messages facet base class providing catalog typedef.
1828 typedef int catalog; typedef in struct:messages_base
1900 * @brief Open a message catalog.
1902 * This function opens and returns a handle to a message catalog by
1905 * @param __s The catalog to open.
1907 * @return Handle to the catalog or value < 0 if open fails.
1909 catalog
1915 * @brief Open a message catalog.
1918 * catalog by returning do_open(s, loc). The third argument provides a
1919 * message catalog root directory for gnu gettext and is ignore
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_iso9660.c 383 * Usage : boot-catalog=<value>
385 * Default: "boot.catalog"
386 * COMPAT : mkisofs -c/-eltorito-catalog <value>
388 * Specifies a fullpath of El Torito boot catalog.
809 /* boot catalog file */
811 struct isoent *catalog; member in struct:iso9660::__anon7114
1110 iso9660->el_torito.catalog = NULL;
1111 /* Set default file name of boot catalog */
1113 "boot.catalog");
1302 if (strcmp(key, "boot-catalog") == 0)
    [all...]

Completed in 42 milliseconds