OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fmtDstOffset
(Results
1 - 3
of
3
) sorted by null
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatTest.java
270
String
fmtDstOffset
= null;
272
//
fmtDstOffset
= fmtOffset.substring(3);
273
fmtDstOffset
= fmtOffset.substring(3, fmtOffset.length());
279
boolean ok =
fmtDstOffset
== null ||
fmtDstOffset
.equals("") ||
fmtDstOffset
.equals(dstOffset);
282
+ fmtOffset + (
fmtDstOffset
!= null ? " ok" : " ?"));
[
all
...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatTest.java
267
String
fmtDstOffset
= null;
269
//
fmtDstOffset
= fmtOffset.substring(3);
270
fmtDstOffset
= fmtOffset.substring(3, fmtOffset.length());
276
boolean ok =
fmtDstOffset
== null ||
fmtDstOffset
.equals("") ||
fmtDstOffset
.equals(dstOffset);
279
+ fmtOffset + (
fmtDstOffset
!= null ? " ok" : " ?"));
[
all
...]
/external/icu/icu4c/source/test/intltest/
dtfmttst.cpp
313
UnicodeString *
fmtDstOffset
= 0;
316
//
fmtDstOffset
= fmtOffset->substring(3);
317
fmtDstOffset
= new UnicodeString();
318
fmtOffset.extract(3, fmtOffset.length(), *
fmtDstOffset
);
323
UBool ok =
fmtDstOffset
== 0 || *
fmtDstOffset
== dstOffset;
328
(
fmtDstOffset
!= 0 ? " ok" : " ?"));
336
delete
fmtDstOffset
;
[
all
...]
Completed in 64 milliseconds