Searched defs:MessageFormat (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
H A Dmessageformat.js63 goog.provide('goog.i18n.MessageFormat');
72 * Constructor of MessageFormat.
78 goog.i18n.MessageFormat = function(pattern) {
106 goog.i18n.MessageFormat.LITERAL_PLACEHOLDER_ = '\uFDDF_';
114 goog.i18n.MessageFormat.Element_ = {
125 goog.i18n.MessageFormat.BlockType_ = {
140 goog.i18n.MessageFormat.OTHER_ = 'other';
148 goog.i18n.MessageFormat.REGEX_LITERAL_ = new RegExp("'([{}#].*?)'", 'g');
156 goog.i18n.MessageFormat.REGEX_DOUBLE_APOSTROPHE_ = new RegExp("''", 'g');
170 goog.i18n.MessageFormat
[all...]
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dmsgfmt.h49 * <p>MessageFormat prepares strings for display to users,
54 * <p>A MessageFormat is constructed from a <em>pattern</em> string
57 * <p><code>MessageFormat</code> differs from the other <code>Format</code>
58 * classes in that you create a <code>MessageFormat</code> object with one
60 * method). Factory methods aren't necessary because <code>MessageFormat</code>
77 * <p>An argument might have a "complex" type with nested MessageFormat sub-patterns.
88 * <p>When formatting, MessageFormat takes a collection of argument values
103 * <code>MessageFormat</code> uses patterns of the following form:
145 * only in program syntax, like quoting in MessageFormat.
254 * MessageFormat
323 class U_I18N_API MessageFormat : public Format { class in inherits:Format
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dmsgfmt.h49 * <p>MessageFormat prepares strings for display to users,
54 * <p>A MessageFormat is constructed from a <em>pattern</em> string
57 * <p><code>MessageFormat</code> differs from the other <code>Format</code>
58 * classes in that you create a <code>MessageFormat</code> object with one
60 * method). Factory methods aren't necessary because <code>MessageFormat</code>
77 * <p>An argument might have a "complex" type with nested MessageFormat sub-patterns.
88 * <p>When formatting, MessageFormat takes a collection of argument values
103 * <code>MessageFormat</code> uses patterns of the following form:
145 * only in program syntax, like quoting in MessageFormat.
254 * MessageFormat
323 class U_I18N_API MessageFormat : public Format { class in inherits:Format
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dmsgfmt.cpp51 // class MessageFormat
81 // MessageFormat Type List Number, Date, Time or Choice
158 return icu::MessageFormat::equalFormats(key1.pointer, key2.pointer);
166 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(MessageFormat)
227 // Creates a MessageFormat instance based on the pattern.
229 MessageFormat::MessageFormat(const UnicodeString& pattern, function in class:MessageFormat
250 MessageFormat::MessageFormat(const UnicodeString& pattern, function in class:MessageFormat
272 MessageFormat function in class:MessageFormat
295 MessageFormat::MessageFormat(const MessageFormat& that) function in class:MessageFormat
[all...]
/external/icu/icu4c/source/i18n/
H A Dmsgfmt.cpp51 // class MessageFormat
81 // MessageFormat Type List Number, Date, Time or Choice
158 return icu::MessageFormat::equalFormats(key1.pointer, key2.pointer);
166 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(MessageFormat)
227 // Creates a MessageFormat instance based on the pattern.
229 MessageFormat::MessageFormat(const UnicodeString& pattern, function in class:MessageFormat
250 MessageFormat::MessageFormat(const UnicodeString& pattern, function in class:MessageFormat
272 MessageFormat function in class:MessageFormat
295 MessageFormat::MessageFormat(const MessageFormat& that) function in class:MessageFormat
[all...]
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromeBackgroundScript.js600 if("zh_TW"==goog.LOCALE||"zh-TW"==goog.LOCALE)goog.i18n.pluralRules.select=goog.i18n.pluralRules.defaultSelect_;"zu"==goog.LOCALE&&(goog.i18n.pluralRules.select=goog.i18n.pluralRules.hiSelect_);goog.i18n.MessageFormat=function(a){this.literals_=[];this.parsedPattern_=[];this.numberFormatter_=new goog.i18n.NumberFormat(goog.i18n.NumberFormat.Format.DECIMAL);this.parsePattern_(a)};goog.i18n.MessageFormat.LITERAL_PLACEHOLDER_="\ufddf_";goog.i18n.MessageFormat.Element_={STRING:0,BLOCK:1};goog.i18n.MessageFormat.BlockType_={PLURAL:0,ORDINAL:1,SELECT:2,SIMPLE:3,STRING:4,UNKNOWN:5};goog.i18n.MessageFormat.OTHER_="other";goog.i18n.MessageFormat.REGEX_LITERAL_=/'([{}#].*?)'/g;
601 goog.i18n.MessageFormat.REGEX_DOUBLE_APOSTROPHE_=/''/g;goog.i18n.MessageFormat.prototype.format=function(a){return this.format_(a,!1)};goog.i18n.MessageFormat.prototype.format_=function(a,b){if(0==this.parsedPattern_.length)return"";var c=[];this.formatBlock_(this.parsedPattern_,a,b,c);c=c.join("");for(b||goog.asserts.assert(-1==c.search("#"),"Not all # were replaced.");0<this.literals_.length;)c=c.replace(this.buildPlaceholder_(this.literals_),this.literals_.pop());return c};
602 goog.i18n.MessageFormat
[all...]
H A DchromeVoxChromeOptionsScript.js661 if("zh_TW"==goog.LOCALE||"zh-TW"==goog.LOCALE)goog.i18n.pluralRules.select=goog.i18n.pluralRules.defaultSelect_;"zu"==goog.LOCALE&&(goog.i18n.pluralRules.select=goog.i18n.pluralRules.hiSelect_);goog.i18n.MessageFormat=function(a){this.literals_=[];this.parsedPattern_=[];this.numberFormatter_=new goog.i18n.NumberFormat(goog.i18n.NumberFormat.Format.DECIMAL);this.parsePattern_(a)};goog.i18n.MessageFormat.LITERAL_PLACEHOLDER_="\ufddf_";goog.i18n.MessageFormat.Element_={STRING:0,BLOCK:1};goog.i18n.MessageFormat.BlockType_={PLURAL:0,ORDINAL:1,SELECT:2,SIMPLE:3,STRING:4,UNKNOWN:5};goog.i18n.MessageFormat.OTHER_="other";goog.i18n.MessageFormat.REGEX_LITERAL_=/'([{}#].*?)'/g;
662 goog.i18n.MessageFormat.REGEX_DOUBLE_APOSTROPHE_=/''/g;goog.i18n.MessageFormat.prototype.format=function(a){return this.format_(a,!1)};goog.i18n.MessageFormat.prototype.format_=function(a,b){if(0==this.parsedPattern_.length)return"";var c=[];this.formatBlock_(this.parsedPattern_,a,b,c);c=c.join("");for(b||goog.asserts.assert(-1==c.search("#"),"Not all # were replaced.");0<this.literals_.length;)c=c.replace(this.buildPlaceholder_(this.literals_),this.literals_.pop());return c};
663 goog.i18n.MessageFormat
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 2680 milliseconds