Searched +full:bom +full:- +full:check (Results 1 – 3 of 3) sorted by relevance
158 size_t Tell() const { return is_->Tell(); } in Tell()170 // Detect encoding type with BOM or RFC 4627172 // BOM (Byte Order Mark): in DetectType()173 // 00 00 FE FF UTF-32BE in DetectType()174 // FF FE 00 00 UTF-32LE in DetectType()175 // FE FF UTF-16BE in DetectType()176 // FF FE UTF-16LE in DetectType()177 // EF BB BF UTF-8 in DetectType()179 const unsigned char* c = reinterpret_cast<const unsigned char *>(is_->Peek4()); in DetectType()183 unsigned bom = static_cast<unsigned>(c[0] | (c[1] << 8) | (c[2] << 16) | (c[3] << 24)); in DetectType() local[all …]
1 name: BOM Check7 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…10 group: ${{ github.ref }}-${{ github.workflow }} 11 cancel-in-progress: true14 bom-check:16 runs-on: ubuntu-22.0418 - name: Checkout21 persist-credentials: false22 fetch-depth: 024 - name: UTF-8 BOM[all …]
9 Copyright (c) 1997-2000 Thai Open Source Software Center Ltd11 Copyright (c) 2000-2006 Fred L. Drake, Jr. <fdrake@users.sourceforge.net>12 Copyright (c) 2001-2002 Greg Stein <gstein@users.sourceforge.net>13 Copyright (c) 2002-2016 Karl Waclawek <karl@waclawek.net>14 Copyright (c) 2005-2009 Steven Solie <steven@solie.ca>16 Copyright (c) 2016-2024 Sebastian Pipping <sebastian@pipping.org>20 Copyright (c) 2016 Pascal Cuoq <cuoq@trust-in-soft.com>22 Copyright (c) 2017-2022 Rhodri James <rhodri@wildebeest.org.uk>26 Copyright (c) 2017 Rolf Eike Beer <eike@sf-mail.de>30 Copyright (c) 2018 Marco Maggi <marco.maggi-ipsu@poste.it>[all …]