/third_party/qrcodegen/python/ |
H A D | qrcodegen-demo.py | 57 qr = QrCode.encode_text("314159265358979323846264338327950288419716939937510", QrCode.Ecc.MEDIUM) 165 print_qr(QrCode.encode_segments(segs, QrCode.Ecc.MEDIUM, mask=0)) # Force mask 0 166 print_qr(QrCode.encode_segments(segs, QrCode.Ecc.MEDIUM, mask=1)) # Force mask 1 167 print_qr(QrCode.encode_segments(segs, QrCode.Ecc.MEDIUM, mask=5)) # Force mask 5 168 print_qr(QrCode.encode_segments(segs, QrCode.Ecc.MEDIUM, mask=7)) # Force mask 7
|
H A D | qrcodegen.py | 101 for newecl in (QrCode.Ecc.MEDIUM, QrCode.Ecc.QUARTILE, QrCode.Ecc.HIGH): # From low to high 650 MEDIUM : QrCode.Ecc 656 Ecc.MEDIUM = Ecc(1, 0) # The QR Code can tolerate about 15% erroneous codewords
|
/third_party/qrcodegen/cpp/ |
H A D | QrCodeGeneratorDemo.cpp | 79 const QrCode qr0 = QrCode::encodeText("314159265358979323846264338327950288419716939937510", QrCode::Ecc::MEDIUM); in doVarietyDemo() 182 printQr(QrCode::encodeSegments(segs1, QrCode::Ecc::MEDIUM, QrCode::MIN_VERSION, QrCode::MAX_VERSION, 0, true)); // Force mask 0 in doMaskDemo() 183 printQr(QrCode::encodeSegments(segs1, QrCode::Ecc::MEDIUM, QrCode::MIN_VERSION, QrCode::MAX_VERSION, 1, true)); // Force mask 1 in doMaskDemo() 184 printQr(QrCode::encodeSegments(segs1, QrCode::Ecc::MEDIUM, QrCode::MIN_VERSION, QrCode::MAX_VERSION, 5, true)); // Force mask 5 in doMaskDemo() 185 printQr(QrCode::encodeSegments(segs1, QrCode::Ecc::MEDIUM, QrCode::MIN_VERSION, QrCode::MAX_VERSION, 7, true)); // Force mask 7 in doMaskDemo()
|
H A D | qrcodegen.hpp | 245 MEDIUM , // The QR Code can tolerate about 15% erroneous codewords member in qrcodegen::final::Ecc
|
/third_party/qrcodegen/java/ |
H A D | QrCodeGeneratorDemo.java | 78 qr = QrCode.encodeText("314159265358979323846264338327950288419716939937510", QrCode.Ecc.MEDIUM); in doVarietyDemo() 158 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 0, true); // Force mask 0 in doMaskDemo() 160 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 1, true); // Force mask 1 in doMaskDemo() 162 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 5, true); // Force mask 5 in doMaskDemo() 164 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 7, true); // Force mask 7 in doMaskDemo()
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
H A D | QrCodeGeneratorDemo.java | 77 qr = QrCode.encodeText("314159265358979323846264338327950288419716939937510", QrCode.Ecc.MEDIUM); in doVarietyDemo() 157 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 0, true); // Force mask 0 in doMaskDemo() 159 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 1, true); // Force mask 1 in doMaskDemo() 161 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 5, true); // Force mask 5 in doMaskDemo() 163 qr = QrCode.encodeSegments(segs, QrCode.Ecc.MEDIUM, QrCode.MIN_VERSION, QrCode.MAX_VERSION, 7, true); // Force mask 7 in doMaskDemo()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | astrotst.cpp | 284 LocalPointer<DateFormat> df_t(DateFormat::createTimeInstance(DateFormat::MEDIUM,Locale::getUS())); in TestSunriseTimes() 285 LocalPointer<DateFormat> df_d(DateFormat::createDateInstance(DateFormat::MEDIUM,Locale::getUS())); in TestSunriseTimes() 286 LocalPointer<DateFormat> df_dt(DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS())); in TestSunriseTimes() 383 LocalPointer<DateFormat> d3(DateFormat::createDateTimeInstance(DateFormat::MEDIUM,DateFormat::MEDIUM,Locale::getUS())); in TestBasics()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/ |
H A D | AstroTest.java | 258 DateFormat df = DateFormat.getTimeInstance(cal, DateFormat.MEDIUM, Locale.US); in TestSunriseTimes() 259 DateFormat df2 = DateFormat.getDateTimeInstance(cal, DateFormat.MEDIUM, DateFormat.MEDIUM, Locale.US); in TestSunriseTimes() 260 DateFormat day = DateFormat.getDateInstance(cal, DateFormat.MEDIUM, Locale.US); in TestSunriseTimes() 335 DateFormat d3 = DateFormat.getDateTimeInstance(cal3, DateFormat.MEDIUM,DateFormat.MEDIUM,Locale.US); in TestBasics()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
H A D | AstroTest.java | 255 DateFormat df = DateFormat.getTimeInstance(cal, DateFormat.MEDIUM, Locale.US); in TestSunriseTimes() 256 DateFormat df2 = DateFormat.getDateTimeInstance(cal, DateFormat.MEDIUM, DateFormat.MEDIUM, Locale.US); in TestSunriseTimes() 257 DateFormat day = DateFormat.getDateInstance(cal, DateFormat.MEDIUM, Locale.US); in TestSunriseTimes() 332 DateFormat d3 = DateFormat.getDateTimeInstance(cal3, DateFormat.MEDIUM,DateFormat.MEDIUM,Locale.US); in TestBasics()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | PersonNameFormatter.java | 49 * <th>MEDIUM</th> 98 MEDIUM, enum constant 297 private Length length = Length.MEDIUM;
|
H A D | DateFormat.java | 49 * <li>The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are 90 * You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM 94 * <li>MEDIUM is longer, such as Jan 12, 1952 885 public static final int MEDIUM = 2; field in DateFormat 894 * Constant for default style pattern. Its value is MEDIUM. 897 public static final int DEFAULT = MEDIUM; 921 public static final int RELATIVE_MEDIUM = RELATIVE | MEDIUM; 1939 * {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM}, 1957 * {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM}, 1974 * {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM}, [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
H A D | DateTimeFormatterFactory.java | 24 case "MEDIUM": return DateFormat.MEDIUM; in stringToStyle()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | DateFormat.java | 50 * <li>The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are 91 * You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM 95 * <li>MEDIUM is longer, such as Jan 12, 1952 830 public static final int MEDIUM = 2; field in DateFormat 838 * Constant for default style pattern. Its value is MEDIUM. 840 public static final int DEFAULT = MEDIUM; 860 public static final int RELATIVE_MEDIUM = RELATIVE | MEDIUM; 1812 * {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM}, 1829 * {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM}, 1845 * {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM}, [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateFormatRoundTripTest.java | 85 case DateFormat.MEDIUM : in styleName() 86 return "MEDIUM"; in styleName()
|
H A D | IntlTestDateFormatAPI.java | 87 DateFormat it = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.ITALIAN); in TestAPI()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | DateFormatRoundTripTest.java | 88 case DateFormat.MEDIUM : in styleName() 89 return "MEDIUM"; in styleName()
|
H A D | IntlTestDateFormatAPI.java | 90 DateFormat it = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.ITALIAN); in TestAPI()
|
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
H A D | DateFormatTest.java | 38 checkGetInstance(DateFormat.MEDIUM, -1, loc); in TestGetInstance()
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | datefmt.h | 129 * result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the 133 * <li> MEDIUM is longer, such as Jan 12, 1952 212 MEDIUM = kMedium, enumerator
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | datefmt.h | 129 * result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the 133 * <li> MEDIUM is longer, such as Jan 12, 1952 212 MEDIUM = kMedium, enumerator
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | datefmt.h | 129 * result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the 133 * <li> MEDIUM is longer, such as Jan 12, 1952 212 MEDIUM = kMedium, enumerator
|
/third_party/icu/icu4c/source/i18n/ |
H A D | astro.cpp | 49 df = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS()); in debug_astro_date()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | astro.cpp | 49 df = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS()); in debug_astro_date()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | astro.cpp | 49 df = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS()); in debug_astro_date()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
H A D | DataRecord.java | 219 public static final byte MEDIUM = 1; field 221 public static final String[] names = { "PLURALIZED", "MEDIUM", "SHORT" };
|