HomeSort by relevance Sort by last modified time
    Searched refs:icu (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/icu4c/config/
test-icu-config.sh 6 # Just a script to test out icu-config.
10 which icu-config
11 icu-config
12 icu-config -?
13 icu-config --BAD ARGUMENT
14 icu-config --bindir
15 icu-config --cflags
16 icu-config --cxx
17 icu-config --cc
18 icu-config --cxxflags
    [all...]
dist.mk 16 DISTY_ICU=$(DISTY_TMP)/icu
21 DOCZIP=icu-docs.zip
63 svn export -r $(shell echo $(SVNVER) | tr -d 'a-zA-Z' ) $(SVNURL) "$(DISTY_TMP)/icu"
67 ( cd $(DISTY_TMP)/icu ; python as_is/bomlist.py > as_is/bomlist.txt || rm -f as_is/bomlist.txt )
68 ( cd $(DISTY_TMP) ; tar cfpz $(DISTY_FILE_TGZ) icu )
69 ( cd $(DISTY_TMP) ; zip -rlq $(DISTY_FILE_ZIP) icu )
82 @(cd $(DISTY_CHECK) && tar xfpz $(DISTY_FILE_TGZ) && cd icu/source && $(SHELL) ./configure $(DISTCHECK_CONFIG_OPTIONS) && $(MAKE) check $(DISTCHECK_MAKE_OPTIONS) ) && (echo "!!! PASS: $(DISTY_FILE_TGZ)" )
  /external/chromium/base/i18n/
time_formatting.cc 19 string16 TimeFormat(const icu::DateFormat* formatter,
22 icu::UnicodeString date_string;
36 scoped_ptr<icu::DateFormat> formatter(
37 icu::DateFormat::createTimeInstance(icu::DateFormat::kShort));
55 icu::DateTimePatternGenerator *generator =
56 icu::DateTimePatternGenerator::createInstance(status);
59 icu::UnicodeString generated_pattern =
60 generator->getBestPattern(icu::UnicodeString(base_pattern), status);
64 icu::SimpleDateFormat formatter(generated_pattern, status)
    [all...]
number_formatting.cc 22 // There's no ICU call to destroy a NumberFormat object other than
25 // than by ICU.
27 number_format.reset(icu::NumberFormat::createInstance(status));
31 scoped_ptr<icu::NumberFormat> number_format;
39 icu::NumberFormat* number_format = g_number_format.Get().number_format.get();
45 icu::UnicodeString ustr;
file_util_icu.cc 5 // File utilities that use the ICU library go in this file.
33 return !!set->containsNone(icu::UnicodeString(s.c_str(), s.size()));
43 scoped_ptr<icu::UnicodeSet> set;
61 set.reset(new icu::UnicodeSet(icu::UnicodeString(
64 set.reset(new icu::UnicodeSet(UNICODE_STRING_SIMPLE(
111 collator_.reset(icu::Collator::createInstance(error_code));
114 collator_->setStrength(icu::Collator::TERTIARY);
122 scoped_ptr<icu::Collator> collator_;
147 int cursor = 0; // The ICU macros expect an int
    [all...]
rtl.cc 24 std::string GetLocaleString(const icu::Locale& locale) {
44 // Represents the locale-specific ICU text direction.
47 // Convert the ICU default locale to a string.
49 return GetLocaleString(icu::Locale::getDefault());
52 // Convert the ICU canonicalized locale to a string.
54 return GetLocaleString(icu::Locale::createCanonical(locale));
57 // Convert Chrome locale name to ICU locale name
69 const icu::Locale& locale = icu::Locale::getDefault();
86 icu::Locale locale(ICULocaleName(locale_string).c_str())
    [all...]
  /external/icu4c/samples/
defs.mk 6 # Load ICU information. You can copy this to other makefiles #######
8 CC=$(shell icu-config --cc)
9 CXX=$(shell icu-config --cxx)
10 CPPFLAGS=$(shell icu-config --cppflags)
11 CFLAGS=$(shell icu-config --cflags)
12 CXXFLAGS=$(shell icu-config --cxxflags)
13 LDFLAGS =$(shell icu-config --ldflags)
14 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
15 INVOKE=$(shell icu-config --invoke)
16 GENRB=$(shell icu-config --invoke=genrb
    [all...]
  /external/chromium/chrome/browser/chromeos/status/
clock_menu_button_browsertest.cc 43 scoped_ptr<icu::TimeZone> timezone_first(icu::TimeZone::createTimeZone(
44 icu::UnicodeString::fromUTF8("Asia/Hong_Kong")));
47 scoped_ptr<icu::TimeZone> timezone_second(icu::TimeZone::createTimeZone(
48 icu::UnicodeString::fromUTF8("Pacific/Samoa")));
clock_menu_button.cc 84 scoped_ptr<icu::DateFormat> formatter(
85 icu::DateFormat::createTimeInstance(icu::DateFormat::kShort));
86 icu::UnicodeString time_string;
87 icu::FieldPosition ampm_field(icu::DateFormat::kAmPmField);
163 void ClockMenuButton::TimezoneChanged(const icu::TimeZone& timezone) {
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
system_settings_provider.h 13 #include "third_party/icu/public/i18n/unicode/timezone.h"
31 virtual void TimezoneChanged(const icu::TimeZone& timezone);
41 static string16 GetTimezoneName(const icu::TimeZone& timezone);
44 static string16 GetTimezoneID(const icu::TimeZone& timezone);
47 const icu::TimeZone* GetTimezone(const string16& timezone_id);
56 string16 GetKnownTimezoneID(const icu::TimeZone& timezone) const;
59 std::vector<icu::TimeZone*> timezones_;
system_settings_provider.cc 30 // TODO(jungshik): Using Enumerate method in ICU gives 600+ timezones.
131 string16 GetExemplarCity(const icu::TimeZone& zone) {
132 // TODO(jungshik): After upgrading to ICU 4.6, use U_ICUDATA_ZONE
149 icu::UnicodeString zone_id;
158 icu::UnicodeString city;
161 city = icu::ures_getUnicodeStringByKey(zone_item.get(), "ec", &status);
185 timezones_.push_back(icu::TimeZone::createTimeZone(
186 icu::UnicodeString(kTimeZones[i], -1, US_INV)));
207 const icu::TimeZone* timezone = GetTimezone(value);
228 void SystemSettingsProvider::TimezoneChanged(const icu::TimeZone& timezone)
    [all...]
  /external/chromium/chrome/browser/chromeos/
system_access.h 22 virtual void TimezoneChanged(const icu::TimeZone& timezone) = 0;
27 // Returns the current timezone as an icu::Timezone object.
28 virtual const icu::TimeZone& GetTimezone() = 0;
31 virtual void SetTimezone(const icu::TimeZone& timezone) = 0;
mock_system_access.h 18 MOCK_METHOD0(GetTimezone, const icu::TimeZone&());
19 MOCK_METHOD1(SetTimezone, void(const icu::TimeZone& timezone));
system_access.cc 59 virtual const icu::TimeZone& GetTimezone();
60 virtual void SetTimezone(const icu::TimeZone& timezone);
76 scoped_ptr<icu::TimeZone> timezone_;
140 const icu::TimeZone& SystemAccessImpl::GetTimezone() {
144 void SystemAccessImpl::SetTimezone(const icu::TimeZone& timezone) {
146 icu::UnicodeString unicode;
152 icu::TimeZone::setDefault(timezone);
183 icu::TimeZone* timezone =
184 icu::TimeZone::createTimeZone(icu::UnicodeString::fromUTF8(id))
    [all...]
  /external/chromium/chrome/common/
time_format.cc 116 const std::vector<icu::PluralFormat*>& formatter(FormatType format_type) {
173 std::vector<icu::PluralFormat*> short_formatter_;
174 std::vector<icu::PluralFormat*> time_left_formatter_;
175 std::vector<icu::PluralFormat*> time_elapsed_formatter_;
177 std::vector<icu::PluralFormat*>* time_formats);
178 static icu::PluralFormat* createFallbackFormat(
179 const icu::PluralRules& rules, int index, FormatType format_type);
188 FormatType format_type, std::vector<icu::PluralFormat*>* time_formats) {
189 static const icu::UnicodeString kKeywords[] = {
195 scoped_ptr<icu::PluralRules> rules
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /external/icu4c/common/unicode/
uversion.h 19 * \brief C API: API for accessing ICU version numbers.
22 /* Main ICU version information */
34 * @stable ICU 2.4
38 /** An ICU version consists of up to 4 numbers from 0..255.
39 * @stable ICU 2.4
43 /** In a string, ICU version fields are delimited by dots.
44 * @stable ICU 2.4
48 /** The maximum length of an ICU version string.
49 * @stable ICU 2.4
53 /** The binary form of a version on ICU APIs is an array of 4 uint8_t
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uversion.h 14 * Contains all the important version numbers for ICU.
19 /* Main ICU version information */
43 * This value will change in the subsequent releases of ICU
44 * @stable ICU 2.4
50 * @stable ICU 2.4
54 /** The current ICU major version as an integer.
55 * This value will change in the subsequent releases of ICU
56 * @stable ICU 2.4
60 /** The current ICU minor version as an integer.
61 * This value will change in the subsequent releases of ICU
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
uversion.h 14 * Contains all the important version numbers for ICU.
19 /* Main ICU version information */
43 * This value will change in the subsequent releases of ICU
44 * @stable ICU 2.4
50 * @stable ICU 2.4
54 /** The current ICU major version as an integer.
55 * This value will change in the subsequent releases of ICU
56 * @stable ICU 2.4
60 /** The current ICU minor version as an integer.
61 * This value will change in the subsequent releases of ICU
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
uversion.h 14 * Contains all the important version numbers for ICU.
19 /* Main ICU version information */
43 * This value will change in the subsequent releases of ICU
44 * @stable ICU 2.4
50 * @stable ICU 2.4
54 /** The current ICU major version as an integer.
55 * This value will change in the subsequent releases of ICU
56 * @stable ICU 2.4
60 /** The current ICU minor version as an integer.
61 * This value will change in the subsequent releases of ICU
    [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
uversion.h 14 * Contains all the important version numbers for ICU.
19 /* Main ICU version information */
43 * This value will change in the subsequent releases of ICU
44 * @stable ICU 2.4
50 * @stable ICU 2.4
54 /** The current ICU major version as an integer.
55 * This value will change in the subsequent releases of ICU
56 * @stable ICU 2.4
60 /** The current ICU minor version as an integer.
61 * This value will change in the subsequent releases of ICU
    [all...]
  /libcore/luni/src/main/java/java/text/
Normalizer.java 19 import libcore.icu.NativeNormalizer;
  /libcore/luni/src/main/java/java/net/
IDN.java 19 import libcore.icu.NativeIDN;
  /external/icu4c/data/mappings/
ucmfiles.mk 11 # configure the ICU.
20 # Note: ICU is updated to handle three EBCDIC converters (JIPS, KEIS, and JEF) which uses
33 # ucmebcdic.mk from the <icu>/source/data directory
117 icu-internal-25546.ucm lmb-excp.ucm \
118 icu-internal-compound-d1.ucm icu-internal-compound-d2.ucm icu-internal-compound-d3.ucm icu-internal-compound-d4.ucm\
119 icu-internal-compound-d5.ucm icu-internal-compound-d6.ucm icu-internal-compound-d7.ucm
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/
Unicode.h 31 #include <wtf/unicode/icu/UnicodeIcu.h>

Completed in 1323 milliseconds

1 2 3 4 5 6