Home
last modified time | relevance | path

Searched refs:license (Results 1 - 25 of 284) sorted by relevance

12345678910>>...12

/third_party/vk-gl-cts/scripts/src_util/
H A Dcheck_license.py33 # \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 Dhas-spdx-header.sh17 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 Dreplace-spdx-license.sh12 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 Dsbom-cyclonedx.js89 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 Dsbom-spdx.js96 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 Dindex.js5 '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 Dgl_table.py10 # 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 Dapi_hw_select_init_h.py27 import license namespace
39 self.license = license.bsd_license_template % (
H A Dapi_save_init_h.py26 import license namespace
37 self.license = license.bsd_license_template % (
H A Dapi_save_h.py27 import license namespace
39 self.license = license.bsd_license_template % (
H A Dapi_exec_decl_h.py28 import license namespace
40 self.license = license.bsd_license_template % (
H A Dapi_vtxfmt_init_h.py27 import license namespace
39 self.license = license.bsd_license_template % (
H A Dapi_exec_init.py29 import license namespace
86 self.license = license.bsd_license_template % (
H A Dgl_marshal_h.py25 import license namespace
45 self.license = license.bsd_license_template % (
H A Dgl_SPARC_asm.py9 # 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 Dgl_gentable.py11 # 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 Dgl_x86_asm.py9 # 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 Dremap_helper.py11 # 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 Dgl_enums.py10 # 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 Dgl_procs.py9 # 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 Dgl_x86-64_asm.py9 # 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 DglX_proto_send.py10 # 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 Dfixer.js3 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 Ddefault-input.js5 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 Dview.js332 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 +

Completed in 7 milliseconds

12345678910>>...12