/third_party/qrcodegen/python/ |
H A D | qrcodegen-demo.py | 45 errcorlvl = QrCode.Ecc.LOW # Error correction level 86 qr = QrCode.encode_text(silver0 + silver1, QrCode.Ecc.LOW) 92 qr = QrCode.encode_segments(segs, QrCode.Ecc.LOW) 99 qr = QrCode.encode_text(golden0 + golden1 + golden2, QrCode.Ecc.LOW) 106 qr = QrCode.encode_segments(segs, QrCode.Ecc.LOW) 111 qr = QrCode.encode_text(madoka, QrCode.Ecc.LOW) 146 qr = QrCode.encode_segments(segs, QrCode.Ecc.LOW)
|
H A D | qrcodegen.py | 649 LOW : QrCode.Ecc 655 Ecc.LOW = Ecc(0, 1) # The QR Code can tolerate about 7% erroneous codewords 901 - Decrease the error correction level if it was greater than Ecc.LOW.
|
/third_party/qrcodegen/cpp/ |
H A D | QrCodeGeneratorDemo.cpp | 67 const QrCode::Ecc errCorLvl = QrCode::Ecc::LOW; // Error correction level in doBasicDemo() 111 QrCode::Ecc::LOW); in doSegmentDemo() 116 QrCode::Ecc::LOW); in doSegmentDemo() 125 QrCode::Ecc::LOW); in doSegmentDemo() 131 QrCode::Ecc::LOW); in doSegmentDemo() 145 const QrCode qr4 = QrCode::encodeText(madoka, QrCode::Ecc::LOW); in doSegmentDemo() 161 QrCode::Ecc::LOW); in doSegmentDemo()
|
H A D | qrcodegen.hpp | 244 LOW = 0 , // The QR Code can tolerate about 7% erroneous codewords member in qrcodegen::final::Ecc 512 * - Decrease the error correction level if it was greater than Ecc::LOW.
|
H A D | qrcodegen.cpp | 238 case Ecc::LOW : return 1; in getFormatBits()
|
/third_party/qrcodegen/java/ |
H A D | QrCodeGeneratorDemo.java | 58 QrCode.Ecc errCorLvl = QrCode.Ecc.LOW; // Error correction level in doBasicDemo() 110 qr = QrCode.encodeText(silver0 + silver1, QrCode.Ecc.LOW); in doSegmentDemo() 116 qr = QrCode.encodeSegments(segs, QrCode.Ecc.LOW); in doSegmentDemo() 123 qr = QrCode.encodeText(golden0 + golden1 + golden2, QrCode.Ecc.LOW); in doSegmentDemo() 130 qr = QrCode.encodeSegments(segs, QrCode.Ecc.LOW); in doSegmentDemo() 135 qr = QrCode.encodeText(madoka, QrCode.Ecc.LOW); in doSegmentDemo() 139 qr = QrCode.encodeSegments(segs, QrCode.Ecc.LOW); in doSegmentDemo()
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
H A D | QrCodeGeneratorDemo.java | 57 QrCode.Ecc errCorLvl = QrCode.Ecc.LOW; // Error correction level in doBasicDemo() 109 qr = QrCode.encodeText(silver0 + silver1, QrCode.Ecc.LOW); in doSegmentDemo() 115 qr = QrCode.encodeSegments(segs, QrCode.Ecc.LOW); in doSegmentDemo() 122 qr = QrCode.encodeText(golden0 + golden1 + golden2, QrCode.Ecc.LOW); in doSegmentDemo() 129 qr = QrCode.encodeSegments(segs, QrCode.Ecc.LOW); in doSegmentDemo() 134 qr = QrCode.encodeText(madoka, QrCode.Ecc.LOW); in doSegmentDemo() 138 qr = QrCode.encodeSegments(segs, QrCode.Ecc.LOW); in doSegmentDemo()
|
H A D | QrCode.java | 581 /** The QR Code can tolerate about 7% erroneous codewords. */ LOW(1), enum constant
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | Android.mk | 1060 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
H A D | Makefile | 1175 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
H A D | Android.mk | 670 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
H A D | Makefile | 802 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | Android.mk | 1083 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
H A D | Makefile | 1220 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
H A D | Android.mk | 661 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
H A D | Makefile | 798 CONFIG_TLS_DEFAULT_CIPHERS = "DEFAULT:!EXP:!LOW"
|
/third_party/selinux/checkpolicy/ |
H A D | policy_parse.y | 157 %token LOW_HIGH LOW HIGH GLBLUB 237 default_range_def : DEFAULT_RANGE names SOURCE LOW ';' 243 | DEFAULT_RANGE names TARGET LOW ';'
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | UnicodeSet.java | 312 private static final int LOW = 0x000000; // LOW <= all valid values. ZERO for codepoints field in UnicodeSet 329 public static final int MIN_VALUE = LOW; 1712 if (list[0] == LOW) { in complement() 1718 list[0] = LOW; in complement() 3114 b = LOW; in xor() 3115 if (other[j] == LOW) { // skip base if already LOW in xor()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | UnicodeSet.java | 306 private static final int LOW = 0x000000; // LOW <= all valid values. ZERO for codepoints field in UnicodeSet 322 public static final int MIN_VALUE = LOW; 1624 if (list[0] == LOW) { in complement() 1630 list[0] = LOW; in complement() 3000 b = LOW; in xor() 3001 if (other[j] == LOW) { // skip base if already LOW in xor()
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
H A D | pngimage.c | 143 T(PACKING, NONE, X, X, LOW, RW_PACK), 154 T(PACKSWAP, NONE, X, X, LOW, RW_PACKSWAP),
|
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
H A D | QrCode.java | 805 /** The QR Code can tolerate about 7% erroneous codewords. */ LOW(1), enum constant
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | duration_test.cc | 1203 #define ROUND_TRIP_UNIT(U, LOW, HIGH) \ in TEST() 1205 for (int64_t i = LOW; i < HIGH; ++i) { \ in TEST()
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |