/third_party/nghttp2/ |
H A D | author.py | 3 # script to extract commit author's name from standard input. The 10 # tie with longer author name. Among the all author names extract the 15 # git log --format=%aN:%aE | sort | uniq | ./author.py > authors 22 author, email = line.strip().split(':', 1) 25 if len(an) < len(author) or an > author: 27 'eliminated {} in favor of {}\n'.format(an, author)) 28 edict[email] = author 31 'eliminated {} in favor of {}\n'.format(author, a [all...] |
/third_party/rust/crates/clap/tests/builder/ |
H A D | template_help.rs | 7 {author} 16 {author} 25 {author} 39 {author} 105 .author("Kevin K. <kbknapp@gmail.com>") in template_empty() 115 .author("Kevin K. <kbknapp@gmail.com>") in template_notag() 125 .author("Kevin K. <kbknapp@gmail.com>") in template_unknowntag() 136 .author("Kevin K. <kbknapp@gmail.com>") in template_author_version() 138 .help_template("{author}\n{version}\n{about}\n{bin}"); in template_author_version() 143 .author("Kevi in template_author_version() [all...] |
H A D | hidden_args.rs | 20 .author("Kevin K.") in hide_args() 48 .author("Steve P.") in hide_short_args() 91 .author("Steve P.") in hide_short_args_long_help() 130 .author("Steve P.") in hide_long_args() 165 .author("Steve P.") in hide_long_args_short_help()
|
H A D | cargo.rs | 63 .author(crate_authors!()) in crate_authors() 77 .author(crate_authors!(", ")) in crate_authors_with_sep()
|
H A D | utils.rs | 10 {author-with-newline}{about-with-newline} 53 .author("Kevin K. <kbknapp@gmail.com>") in complex_app() 95 .author("Kevin K. <kbknapp@gmail.com>") in complex_app()
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
H A D | conf.py | 60 author = "sparse's development community" variable 161 # author, documentclass [howto, manual, or own class]). 163 ('index', 'sparse.tex', u'sparse Documentation', author, 'manual'), 172 ('dev-options', 'dev-options', u'options for development', [author], 1), 179 # (source start file, target name, title, author, 182 ('index', 'sparse', u'sparse Documentation', author, 'sparse', 'C semantic parser & checker', 'Software development'),
|
/third_party/mesa3d/docs/ |
H A D | conf.py | 58 author = 'Brian Paul' variable 170 # author, documentclass [howto, manual, or own class]). 183 [author], 1) 190 # (source start file, target name, title, author, 194 author, 'TheMesa3DGraphicsLibrary', 'One line description of project.',
|
/third_party/protobuf/python/docs/ |
H A D | conf.py | 53 author = u"Google LLC" variable 169 # author, documentclass [howto, manual, or own class]). 190 [author], # authors 199 # (source start file, target name, title, author, 206 author,
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | check_copyright.py | 112 def insert_copyright(author, glob, comment_prefix): 122 copyright = comment('Copyright (c) {} {}'.format(CURRENT_YEAR, author), 203 self.add_argument('--update', dest='author', action='store', 205 'one for the given author, and add a license ' 206 'notice. The author must be in the AUTHORS ' 217 if args.author: 218 if args.author not in AUTHORS: 223 insert_copyright(args.author, *pair)
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | check_copyright.py | 112 def insert_copyright(author, glob, comment_prefix): 122 copyright = comment('Copyright (c) {} {}'.format(CURRENT_YEAR, author), 203 self.add_argument('--update', dest='author', action='store', 205 'one for the given author, and add a license ' 206 'notice. The author must be in the AUTHORS ' 217 if args.author: 218 if args.author not in AUTHORS: 223 insert_copyright(args.author, *pair)
|
/third_party/spirv-tools/utils/ |
H A D | check_copyright.py | 131 def insert_copyright(author, glob, comment_prefix): 141 copyright = comment('Copyright (c) {} {}'.format(CURRENT_YEAR, author), 222 self.add_argument('--update', dest='author', action='store', 224 'one for the given author, and add a license ' 225 'notice. The author must be in the AUTHORS ' 236 if args.author: 237 if args.author not in AUTHORS: 242 insert_copyright(args.author, *pair)
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | xml_consistency.py | 535 match the author ID of the extension. 545 def has_suffix(apiname, author): 546 return apiname[-len(author):] == author 549 for author in authors: 550 if has_suffix(apiname, author): 554 def check_names(elems, author, alt_authors, name_exceptions): 558 author - author ID of the <extension> tag 559 alt_authors - set of other allowed author ID [all...] |
H A D | indexExt.py | 55 # Dictionary of vendor tags -> author name mappings 58 # Loop over all vendor tags, tracking the full corresponding author name 61 author = elem.get('author') variable 63 tag[vendor] = author
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | protostream_objectsource_test.cc | 359 Author author; in TEST_P() local 360 author.set_id(12345); in TEST_P() 363 DoTest(author, Author::descriptor()); in TEST_P() 367 Author* author = new Author(); in TEST_P() local 368 author->set_name("Tolstoy"); in TEST_P() 371 book.set_allocated_author(author); in TEST_P() 375 ->StartObject("author") in TEST_P() 383 Author author; in TEST_P() local 384 author.set_alive(false); in TEST_P() 385 author in TEST_P() 415 Author author; TEST_P() local [all...] |
H A D | protostream_objectwriter_test.cc | 236 ->StartObject("author") in TEST_P() 260 ->StartObject("author") in TEST_P() 295 ->StartObject("author") in TEST_P() 314 ->StartObject("author") in TEST_P() 334 ->StartObject("author") in TEST_P() 354 ->StartObject("author") in TEST_P() 374 ->StartObject("author") in TEST_P() 394 ->StartObject("author") in TEST_P() 416 ->StartObject("author") in TEST_P() 437 ->StartObject("author") in TEST_P() 613 Author* author = expected.mutable_author(); TEST_P() local 631 Author* author = expected.mutable_author(); TEST_P() local 645 Author* author = expected.mutable_author(); TEST_P() local 711 Author* author = expected.mutable_author(); TEST_P() local 759 Author* author = expected.mutable_author(); TEST_P() local 840 Author* author = expected.mutable_author(); TEST_P() local 950 Author* author = expected.mutable_author(); TEST_P() local [all...] |
/third_party/json/docs/examples/ |
H A D | merge_patch.cpp | 13 "author": { in main() 28 "author": { in main()
|
/third_party/pulseaudio/src/daemon/ |
H A D | dumpmodules.c | 59 if (!i->description && !i->version && !i->author && !i->usage) in long_info() 66 if (i->author) in long_info() 67 printf(_("Author: %s\n"), i->author); in long_info()
|
/third_party/node/deps/npm/lib/utils/ |
H A D | sbom-cyclonedx.js | 107 author: (typeof node.package?.author === 'object') 108 ? node.package.author.name 109 : (node.package?.author || undefined),
|
H A D | format-search-stream.js | 58 author: data.maintainers.map((m) => `=${stripVTControlCharacters(m.username)}`).join(' '), 74 const columns = ['name', 'description', 'author', 'date', 'version', 'keywords'] 92 author: { minWidth: 15, maxWidth: 15 },
|
/third_party/rust/crates/clap/clap_bench/benches/ |
H A D | 03_complex.rs | 12 .author("Kevin K. <kbknapp@gmail.com>") 39 .author("Kevin K. <kbknapp@gmail.com>") 52 .author("Kevin K. <kbknapp@gmail.com>") in build_from_builder() 137 .author("Kevin K. <kbknapp@gmail.com>") in build_from_builder()
|
H A D | 04_new_help.rs | 13 .author("Kevin K. <kbknapp@gmail.com>") in app_example1() 33 .author("Kevin K. <kbknapp@gmail.com>") in app_example2() 69 .author("Kevin K. <kbknapp@gmail.com>") in app_example4() 202 let mut cmd = app_example4().help_template("{name} {version}\n{author}\n{about}\n\nUSAGE:\n {usage}\n\nOPTIONS:\n{options}\n\nARGS:\n{args}\n"); in example4_template()
|
/third_party/node/deps/v8/tools/release/ |
H A D | auto_push.py | 77 "--author", self._options.author, 98 if not options.author or not options.reviewer: # pragma: no cover 99 print("You need to specify author and reviewer.")
|
H A D | auto_roll.py | 156 self.GitCommit("\n\n".join(message), author=self._options.author, cwd=cwd) 208 if not options.author or not options.reviewer: 209 print("A reviewer (-r) and an author (-a) are required.")
|
H A D | git_recipes.py | 237 def GitCommit(self, message="", file_name="", author=None, **kwargs): 244 if author: 245 args += ["--author", "\"%s <%s>\"" % (author, author)]
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | modinfo.c | 51 i->author = pa_xstrdup(func()); in pa_modinfo_get_by_handle() 91 pa_xfree(i->author); in pa_modinfo_free()
|