HomeSort by relevance Sort by last modified time
    Searched defs:MessagePattern (Results 1 - 20 of 20) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/text/
SelectFormat.java 159 * The MessagePattern which contains the parsed structure of the pattern string.
161 transient private MessagePattern msgPattern;
191 msgPattern = new MessagePattern();
212 * @param pattern A MessagePattern.
217 /*package*/ static int findSubMessage(MessagePattern pattern, int partIndex, String keyword) {
222 MessagePattern.Part part=pattern.getPart(partIndex++);
223 MessagePattern.Part.Type type=part.getType();
224 if(type==MessagePattern.Part.Type.ARG_LIMIT) {
227 assert type==MessagePattern.Part.Type.ARG_SELECTOR;
268 MessagePattern.Part part = msgPattern.getPart(++i)
    [all...]
PluralFormat.java 153 * The MessagePattern which contains the parsed structure of the pattern string.
155 transient private MessagePattern msgPattern;
158 * Obsolete with use of MessagePattern since ICU 4.8. Used to be:
399 msgPattern = new MessagePattern();
421 * @param pattern A MessagePattern.
430 MessagePattern pattern, int partIndex,
434 MessagePattern.Part part=pattern.getPart(partIndex);
465 MessagePattern.Part.Type type=part.getType();
466 if(type==MessagePattern.Part.Type.ARG_LIMIT) {
469 assert type==MessagePattern.Part.Type.ARG_SELECTOR
    [all...]
MessagePattern.java 80 public final class MessagePattern implements Cloneable, Freezable<MessagePattern> {
138 * Constructs an empty MessagePattern with default ApostropheMode.
140 public MessagePattern() {
145 * Constructs an empty MessagePattern.
148 public MessagePattern(ApostropheMode mode) {
153 * Constructs a MessagePattern with default ApostropheMode and
161 public MessagePattern(String pattern) {
175 public MessagePattern parse(String pattern) {
191 public MessagePattern parseChoiceStyle(String pattern)
    [all...]
MessageFormat.java 38 import android.icu.text.MessagePattern.ArgType;
39 import android.icu.text.MessagePattern.Part;
136 * <li>See also {@link MessagePattern.ApostropheMode}
247 * For more details see {@link MessagePattern.ApostropheMode}.
444 msgPattern = new MessagePattern(pttrn);
468 * @see MessagePattern.ApostropheMode
470 public void applyPattern(String pattern, MessagePattern.ApostropheMode aposMode) {
472 msgPattern = new MessagePattern(aposMode);
483 public MessagePattern.ApostropheMode getApostropheMode() {
485 msgPattern = new MessagePattern(); // Sets the default mode
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SelectFormat.java 160 * The MessagePattern which contains the parsed structure of the pattern string.
162 transient private MessagePattern msgPattern;
194 msgPattern = new MessagePattern();
216 * @param pattern A MessagePattern.
221 /*package*/ static int findSubMessage(MessagePattern pattern, int partIndex, String keyword) {
226 MessagePattern.Part part=pattern.getPart(partIndex++);
227 MessagePattern.Part.Type type=part.getType();
228 if(type==MessagePattern.Part.Type.ARG_LIMIT) {
231 assert type==MessagePattern.Part.Type.ARG_SELECTOR;
273 MessagePattern.Part part = msgPattern.getPart(++i)
    [all...]
PluralFormat.java 153 * The MessagePattern which contains the parsed structure of the pattern string.
155 transient private MessagePattern msgPattern;
158 * Obsolete with use of MessagePattern since ICU 4.8. Used to be:
413 msgPattern = new MessagePattern();
436 * @param pattern A MessagePattern.
445 MessagePattern pattern, int partIndex,
449 MessagePattern.Part part=pattern.getPart(partIndex);
480 MessagePattern.Part.Type type=part.getType();
481 if(type==MessagePattern.Part.Type.ARG_LIMIT) {
484 assert type==MessagePattern.Part.Type.ARG_SELECTOR
    [all...]
MessagePattern.java 80 public final class MessagePattern implements Cloneable, Freezable<MessagePattern> {
141 * Constructs an empty MessagePattern with default ApostropheMode.
144 public MessagePattern() {
149 * Constructs an empty MessagePattern.
153 public MessagePattern(ApostropheMode mode) {
158 * Constructs a MessagePattern with default ApostropheMode and
167 public MessagePattern(String pattern) {
182 public MessagePattern parse(String pattern) {
199 public MessagePattern parseChoiceStyle(String pattern)
    [all...]
MessageFormat.java 37 import com.ibm.icu.text.MessagePattern.ArgType;
38 import com.ibm.icu.text.MessagePattern.Part;
135 * <li>See also {@link MessagePattern.ApostropheMode}
246 * For more details see {@link MessagePattern.ApostropheMode}.
452 msgPattern = new MessagePattern(pttrn);
476 * @see MessagePattern.ApostropheMode
479 public void applyPattern(String pattern, MessagePattern.ApostropheMode aposMode) {
481 msgPattern = new MessagePattern(aposMode);
493 public MessagePattern.ApostropheMode getApostropheMode() {
495 msgPattern = new MessagePattern(); // Sets the default mode
    [all...]
  /external/messageformat/java/com/ibm/icu/text/
SelectFormat.java 161 * The MessagePattern which contains the parsed structure of the pattern string.
163 transient private MessagePattern msgPattern;
195 msgPattern = new MessagePattern();
217 * @param pattern A MessagePattern.
222 public static int findSubMessage(MessagePattern pattern, int partIndex, String keyword) {
227 MessagePattern.Part part=pattern.getPart(partIndex++);
228 MessagePattern.Part.Type type=part.getType();
229 if(type==MessagePattern.Part.Type.ARG_LIMIT) {
232 assert type==MessagePattern.Part.Type.ARG_SELECTOR;
274 MessagePattern.Part part = msgPattern.getPart(++i)
    [all...]
MessagePattern.java 79 public final class MessagePattern implements Cloneable, Freezable<MessagePattern> {
140 * Constructs an empty MessagePattern with default ApostropheMode.
143 public MessagePattern() {
148 * Constructs an empty MessagePattern.
152 public MessagePattern(ApostropheMode mode) {
157 * Constructs a MessagePattern with default ApostropheMode and
166 public MessagePattern(String pattern) {
181 public MessagePattern parse(String pattern) {
198 public MessagePattern parseChoiceStyle(String pattern)
    [all...]
  /external/icu/icu4c/source/common/
messagepattern.cpp 6 * file name: messagepattern.cpp
19 #include "unicode/messagepattern.h"
139 class MessagePatternPartsList : public MessagePatternList<MessagePattern::Part, 32> {
142 // MessagePattern constructors etc. ---------------------------------------- ***
144 MessagePattern::MessagePattern(UErrorCode &errorCode)
152 MessagePattern::MessagePattern(UMessagePatternApostropheMode mode, UErrorCode &errorCode)
160 MessagePattern::MessagePattern(const UnicodeString &pattern, UParseError *parseError, UErrorCode &errorCode
    [all...]
  /external/messageformat/java/com/ibm/icu/simple/
PluralFormat.java 19 import com.ibm.icu.text.MessagePattern;
154 * The MessagePattern which contains the parsed structure of the pattern string.
156 transient private MessagePattern msgPattern;
159 * Obsolete with use of MessagePattern since ICU 4.8. Used to be:
255 msgPattern = new MessagePattern();
278 * @param pattern A MessagePattern.
287 MessagePattern pattern, int partIndex,
291 MessagePattern.Part part=pattern.getPart(partIndex);
322 MessagePattern.Part.Type type=part.getType();
323 if(type==MessagePattern.Part.Type.ARG_LIMIT)
    [all...]
MessageFormat.java 40 import com.ibm.icu.text.MessagePattern;
41 import com.ibm.icu.text.MessagePattern.ArgType;
42 import com.ibm.icu.text.MessagePattern.Part;
136 * <li>See also {@link MessagePattern.ApostropheMode}
248 * For more details see {@link MessagePattern.ApostropheMode}.
409 msgPattern = new MessagePattern(pttrn);
433 * @see MessagePattern.ApostropheMode
436 public void applyPattern(String pattern, MessagePattern.ApostropheMode aposMode) {
438 msgPattern = new MessagePattern(aposMode);
450 public MessagePattern.ApostropheMode getApostropheMode()
    [all...]
  /external/icu/icu4c/source/common/unicode/
messagepattern.h 6 * file name: messagepattern.h
20 * \brief C++ API: MessagePattern class: Parses and represents ICU MessageFormat patterns.
95 * MessagePattern::Part type constants.
273 * Return value from MessagePattern.validateArgumentName() for when
280 * Return value from MessagePattern.validateArgumentName() for when
292 * @see MessagePattern.getNumericValue()
322 * For every _START "part", MessagePattern.getLimitPartIndex() efficiently returns
358 class U_COMMON_API MessagePattern : public UObject {
361 * Constructs an empty MessagePattern with default UMessagePatternApostropheMode.
368 MessagePattern(UErrorCode &errorCode)
    [all...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 660 milliseconds