/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | SelectFormatAPITest.java | 20 import com.ibm.icu.text.SelectFormat; 37 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN1); in TestConstructors() 47 SelectFormat selFmt1 = null; in TestEquals() 50 selFmt1 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 51 SelectFormat selFmt2 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 57 Object selFmt3 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 58 Object selFmt4 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 59 Object selFmt5 = new SelectFormat(SIMPLE_PATTERN2); in TestEquals() 73 SelectFormat selFmt = null; in TestApplyPatternToPattern() 77 selFmt = new SelectFormat(SIMPLE_PATTERN1); in TestApplyPatternToPattern() [all …]
|
D | SelectFormatUnitTest.java | 17 import com.ibm.icu.text.SelectFormat; 45 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN); in TestPatternSyntax() 84 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN); in TestInvalidKeyword() 143 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN); in TestApplyFormat()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | SelectFormatAPITest.java | 21 import android.icu.text.SelectFormat; 40 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN1); in TestConstructors() 50 SelectFormat selFmt1 = null; in TestEquals() 53 selFmt1 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 54 SelectFormat selFmt2 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 60 Object selFmt3 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 61 Object selFmt4 = new SelectFormat(SIMPLE_PATTERN1); in TestEquals() 62 Object selFmt5 = new SelectFormat(SIMPLE_PATTERN2); in TestEquals() 76 SelectFormat selFmt = null; in TestApplyPatternToPattern() 80 selFmt = new SelectFormat(SIMPLE_PATTERN1); in TestApplyPatternToPattern() [all …]
|
D | SelectFormatUnitTest.java | 18 import android.icu.text.SelectFormat; 48 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN); in TestPatternSyntax() 87 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN); in TestInvalidKeyword() 146 SelectFormat selFmt = new SelectFormat(SIMPLE_PATTERN); in TestApplyFormat()
|
/external/icu/icu4c/source/i18n/ |
D | selfmt.cpp | 42 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SelectFormat) 46 SelectFormat::SelectFormat(const UnicodeString& pat, in SelectFormat() function in SelectFormat 51 SelectFormat::SelectFormat(const SelectFormat& other) : Format(other), in SelectFormat() function in SelectFormat 55 SelectFormat::~SelectFormat() { in ~SelectFormat() 59 SelectFormat::applyPattern(const UnicodeString& newPattern, UErrorCode& status) { in applyPattern() 71 SelectFormat::format(const Formattable& obj, in format() 88 SelectFormat::format(const UnicodeString& keyword, in format() 117 SelectFormat::toPattern(UnicodeString& appendTo) { in toPattern() 127 int32_t SelectFormat::findSubMessage(const MessagePattern& pattern, int32_t partIndex, in findSubMessage() 154 Format* SelectFormat::clone() const in clone() [all …]
|
D | msgfmt.cpp | 1085 dynamic_cast<const SelectFormat*>(formatter)) { in format() 1142 …int32_t subMsgStart = SelectFormat::findSubMessage(msgPattern, i, arg->getString(success), success… in format()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | selfmt.h | 185 class U_I18N_API SelectFormat : public Format { 196 SelectFormat(const UnicodeString& pattern, UErrorCode& status); 202 SelectFormat(const SelectFormat& other); 208 virtual ~SelectFormat(); 250 SelectFormat& operator=(const SelectFormat& other); 348 SelectFormat(); // default constructor not implemented.
|
/external/icu/icu4c/source/test/intltest/ |
D | selfmts.cpp | 97 SelectFormat* selFmt = new SelectFormat( SIMPLE_PATTERN , status); in selectFormatUnitTest() 132 selFmt = new SelectFormat( SIMPLE_PATTERN , status); in selectFormatUnitTest() 185 selFmt = new SelectFormat( SIMPLE_PATTERN , status); in selectFormatUnitTest() 207 SelectFormat* selFmt[3] = { NULL, NULL, NULL }; in selectFormatAPITest() 215 selFmt[0]= new SelectFormat(SIMPLE_PATTERN, status[0]); in selectFormatAPITest() 223 SelectFormat fmt = *selFmt[0]; in selectFormatAPITest() 224 SelectFormat* dupPFmt = new SelectFormat(fmt); in selectFormatAPITest() 233 selFmt[1] = (SelectFormat*)selFmt[0]->clone(); in selectFormatAPITest() 249 selFmt[2]= new SelectFormat(SIMPLE_PATTERN, status[2]); in selectFormatAPITest() 268 SelectFormat* selFmt1 = new SelectFormat( SIMPLE_PATTERN , status1); in selectFormatAPITest() [all …]
|
D | uobjtest.cpp | 368 …TESTCLASSID_CTOR(SelectFormat, (UnicodeString("feminine {feminineVerbValue} other{otherVerbValue}"… in testIDs()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SelectFormat.java | 152 public class SelectFormat extends Format{ class 171 public SelectFormat(String pattern) { in SelectFormat() method in SelectFormat 353 SelectFormat sf = (SelectFormat) obj; in equals()
|
D | MessageFormat.java | 1688 formatter instanceof SelectFormat) { in format() 1755 int subMsgStart=SelectFormat.findSubMessage(msgPattern, i, arg.toString()); in format()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SelectFormat.java | 151 public class SelectFormat extends Format{ class 169 public SelectFormat(String pattern) { in SelectFormat() method in SelectFormat 345 SelectFormat sf = (SelectFormat) obj; in equals()
|
D | MessageFormat.java | 1641 formatter instanceof SelectFormat) { in format() 1708 int subMsgStart=SelectFormat.findSubMessage(msgPattern, i, arg.toString()); in format()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | FormatHandler.java | 38 import com.ibm.icu.text.SelectFormat; 2201 SelectFormat[] selfmts = {new SelectFormat("keyword{phrase} other{otherPhrase}")}; in getTestObjects() 2208 SelectFormat sfa = (SelectFormat) a; in hasSameBehavior() 2209 SelectFormat sfb = (SelectFormat) b; in hasSameBehavior()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
D | FormatHandler.java | 39 import android.icu.text.SelectFormat; 2204 SelectFormat[] selfmts = {new SelectFormat("keyword{phrase} other{otherPhrase}")}; in getTestObjects() 2211 SelectFormat sfa = (SelectFormat) a; in hasSameBehavior() 2212 SelectFormat sfb = (SelectFormat) b; in hasSameBehavior()
|
/external/icu/icu4j/tools/build/ |
D | icu4j56.api3.gz | 12;ICU4J 56.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j54.api3.gz |
|
D | icu4j57.api3.gz | 12;ICU4J 57.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j55.api3.gz | 12;ICU4J 55.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j60.api3.gz | 12;ICU4J 60.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j59.api3.gz | 12;ICU4J 59.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j61.api3.gz | 12;ICU4J 61.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j62.api3.gz |
|
D | icu4j58.api3.gz | 12;ICU4J 58.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j63.api3.gz |
|