/third_party/skia/third_party/externals/harfbuzz/test/api/ |
H A D | test-ot-collect-glyphs.c | 30 #define BEGIN(tag, idx) \ macro 51 BEGIN(HB_OT_TAG_GSUB, 0); in test_ot_layout_lookup_collect_glyphs_source_sans() 65 BEGIN(HB_OT_TAG_GSUB, 1); in test_ot_layout_lookup_collect_glyphs_source_sans() 82 BEGIN(HB_OT_TAG_GSUB, 7); in test_ot_layout_lookup_collect_glyphs_source_sans() 99 BEGIN(HB_OT_TAG_GSUB, 10); in test_ot_layout_lookup_collect_glyphs_source_sans() 116 BEGIN(HB_OT_TAG_GSUB, 8); in test_ot_layout_lookup_collect_glyphs_source_sans() 138 BEGIN(HB_OT_TAG_GSUB, 13); in test_ot_layout_lookup_collect_glyphs_source_sans() 158 BEGIN(HB_OT_TAG_GPOS, 0); in test_ot_layout_lookup_collect_glyphs_source_sans() 171 BEGIN(HB_OT_TAG_GPOS, 9); in test_ot_layout_lookup_collect_glyphs_source_sans() 184 BEGIN(HB_OT_TAG_GPO in test_ot_layout_lookup_collect_glyphs_source_sans() [all...] |
/third_party/libinput/tools/ |
H A D | libinput-analyze-touch-down-state.py | 42 BEGIN = "BEGIN" variable in Slot.State 53 self.state = Slot.State.BEGIN 56 assert self.state in (Slot.State.BEGIN, Slot.State.UPDATE) 60 if self.state == Slot.State.BEGIN: 79 return self.state in (Slot.State.BEGIN, Slot.State.UPDATE) 82 return "+" if self.state in (Slot.State.BEGIN, Slot.State.UPDATE) else " "
|
H A D | libinput-analyze-per-slot-delta.py | 61 if slot.state == SlotState.BEGIN: 127 BEGIN = 1 variable in SlotState 258 s.state = SlotState.BEGIN 267 s.state = SlotState.BEGIN 273 s.state = SlotState.BEGIN 282 s.state = SlotState.BEGIN 301 s.state = SlotState.BEGIN 308 s.state = SlotState.BEGIN 317 s.state = SlotState.BEGIN 371 if sl.state == SlotState.BEGIN [all...] |
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_http.c | 595 #define sf_discard_sp_end_err(BEGIN, END, ERR) \ 596 for (;; ++(BEGIN)) { \ 597 if ((BEGIN) == (END)) { \ 600 if (*(BEGIN) != ' ') { \ 724 #define sf_discard_ows(BEGIN, END) \ 725 for (;; ++(BEGIN)) { \ 726 if ((BEGIN) == (END)) { \ 729 if (*(BEGIN) != ' ' && *(BEGIN) != '\t') { \ 734 #define sf_discard_ows_end_err(BEGIN, EN [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/core/dist/ |
H A D | pem.js | 19 const PEM_HEADER = /-----BEGIN (.*)-----/; 40 return [`-----BEGIN ${type}-----`, ...lines, `-----END ${type}-----`]
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | tests.rs | 1191 const BEGIN: usize = 8191; in regression_stream_rare_byte_prefilter() consts 1195 /// string at offset BEGIN. in regression_stream_rare_byte_prefilter() 1208 if self.read < BEGIN { in regression_stream_rare_byte_prefilter() 1209 from = buf.len().min(BEGIN - self.read); in regression_stream_rare_byte_prefilter() 1215 if self.read >= BEGIN && self.read <= BEGIN + MAGIC.len() { in regression_stream_rare_byte_prefilter() 1216 let to = buf.len().min(BEGIN + MAGIC.len() - self.read + from); in regression_stream_rare_byte_prefilter() 1220 [self.read - BEGIN..self.read - BEGIN + to - from], in regression_stream_rare_byte_prefilter()
|
/third_party/node/test/parallel/ |
H A D | test-tls-cert-regression.js | 31 `-----BEGIN CERTIFICATE----- 53 `-----BEGIN RSA PRIVATE KEY-----
|
H A D | test-tls-cert-ext-encoding.js | 22 -----BEGIN RSA PRIVATE KEY----- 49 -----BEGIN CERTIFICATE-----
|
H A D | test-crypto-x509.js | 208 -----BEGIN CERTIFICATE----- 331 const certPem = `-----BEGIN CERTIFICATE-----
|
H A D | test-tls-client-auth.js | 25 const certs = /([^]*END CERTIFICATE-----\r?\n)(-----BEGIN[^]*)/.exec(file); 287 // Confirm support for "BEGIN TRUSTED CERTIFICATE". 306 // Confirm support for "BEGIN TRUSTED CERTIFICATE". 325 // Confirm support for "BEGIN X509 CERTIFICATE". 344 // Confirm support for "BEGIN X509 CERTIFICATE".
|
/third_party/tzdata/ |
H A D | tzselect.ksh | 39 # awk 'BEGIN { VAR = substr(ARGV[1], 2); ARGV[1] = "" } ...' ="VALUE" 58 ($AWK -v x=y 'BEGIN { exit 123 }') <>/dev/null >&0 2>&0 120 print_nargs_length="BEGIN {print length(\"$#\");}" 132 select_i=`$AWK "BEGIN { print $select_i + 1 }"` 139 shift `$AWK "BEGIN { print $select_i - 1 }"` 173 shift `$AWK "BEGIN { print $OPTIND - 1 }"` 182 if $AWK 'BEGIN { u12345 = "\360\222\215\205"; exit length(u12345) == 1 }'; then 213 BEGIN { 270 BEGIN { 342 BEGIN { [all...] |
H A D | checknow.awk | 12 BEGIN {
|
H A D | leapseconds.awk | 18 BEGIN {
|
H A D | ziguard.awk | 74 BEGIN {
|
H A D | zishrink.awk | 331 BEGIN {
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
H A D | download.js | 32 const re = /(-----BEGIN CERTIFICATE-----[\S\s]*?-----END CERTIFICATE-----)/g
|
/third_party/ffmpeg/tests/ |
H A D | refcmp-metadata.awk | 17 BEGIN {
|
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | translation-opcode.h | 18 V(BEGIN, 3) \
|
H A D | translation-array.h | 57 auto opcode = TranslationOpcode::BEGIN; in BeginTranslation()
|
H A D | translated-state.cc | 39 DCHECK(TranslationOpcode::BEGIN == opcode); in TranslationArrayPrintSingleFrame() 49 if (opcode == TranslationOpcode::BEGIN) break; in TranslationArrayPrintSingleFrame() 54 case TranslationOpcode::BEGIN: in TranslationArrayPrintSingleFrame() 856 case TranslationOpcode::BEGIN: in CreateNextTranslatedFrame() 971 case TranslationOpcode::BEGIN: in CreateNextTranslatedValue() 1315 CHECK(opcode == TranslationOpcode::BEGIN); in Init() 1377 TranslationOpcodeFromInt(iterator->Next()) == TranslationOpcode::BEGIN); in Init()
|
/third_party/musl/tools/ |
H A D | add-cfi.i386.awk | 10 BEGIN {
|
H A D | add-cfi.x86_64.awk | 3 BEGIN {
|
/third_party/skia/third_party/externals/freetype/builds/atari/ |
H A D | deflinejoiner.awk | 163 BEGIN{
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/ |
H A D | LSTMBreakEngine.java | 38 BEGIN, enum constant 405 if (current == LSTMClass.BEGIN.ordinal() || in divideUpDictionaryRange()
|
/third_party/node/test/common/ |
H A D | crypto.js | 101 const head = `\\-\\-\\-\\-\\-BEGIN ${label}\\-\\-\\-\\-\\-`;
|