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

1 2 3 4 5 6 7 8 9

  /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...]
  /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...]
  /external/icu4c/tools/toolutil/
dbgutil.h 20 U_TOOLUTIL_API const icu::UnicodeString& U_EXPORT2
27 udbg_enumByString(UDebugEnumType type, const icu::UnicodeString& string);
34 U_CAPI int32_t U_EXPORT2 udbg_stoi(const icu::UnicodeString &s);
36 U_CAPI double U_EXPORT2 udbg_stod(const icu::UnicodeString &s);
38 U_CAPI icu::UnicodeString * U_EXPORT2
39 udbg_escape(const icu::UnicodeString &s, icu::UnicodeString *dst);
pkg_icu.h 16 const char *sourcePath, const char *addList, icu::Package *pkg,
19 U_CAPI icu::Package * U_EXPORT2
20 readList(const char *filesPath, const char *listname, UBool readContents, icu::Package *listPkgIn);
  /external/icu4c/i18n/
ucurrimp.h 27 icu::UnicodeString& result, UErrorCode& ec);
51 const icu::UnicodeString& text,
52 icu::ParsePosition& pos,
  /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")));
  /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...]
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /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...]
  /external/harfbuzz_ng/test/api/
test-c.c 39 #include <hb-icu.h>
  /libcore/luni/src/main/java/java/text/
Normalizer.java 19 import libcore.icu.NativeNormalizer;
  /external/icu4c/i18n/unicode/
uspoof.h 74 * More generally, the standard ICU thread safety rules apply: functions that take a
137 * of Unicode or ICU, so an applications should not rely on creating a permanent,
152 * @stable ICU 4.2
223 * @stable ICU 4.2
243 * @param pErrorCode ICU error code
248 * @stable ICU 4.2
279 * @param status an in/out ICU UErrorCode. Among the possible errors is
283 * @stable ICU 4.2
294 * @stable ICU 4.2
310 * @stable ICU 4.
    [all...]

Completed in 7156 milliseconds

1 2 3 4 5 6 7 8 9