/third_party/vulkan-loader/scripts/ |
D | dispatch_table_helper_generator.py | 109 copyright = '/*\n' 110 copyright += ' * Copyright (c) 2015-2021 The Khronos Group Inc.\n' 111 copyright += ' * Copyright (c) 2015-2021 Valve Corporation\n' 112 copyright += ' * Copyright (c) 2015-2021 LunarG, Inc.\n' 113 copyright += ' *\n' 114 copyright += ' * Licensed under the Apache License, Version 2.0 (the "License");\n' 115 copyright += ' * you may not use this file except in compliance with the License.\n' 116 copyright += ' * You may obtain a copy of the License at\n' 117 copyright += ' *\n' 118 copyright += ' * http://www.apache.org/licenses/LICENSE-2.0\n' [all …]
|
D | helper_file_generator.py | 129 copyright = '' 130 copyright += '\n' 131 … copyright += '/***************************************************************************\n' 132 copyright += ' *\n' 133 copyright += ' * Copyright (c) 2015-2017 The Khronos Group Inc.\n' 134 copyright += ' * Copyright (c) 2015-2017 Valve Corporation\n' 135 copyright += ' * Copyright (c) 2015-2017 LunarG, Inc.\n' 136 copyright += ' * Copyright (c) 2015-2017 Google Inc.\n' 137 copyright += ' *\n' 138 copyright += ' * Licensed under the Apache License, Version 2.0 (the "License");\n' [all …]
|
D | loader_extension_generator.py | 189 copyright = '/*\n' 190 copyright += ' * Copyright (c) 2015-2022 The Khronos Group Inc.\n' 191 copyright += ' * Copyright (c) 2015-2022 Valve Corporation\n' 192 copyright += ' * Copyright (c) 2015-2022 LunarG, Inc.\n' 193 copyright += ' *\n' 194 copyright += ' * Licensed under the Apache License, Version 2.0 (the "License");\n' 195 copyright += ' * you may not use this file except in compliance with the License.\n' 196 copyright += ' * You may obtain a copy of the License at\n' 197 copyright += ' *\n' 198 copyright += ' * http://www.apache.org/licenses/LICENSE-2.0\n' [all …]
|
/third_party/icu/tools/scripts/cpysearch/ |
D | readme.txt | 2 License & terms of use: http://www.unicode.org/copyright.html 6 …copyright notice. Best when used on windows on a clean checkout. Edit $icuSource to your path. If … 9 correct year copyright (i.e. 'copyright 1995') 11 cpyscan.pl searches for all files that don't have any copyright 17 more docs on copyright scan at: 18 https://icu.unicode.org/processes/copyright-scan
|
/third_party/icu/docs/processes/release/tasks/legal/ |
D | index.md | 11 License & terms of use: http://www.unicode.org/copyright.html 19 proper copyright notice is in place. For example, 23 License & terms of use: http://www.unicode.org/copyright.html#License 27 the current year in the copyright statement. See the [ICU Copyright 28 Scanner](../../../copyright-scan.md) page and follow the link to the scripts and 31 Scan the source code to include third-party company names in copyright notices 40 copyright statement or not.~~ ***The script [find_textfiles](find_textfiles) 48 term](http://www.unicode.org/copyright.html) is updated annually (usually year 50 unicode.org/copyright.html and scroll down to the plaintext version of the
|
/third_party/spirv-headers/tools/buildHeaders/bin/ |
D | generate_language_headers.py | 81 … def __init__(self, name, copyright, instructions, operand_kinds, version = None, revision = None): argument 83 self.copyright = copyright 124 if grammar.copyright: 125 parts.extend(["{}{}".format(self.comment_prefix(), f) for f in grammar.copyright]) 218 copyright = grammar_json['copyright'] 220 copyright = DEFAULT_COPYRIGHT 231 copyright = copyright,
|
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/bin/ |
D | generate_language_headers.py | 81 … def __init__(self, name, copyright, instructions, operand_kinds, version = None, revision = None): argument 83 self.copyright = copyright 124 if grammar.copyright: 125 parts.extend(["{}{}".format(self.comment_prefix(), f) for f in grammar.copyright]) 218 copyright = grammar_json['copyright'] 220 copyright = DEFAULT_COPYRIGHT 231 copyright = copyright,
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/bin/ |
D | generate_language_headers.py | 81 … def __init__(self, name, copyright, instructions, operand_kinds, version = None, revision = None): argument 83 self.copyright = copyright 124 if grammar.copyright: 125 parts.extend(["{}{}".format(self.comment_prefix(), f) for f in grammar.copyright]) 218 copyright = grammar_json['copyright'] 220 copyright = DEFAULT_COPYRIGHT 231 copyright = copyright,
|
/third_party/typescript/scripts/ |
D | produceLKG.mjs | 13 const copyright = fs.readFileSync(path.join(__dirname, "../CopyrightNotice.txt"), "utf-8"); constant 46 await copyFromBuiltLocal("typesMap.json"); // Cannot accommodate copyright header 68 await copyFromBuiltLocal("tsserverlibrary.js"); // copyright added by build 69 await copyFromBuiltLocal("typescript.js"); // copyright added by build 70 await copyFromBuiltLocal("typescriptServices.js"); // copyright added by build 76 await copyFromBuiltLocal("tsserverlibrary.d.ts"); // copyright added by build 77 await copyFromBuiltLocal("typescript.d.ts"); // copyright added by build 78 await copyFromBuiltLocal("typescriptServices.d.ts"); // copyright added by build 91 await fs.writeFile(path.join(dest, destName), copyright + "\n" + content);
|
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/ |
D | BuildMetadataProtoFromXml.java | 114 String copyright = null; in start() local 137 copyright = value; in start() 158 copyright == null) { in start() 195 countryCodeToRegionCodeMap, outputDir, mappingClass, copyright); in start() 220 String outputDir, String mappingClass, String copyright) throws IOException { in writeCountryCallingCodeMappingToJavaFile() argument 232 ClassWriter writer = new ClassWriter(outputDir, mappingClass, copyright); in writeCountryCallingCodeMappingToJavaFile() 326 private final String copyright; field in BuildMetadataProtoFromXml.ClassWriter 333 ClassWriter(String outputDir, String name, String copyright) throws IOException { in ClassWriter() argument 335 this.copyright = copyright; in ClassWriter() 356 CopyrightNotice.writeTo(writer, Integer.valueOf(copyright)); in writeToFile()
|
/third_party/curl/scripts/ |
D | checksrc.pl | 388 my @copyright=(); 409 push @copyright, { 419 push @copyright, { 901 if(!scalar(@copyright)) { 925 @copyright = sort {$$b{year} cmp $$a{year}} @copyright; 940 if(defined($commityear) && scalar(@copyright) && 941 $copyright[0]{year} != $commityear) { 942 checkwarn("COPYRIGHTYEAR", $copyright[0]{line}, $copyright[0]{col}, 943 $file, $copyright[0]{code}, 945 "is $copyright[0]{year}", 1);
|
/third_party/popt/po/ |
D | Makevars | 13 # This is the copyright holder that gets inserted into the header of the 14 # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding 16 # sources, belong to the copyright holder of the package.) Translators are 17 # expected to transfer the copyright for their translations to this person 18 # or entity, or to disclaim their copyright. The empty string stands for 20 # their copyright.
|
/third_party/mesa3d/src/freedreno/rnn/ |
D | headergen2.c | 396 if(db->copyright.firstyear && db->copyright.firstyear < (1900 + tm.tm_year)) in printhead() 397 fprintf(f.file, "%u-", db->copyright.firstyear); in printhead() 399 if(db->copyright.authorsnum) { in printhead() 401 for(i = 0; i < db->copyright.authorsnum; ++i) { in printhead() 403 if(db->copyright.authors[i]->name) in printhead() 404 fprintf(f.file, "%s", db->copyright.authors[i]->name); in printhead() 405 if(db->copyright.authors[i]->email) in printhead() 406 fprintf(f.file, " <%s>", db->copyright.authors[i]->email); in printhead() 407 if(db->copyright.authors[i]->nicknamesnum) { in printhead() 408 for(j = 0; j < db->copyright.authors[i]->nicknamesnum; ++j) { in printhead() [all …]
|
/third_party/gn/src/base/third_party/icu/ |
D | LICENSE | 4 Distributed under the Terms of Use in http://www.unicode.org/copyright.html 14 (a) this copyright and permission notice appear with all copies 16 (b) this copyright and permission notice appear in associated 30 Except as contained in this notice, the name of a copyright holder 33 written authorization of the copyright holder. 56 copyright notice(s) and this permission notice appear in all copies of 57 the Software and that both the above copyright notice(s) and this 70 Except as contained in this notice, the name of a copyright holder 73 of the copyright holder.
|
/third_party/spirv-tools/utils/ |
D | generate_language_headers.py | 42 … def __init__(self, name, copyright, instructions, operand_kinds, version = None, revision = None): argument 44 self.copyright = copyright 85 if grammar.copyright: 86 parts.extend(["{}{}".format(self.comment_prefix(), f) for f in grammar.copyright]) 174 copyright = grammar_json['copyright'],
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
D | generate_language_headers.py | 42 … def __init__(self, name, copyright, instructions, operand_kinds, version = None, revision = None): argument 44 self.copyright = copyright 85 if grammar.copyright: 86 parts.extend(["{}{}".format(self.comment_prefix(), f) for f in grammar.copyright]) 174 copyright = grammar_json['copyright'],
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
D | generate_language_headers.py | 42 … def __init__(self, name, copyright, instructions, operand_kinds, version = None, revision = None): argument 44 self.copyright = copyright 85 if grammar.copyright: 86 parts.extend(["{}{}".format(self.comment_prefix(), f) for f in grammar.copyright]) 174 copyright = grammar_json['copyright'],
|
/third_party/rust/crates/unicode-ident/ |
D | LICENSE-UNICODE | 3 See Terms of Use <https://www.unicode.org/copyright.html> 17 Distributed under the Terms of Use in https://www.unicode.org/copyright.html. 27 (a) this copyright and permission notice appear with all copies 29 (b) this copyright and permission notice appear in associated 43 Except as contained in this notice, the name of a copyright holder 46 written authorization of the copyright holder.
|
/third_party/ffmpeg/doc/ |
D | mips.txt | 9 Along with FFMPEG copyright notice, there is MIPS copyright notice in 12 Example of copyright notice: 21 * 1. Redistributions of source code must retain the above copyright 23 * 2. Redistributions in binary form must reproduce the above copyright 45 Files that have MIPS copyright notice in them:
|
/third_party/python/Tools/msi/bundle/bootstrap/ |
D | pythonba.def | 2 ; <copyright file="wixstdba.def" company="Outercurve Foundation"> 5 ; The license and further copyright text can be found in the file 7 ; </copyright>
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/data/ |
D | riwords.txt | 3 # License & terms of use: http://www.unicode.org/copyright.html * 30 # copyright notice(s) and this permission notice appear in all copies of 31 # the Software and that both the above copyright notice(s) and this 44 # Except as contained in this notice, the name of a copyright holder 47 # of the copyright holder.
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
D | update-copyright-year | 16 # gnulib's `update-copyright' script; it is a more portable replacement for 21 # update-copyright-year file1 [file2 ...] 24 # This script handles copyright entries like 63 # Only handle the first copyright notice in a file. 66 # First try: Search multiple copyright years. 96 # Second try: Search a single copyright year.
|
/third_party/skia/third_party/externals/icu/source/data/unidata/ |
D | ucdterms.txt | 17 License & terms of use: http://www.unicode.org/copyright.html 19 Terms of Use in http://www.unicode.org/copyright.html. 27 Software are furnished to do so, provided that (a) the above copyright notice(s) 29 (b) both the above copyright notice(s) and this permission notice appear in 44 Except as contained in this notice, the name of a copyright holder shall not be 47 copyright holder.
|
/third_party/libuv/ |
D | LICENSE | 13 The above copyright notice and this permission notice shall be included in 38 The above copyright notice and this permission notice shall be included in 56 - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. 59 copyright the Internet Systems Consortium, Inc., and licensed under the ISC 62 - stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three 65 - pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB.
|
/third_party/node/deps/uv/ |
D | LICENSE | 13 The above copyright notice and this permission notice shall be included in 38 The above copyright notice and this permission notice shall be included in 56 - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. 59 copyright the Internet Systems Consortium, Inc., and licensed under the ISC 62 - stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three 65 - pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB.
|