HomeSort by relevance Sort by last modified time
    Searched defs:MessageFormat (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
messageformat.js 63 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.prototype.format = function(namedParameters)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
msgfmt.h 49 * <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::format
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
CharacterPropertyEditor.java 18 import java.text.MessageFormat;
73 MessageFormat.format(ModelMessages.CharacterPropertyEditor_notValid, text));
DoubleObjectPropertyEditor.java 18 import java.text.MessageFormat;
85 MessageFormat.format(ModelMessages.DoubleObjectPropertyEditor_notValidDouble, text));
DoublePropertyEditor.java 18 import java.text.MessageFormat;
77 MessageFormat.format(ModelMessages.DoublePropertyEditor_notValidDouble, text));
FloatPropertyEditor.java 18 import java.text.MessageFormat;
76 MessageFormat.format(ModelMessages.FloatPropertyEditor_notValidFloat, text));
IntegerObjectPropertyEditor.java 18 import java.text.MessageFormat;
85 MessageFormat.format(ModelMessages.IntegerObjectPropertyEditor_notValidInt, text));
IntegerPropertyEditor.java 18 import java.text.MessageFormat;
77 MessageFormat.format(ModelMessages.IntegerPropertyEditor_notValidInt, text));
LongObjectPropertyEditor.java 18 import java.text.MessageFormat;
85 MessageFormat.format(ModelMessages.LongObjectPropertyEditor_notValidLong, text));
LongPropertyEditor.java 18 import java.text.MessageFormat;
76 MessageFormat.format(ModelMessages.LongPropertyEditor_notValidLong, text));
ShortObjectPropertyEditor.java 18 import java.text.MessageFormat;
85 MessageFormat.format(ModelMessages.ShortObjectPropertyEditor_notValidShort, text));
ShortPropertyEditor.java 18 import java.text.MessageFormat;
76 MessageFormat.format(ModelMessages.ShortPropertyEditor_notValidShort, text));
  /external/icu/icu4c/source/i18n/unicode/
msgfmt.h 49 * <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::format
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FormatterTest.java 20 import java.text.MessageFormat;
70 assertEquals(MessageFormat.format(pattern, oa), f.formatMessage(r));
100 assertEquals(MessageFormat.format(rb.getString("pattern"), oa), f
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
EditableDialogCellEditor.java 41 import java.text.MessageFormat;
237 setErrorMessage(MessageFormat.format(getErrorMessage(),
  /libcore/luni/src/main/java/java/text/
MessageFormat.java 37 * {@code MessageFormat} takes a set of objects, formats them and then
40 * <strong>Note:</strong> {@code MessageFormat} differs from the other
41 * {@code Format} classes in that you create a {@code MessageFormat}
44 * {@code MessageFormat} itself doesn't implement locale-specific
50 * {@code MessageFormat} uses patterns of the following form:
114 * {@code MessageFormat}. Note that localizers may need to use single quotes in
119 * in {@code MessageFormat}. See the annotations for U+0027 Apostrophe in The Unicode
230 * String result = MessageFormat.format(
248 * MessageFormat form = new MessageFormat("The disk \"{1}\" contains {0} file(s).")
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
msgfmt.cpp 51 // 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,
250 MessageFormat::MessageFormat(const UnicodeString& pattern,
272 MessageFormat::MessageFormat(const UnicodeString& pattern
    [all...]
  /external/icu/icu4c/source/i18n/
msgfmt.cpp 51 // 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,
250 MessageFormat::MessageFormat(const UnicodeString& pattern,
272 MessageFormat::MessageFormat(const UnicodeString& pattern
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
MessageFormatTest.java 31 import java.text.MessageFormat;
46 private MessageFormat format1, format2, format3;
50 private void checkSerialization(MessageFormat format) {
58 MessageFormat read = (MessageFormat) in.readObject();
73 new MessageFormat("{1, number}").formatToCharacterIterator(null);
79 new MessageFormat("{0, time}").formatToCharacterIterator(new Object[]{""});
100 MessageFormat mf = new MessageFormat(pattern, l[i]);
107 MessageFormat mf = new MessageFormat(pattern)
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js     [all...]
chromeVoxChromeOptionsScript.js     [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 1323 milliseconds

1 2