Home
last modified time | relevance | path

Searched refs:MEDIUM (Results 1 - 25 of 58) sorted by relevance

123

/third_party/qrcodegen/python/
H A Dqrcodegen-demo.py57 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 Dqrcodegen.py101 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 DQrCodeGeneratorDemo.cpp79 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 Dqrcodegen.hpp245 MEDIUM , // The QR Code can tolerate about 15% erroneous codewords member in qrcodegen::final::Ecc
/third_party/qrcodegen/java/
H A DQrCodeGeneratorDemo.java78 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 DQrCodeGeneratorDemo.java77 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 Dastrotst.cpp284 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 DAstroTest.java258 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 DAstroTest.java255 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 DPersonNameFormatter.java49 * <th>MEDIUM</th>
98 MEDIUM, enum constant
297 private Length length = Length.MEDIUM;
H A DDateFormat.java49 * <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 DDateTimeFormatterFactory.java24 case "MEDIUM": return DateFormat.MEDIUM; in stringToStyle()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DDateFormat.java50 * <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 DDateFormatRoundTripTest.java85 case DateFormat.MEDIUM : in styleName()
86 return "MEDIUM"; in styleName()
H A DIntlTestDateFormatAPI.java87 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 DDateFormatRoundTripTest.java88 case DateFormat.MEDIUM : in styleName()
89 return "MEDIUM"; in styleName()
H A DIntlTestDateFormatAPI.java90 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 DDateFormatTest.java38 checkGetInstance(DateFormat.MEDIUM, -1, loc); in TestGetInstance()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Ddatefmt.h129 * 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 Ddatefmt.h129 * 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 Ddatefmt.h129 * 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 Dastro.cpp49 df = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS()); in debug_astro_date()
/third_party/node/deps/icu-small/source/i18n/
H A Dastro.cpp49 df = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS()); in debug_astro_date()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dastro.cpp49 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 DDataRecord.java219 public static final byte MEDIUM = 1; field
221 public static final String[] names = { "PLURALIZED", "MEDIUM", "SHORT" };

Completed in 26 milliseconds

123