/third_party/vk-gl-cts/scripts/src_util/ |
H A D | check_license.py | 33 # \note Defined this way to avoid triggering license check error on this file 50 for searchStr, license in LICENSE_KEYS: 55 detected = license 60 license = getFileLicense(file) 62 if license == LICENSE_MIT: 63 print("%s: contains MIT license" % file) 64 elif license == LICENSE_MULTIPLE: 66 elif license == LICENSE_UNKNOWN: 67 print("%s: missing/unknown license" % file) 69 return license [all...] |
/third_party/libabigail/relicensing-scripts/ |
H A D | has-spdx-header.sh | 17 echo " -q|--quiet emit no output if no license was found" 38 license=$1 42 echo "$license" 44 echo "$display_file_name: $license" 51 license=$(head --lines=5 $file | sed -n -E "s/^.*(SPDX-License-Identifier:)[ ]*([^*/]+).*$/\2/p") 53 if test "x$license" = x; then 56 emit_output_with_license "$license"
|
H A D | replace-spdx-license.sh | 12 echo "$prog: [options] --from <from-spdx-license-id> --to <to-spdx-license-id> <file>" 21 license=$(echo "$header" | sed -r "s/^.*(SPDX-License-Identifier:)[ ]*([^*/]+).*$/\2/") 24 if test "x$license" != x -a "$license" = "$from_license_id"; then
|
/third_party/node/deps/npm/lib/utils/ |
H A D | sbom-cyclonedx.js | 89 let license = node.package?.license 90 if (license) { 91 if (typeof license === 'object') { 92 license = license.type 96 parsedLicense = parseLicense(license) 159 // If license is a single SPDX license, use the license fiel [all...] |
H A D | sbom-spdx.js | 96 let license = node.package?.license 97 if (license) { 98 if (typeof license === 'object') { 99 license = license.type 113 licenseDeclared: license || NO_ASSERTION,
|
/third_party/node/deps/npm/node_modules/validate-npm-package-license/ |
H A D | index.js | 5 'license should be ' + 6 'a valid SPDX license expression (without "LicenseRef"), ' + 18 if (ast.hasOwnProperty('license')) { 19 var license = ast.license; 21 startsWith('LicenseRef', license) || 22 startsWith('DocumentRef', license) 64 'license is similar to the valid expression "' + corrected + '"'
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | gl_table.py | 10 # license, and/or sell copies of the Software, and to permit persons to whom 31 import license namespace 40 self.license = license.bsd_license_template % ( \ 88 self.license = license.bsd_license_template % (
|
H A D | api_hw_select_init_h.py | 27 import license namespace 39 self.license = license.bsd_license_template % (
|
H A D | api_save_init_h.py | 26 import license namespace 37 self.license = license.bsd_license_template % (
|
H A D | api_save_h.py | 27 import license namespace 39 self.license = license.bsd_license_template % (
|
H A D | api_exec_decl_h.py | 28 import license namespace 40 self.license = license.bsd_license_template % (
|
H A D | api_vtxfmt_init_h.py | 27 import license namespace 39 self.license = license.bsd_license_template % (
|
H A D | api_exec_init.py | 29 import license namespace 86 self.license = license.bsd_license_template % (
|
H A D | gl_marshal_h.py | 25 import license namespace 45 self.license = license.bsd_license_template % (
|
H A D | gl_SPARC_asm.py | 9 # license, and/or sell copies of the Software, and to permit persons to whom 29 import license namespace 36 self.license = license.bsd_license_template % ( \
|
H A D | gl_gentable.py | 11 # license, and/or sell copies of the Software, and to permit persons to whom 34 import license namespace 139 self.license = license.bsd_license_template % ( \
|
H A D | gl_x86_asm.py | 9 # license, and/or sell copies of the Software, and to permit persons to whom 29 import license namespace 38 self.license = license.bsd_license_template % ( \
|
H A D | remap_helper.py | 11 # license, and/or sell copies of the Software, and to permit persons to whom 28 import license namespace 64 self.license = license.bsd_license_template % ("Copyright (C) 2009 Chia-I Wu <olv@0xlab.org>", "Chia-I Wu")
|
H A D | gl_enums.py | 10 # license, and/or sell copies of the Software, and to permit persons to whom 30 import license namespace 42 self.license = license.bsd_license_template % ( \
|
H A D | gl_procs.py | 9 # license, and/or sell copies of the Software, and to permit persons to whom 29 import license namespace 40 self.license = license.bsd_license_template % ( \
|
H A D | gl_x86-64_asm.py | 9 # license, and/or sell copies of the Software, and to permit persons to whom 30 import license namespace 109 self.license = license.bsd_license_template % ("(C) Copyright IBM Corporation 2005", "IBM")
|
H A D | glX_proto_send.py | 10 # license, and/or sell copies of the Software, and to permit persons to whom 31 import gl_XML, glX_XML, glX_proto_common, license namespace 156 self.license = license.bsd_license_template % ( "(C) Copyright IBM Corporation 2004, 2005", "IBM") 959 self.license = license.bsd_license_template % ( \ 1052 self.license = license.bsd_license_template % ( \
|
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/ |
H A D | fixer.js | 3 var validateLicense = require('validate-npm-package-license') 327 const license = data.license || data.licence 328 if (!license) { 332 typeof (license) !== 'string' || 333 license.length < 1 || 334 license.trim() === '' 338 if (!validateLicense(license).validForNewPackages) {
|
/third_party/node/deps/npm/node_modules/init-package-json/lib/ |
H A D | default-input.js | 5 const validateLicense = require('validate-npm-package-license') 254 const license = package.license || getConfig('license') || 'ISC' 255 exports.license = yes ? license : prompt('license', license, (data) => {
|
/third_party/node/deps/npm/lib/commands/ |
H A D | view.js | 332 const licenseField = manifest.license || 'Proprietary' 341 license: typeof licenseField === 'string' 374 if (info.license.toLowerCase().trim() === 'proprietary') { 375 info.license = chalk.bold.red(info.license) 377 info.license = chalk.green(info.license) 383 ' | ' + info.license +
|