Searched defs:languages (Results 1 - 9 of 9) sorted by relevance

/external/libvpx/examples/includes/geshi/contrib/
H A Dcssgen2.php3 * A simple script which outputs the CSS classes for all languages
34 $languages = array(); variable
39 $languages[] = substr($file, 0, $pos);
44 sort($languages);
54 foreach ($languages as $language) {
H A Dexample.php183 echo '<option>No languages available!</option>';
186 $languages = array(); variable
192 $languages[] = $lang;
195 sort($languages);
196 foreach ($languages as $lang) {
H A Dlangcheck.php167 $languages = array(); variable
175 $languages[] = $lang;
180 $languages = array_unique($languages); variable
181 sort($languages);
183 if(!count($languages)) {
190 if (isset($_REQUEST['show']) && in_array($_REQUEST['show'], $languages)) {
191 $languages = array($_REQUEST['show']); variable
195 foreach ($languages as $lang) {
/external/chromium/net/base/
H A Dnet_util.h140 // |languages| is a comma separated list of ISO 639 language codes. It
142 // who understands languages listed. |host| will be converted to a
147 // When |languages| is empty, even that mixing is not allowed.
156 const std::wstring& languages,
234 // also takes the same accept languages component as ElideURL. |new_parsed| may
237 const std::wstring& languages,
243 // if |languages| accepts the Unicode representation. If
264 const std::wstring& languages,
274 inline std::wstring FormatUrl(const GURL& url, const std::wstring& languages) { argument
275 return FormatUrl(url, languages, tru
[all...]
H A Dnet_util_unittest.cc57 // TODO(jungshik) This is just a random sample of languages and is far
59 // of languages (powerset of a set of all the languages).
190 // only used in some languages written in Cyrillic.
306 // and tested only for a couple of languages.
364 const std::wstring languages; member in struct:__anon945::UrlTestData
423 void AppendLanguagesToOutputs(const wchar_t* languages, argument
427 expected->append(languages);
429 actual->append(languages);
1279 {"Japanese IDN without any languages",
[all...]
H A Dnet_util.cc448 // TODO(brettw) bug 880223: we should allow some other languages to be
494 // An alternative is negative-listing (languages using Greek and
551 // rebuilt with the minimal subset of locale data for languages
553 // of languages selectable for Accept-Languages. With the rebuilt ICU
579 const std::wstring& languages) {
625 // allowed with |languages| (while it blocks Chinese + Latin letters with
627 // when |languages| is empty.
628 if (languages.empty())
643 std::string languages_list(WideToASCII(languages));
658 const std::wstring& languages,
577 IsIDNComponentSafe(const char16* str, int str_len, const std::wstring& languages) argument
656 IDNToUnicodeOneComponent(const char16* comp, size_t comp_len, const std::wstring& languages, string16* out) argument
701 FormatViewSourceUrl(const GURL& url, const std::wstring& languages, bool omit_username_password, UnescapeRule::Type unescape_rules, url_parse::Parsed* new_parsed, size_t* prefix_end, size_t* offset_for_adjustment) argument
849 IDNToUnicode(const char* host, size_t host_len, const std::wstring& languages, size_t* offset_for_adjustment) argument
1266 AppendFormattedHost(const GURL& url, const std::wstring& languages, std::wstring* output, url_parse::Parsed* new_parsed, size_t* offset_for_adjustment) argument
1350 FormatUrl(const GURL& url, const std::wstring& languages, bool omit_username_password, UnescapeRule::Type unescape_rules, url_parse::Parsed* new_parsed, size_t* prefix_end, size_t* offset_for_adjustment) argument
[all...]
/external/webkit/WebCore/svg/
H A DSVGGlyphElement.h84 languages == other.languages;
101 Vector<String> languages; member in struct:WebCore::SVGGlyphIdentifier
/external/bluetooth/glib/glib/
H A Dgkeyfile.c1663 gchar **languages; local
1681 languages = g_new (gchar *, g_slist_length (list) + 1);
1683 languages[i] = l->data;
1684 languages[i] = NULL;
1691 languages = (gchar **) g_get_language_names ();
1695 for (i = 0; languages[i]; i++)
1697 candidate_key = g_strdup_printf ("%s[%s]", key, languages[i]);
1723 g_strfreev (languages);
H A Dgutils.c3052 gchar *languages; member in struct:_GLanguageNamesCache
3060 g_free (cache->languages);
3102 if (!(cache->languages && strcmp (cache->languages, value) == 0))
3104 gchar **languages; local
3109 g_free (cache->languages);
3111 cache->languages = g_strdup (value);
3123 cache->language_names = languages = g_new (gchar *, g_slist_length (list) + 1);
3125 languages[i] = l->data;
3126 languages[
[all...]

Completed in 102 milliseconds