| /third_party/cups/examples/ |
| D | testfile.txt | 1 All work and no play makes Johhny a dull boy. All work and no 2 play makes Johhny a dull boy. All work and no play makes Johhny 3 a dull boy. All work and no play makes Johhny a dull boy. All 4 work and no play makes Johhny a dull boy. All work and no play 5 makes Johhny a dull boy. All work and no play makes Johhny a 6 dull boy. All work and no play makes Johhny a dull boy. All 7 work and no play makes Johhny a dull boy. All work and no play 8 makes Johhny a dull boy. All work and no play makes Johhny a 9 dull boy. All work and no play makes Johhny a dull boy. All 10 work and no play makes Johhny a dull boy. All work and no play [all …]
|
| /third_party/tex-hyphen/ |
| D | LICENSE-LPPL1.3 | 17 You may use this license for any work of which you hold the copyright 19 suitable if your work is TeX-related (such as a LaTeX package), but 20 it is written in such a way that you can use it even if your work is 27 This license gives conditions under which a work may be distributed 29 that work may be distributed. 32 the freedom to make and distribute modified versions of your work 35 that work. If you do not see how to achieve your goal while 45 `Work' 46 Any work being distributed under this License. 48 `Derived Work' [all …]
|
| /third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
| D | workqueue.h | 53 * Define a usable work priority. 61 * Define a usable work priority. 70 * Define a usable work priority. 106 * Work structure. 107 * A work is a node in a workqueue. 110 atomic_long_t data; /**< Input parameter of the work handling function. */ 111 struct list_head entry; /**< Pointer to a doubly linked list of a work. */ 112 work_func_t func; /**< Work handling function. */ 113 unsigned int work_status; /**< Work status. */ 122 * A delayed_work is a work that is delayed to be mounted to a workqueue. [all …]
|
| /third_party/typescript/tests/baselines/reference/tsserver/cachingFileSystemInformation/ |
| D | watchDirectories-for-config-file-with-case-insensitive-file-system.js | 3 //// [/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts] 6 //// [/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts] 22 //// [/Users/someuser/work/applications/frontend/tsconfig.json] 32 Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils 33 …0] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file n… 34 Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/… 35 …dded:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project:… 36 Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : { 38 "/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts", 39 "/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts" [all …]
|
| D | watchDirectories-for-config-file-with-case-sensitive-file-system.js | 3 //// [/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts] 6 //// [/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts] 22 //// [/Users/someuser/work/applications/frontend/tsconfig.json] 32 Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils 33 …0] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file n… 34 Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/… 35 …dded:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project:… 36 Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : { 38 "/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts", 39 "/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts" [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | typeFromPropertyAssignment14.symbols | 3 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28)) 5 === tests/cases/conformance/salsa/work.js === 7 >Outer.Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6)) 8 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28)) 9 >Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6)) 12 >Outer.Inner.prototype : Symbol(Outer.Inner.prototype, Decl(work.js, 0, 28)) 13 >Outer.Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6)) 14 >Outer : Symbol(Outer, Decl(def.js, 0, 3), Decl(work.js, 0, 0), Decl(work.js, 0, 28)) 15 >Inner : Symbol(Outer.Inner, Decl(work.js, 0, 0), Decl(work.js, 1, 6)) 16 >prototype : Symbol(Outer.Inner.prototype, Decl(work.js, 0, 28)) [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
| D | des-internal.c | 320 u32 work, right, leftt; in desfunc() local 326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 327 right ^= work; in desfunc() 328 leftt ^= (work << 4); in desfunc() 330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 331 right ^= work; in desfunc() 332 leftt ^= (work << 16); in desfunc() 334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 335 leftt ^= work; in desfunc() 336 right ^= (work << 2); in desfunc() [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
| D | des-internal.c | 320 u32 work, right, leftt; in desfunc() local 326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 327 right ^= work; in desfunc() 328 leftt ^= (work << 4); in desfunc() 330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 331 right ^= work; in desfunc() 332 leftt ^= (work << 16); in desfunc() 334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 335 leftt ^= work; in desfunc() 336 right ^= (work << 2); in desfunc() [all …]
|
| /third_party/openhitls/config/macro_config/ |
| D | hitls_config_check.h | 26 #error "[HiTLS] The tls-provider must work with crypto-provider" 30 #error "[HiTLS] Integrity check must work with TLS13" 35 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_128_GCM_SHA256 must work with sha256, gcm, aes" 40 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_256_GCM_SHA384 must work with sha384, gcm, aes" 45 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_CHACHA20_POLY1305_SHA256 must work with sha256, chacha… 51 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_128_CCM_SHA256 must work with sha256, ccm, aes" 56 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_AES_128_CCM_8_SHA256 must work with sha256, ccm, aes" 62 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_RSA_WITH_AES_128_CBC_SHA must work with sha1, cbc, aes… 68 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_RSA_WITH_AES_256_CBC_SHA must work with sha1, cbc, aes… 74 #error "[HiTLS] cipher suite HITLS_TLS_SUITE_RSA_WITH_AES_128_CBC_SHA256 must work with sha256, cbc… [all …]
|
| /third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
| D | linux_workqueue.c | 53 * Obtain the first work in a workqueue. 78 INIT_WORK(&(dwork->work), func); in linux_init_delayed_work() 82 dwork->work.work_status = 0; in linux_init_delayed_work() 200 struct work_struct *work = NULL; in RunWorkqueue() local 207 work = worklist_entry(cwq->worklist.next, struct work_struct, entry); in RunWorkqueue() 208 work->work_status |= WORK_STRUCT_RUNNING; in RunWorkqueue() 210 func = work->func; in RunWorkqueue() 212 cwq->current_work = work; in RunWorkqueue() 214 func(work); in RunWorkqueue() 218 if (work->work_status & WORK_STRUCT_RUNNING) { in RunWorkqueue() [all …]
|
| /third_party/rust/rust/src/etc/third-party/ |
| D | COPYING3 | 19 any other work released this way by its authors. You can apply it to 80 "The Program" refers to any copyrightable work licensed under this 84 To "modify" a work means to copy from or adapt all or part of the work 86 exact copy. The resulting work is called a "modified version" of the 87 earlier work or a work "based on" the earlier work. 89 A "covered work" means either the unmodified Program or a work based 92 To "propagate" a work means to do anything with it that, without 99 To "convey" a work means any kind of propagation that enables other 106 tells the user that there is no warranty for the work (except to the 108 work under this License, and how to view a copy of this License. If [all …]
|
| /third_party/tex-hyphen/webpage/hyphenator_3.1.0/ |
| D | COPYING.txt | 19 any other work released this way by its authors. You can apply it to 80 "The Program" refers to any copyrightable work licensed under this 84 To "modify" a work means to copy from or adapt all or part of the work 86 exact copy. The resulting work is called a "modified version" of the 87 earlier work or a work "based on" the earlier work. 89 A "covered work" means either the unmodified Program or a work based 92 To "propagate" a work means to do anything with it that, without 99 To "convey" a work means any kind of propagation that enables other 106 tells the user that there is no warranty for the work (except to the 108 work under this License, and how to view a copy of this License. If [all …]
|
| /third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/ |
| D | LICENSE | 19 any other work released this way by its authors. You can apply it to 80 "The Program" refers to any copyrightable work licensed under this 84 To "modify" a work means to copy from or adapt all or part of the work 86 exact copy. The resulting work is called a "modified version" of the 87 earlier work or a work "based on" the earlier work. 89 A "covered work" means either the unmodified Program or a work based 92 To "propagate" a work means to do anything with it that, without 99 To "convey" a work means any kind of propagation that enables other 106 tells the user that there is no warranty for the work (except to the 108 work under this License, and how to view a copy of this License. If [all …]
|
| /third_party/ffmpeg/ |
| D | COPYING.GPLv3 | 19 any other work released this way by its authors. You can apply it to 80 "The Program" refers to any copyrightable work licensed under this 84 To "modify" a work means to copy from or adapt all or part of the work 86 exact copy. The resulting work is called a "modified version" of the 87 earlier work or a work "based on" the earlier work. 89 A "covered work" means either the unmodified Program or a work based 92 To "propagate" a work means to do anything with it that, without 99 To "convey" a work means any kind of propagation that enables other 106 tells the user that there is no warranty for the work (except to the 108 work under this License, and how to view a copy of this License. If [all …]
|
| /third_party/json/LICENSES/ |
| D | GPL-3.0-only.txt | 12 …ral Public License for most of our software; it applies also to any other work released this way b… 38 “The Program” refers to any copyrightable work licensed under this License. Each licensee is addres… 40 …work means to copy from or adapt all or part of the work in a fashion requiring copyright permissi… 42 A “covered work” means either the unmodified Program or a work based on the Program. 44 To “propagate” a work means to do anything with it that, without permission, would make you directl… 46 To “convey” a work means any kind of propagation that enables other parties to make or receive copi… 48 … there is no warranty for the work (except to the extent that warranties are provided), that licen… 51 …ce code” for a work means the preferred form of the work for making modifications to it. “Object c… 55 …work include anything, other than the work as a whole, that (a) is included in the normal form of … 57 …work in object code form means all the source code needed to generate, install, and (for an execut… [all …]
|
| /third_party/elfutils/ |
| D | COPYING | 19 any other work released this way by its authors. You can apply it to 80 "The Program" refers to any copyrightable work licensed under this 84 To "modify" a work means to copy from or adapt all or part of the work 86 exact copy. The resulting work is called a "modified version" of the 87 earlier work or a work "based on" the earlier work. 89 A "covered work" means either the unmodified Program or a work based 92 To "propagate" a work means to do anything with it that, without 99 To "convey" a work means any kind of propagation that enables other 106 tells the user that there is no warranty for the work (except to the 108 work under this License, and how to view a copy of this License. If [all …]
|
| /third_party/rust/crates/cxx/gen/lib/ |
| D | LICENSE-APACHE | 35 "Work" shall mean the work of authorship, whether in Source or 37 copyright notice that is included in or attached to the work 40 "Derivative Works" shall mean any work, whether in Source or Object 41 form, that is based on (or derived from) the Work and for which the 43 represent, as a whole, an original work of authorship. For the purposes 46 the Work and Derivative Works thereof. 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 50 to that Work or Derivative Works thereof, that is intentionally 51 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /third_party/rust/rust/ |
| D | LICENSE-APACHE | 35 "Work" shall mean the work of authorship, whether in Source or 37 copyright notice that is included in or attached to the work 40 "Derivative Works" shall mean any work, whether in Source or Object 41 form, that is based on (or derived from) the Work and for which the 43 represent, as a whole, an original work of authorship. For the purposes 46 the Work and Derivative Works thereof. 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 50 to that Work or Derivative Works thereof, that is intentionally 51 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /third_party/rust/crates/serde/serde_derive_internals/ |
| D | LICENSE-APACHE | 35 "Work" shall mean the work of authorship, whether in Source or 37 copyright notice that is included in or attached to the work 40 "Derivative Works" shall mean any work, whether in Source or Object 41 form, that is based on (or derived from) the Work and for which the 43 represent, as a whole, an original work of authorship. For the purposes 46 the Work and Derivative Works thereof. 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 50 to that Work or Derivative Works thereof, that is intentionally 51 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /third_party/jsframework/ |
| D | LICENSE | 36 "Work" shall mean the work of authorship, whether in Source or 38 copyright notice that is included in or attached to the work 41 "Derivative Works" shall mean any work, whether in Source or Object 42 form, that is based on (or derived from) the Work and for which the 44 represent, as a whole, an original work of authorship. For the purposes 47 the Work and Derivative Works thereof. 49 "Contribution" shall mean any work of authorship, including 50 the original version of the Work and any modifications or additions 51 to that Work or Derivative Works thereof, that is intentionally 52 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /third_party/typescript/ |
| D | LICENSE | 23 …Work" shall mean the work of authorship, whether in Source or Object form, made available under th… 25 …work, whether in Source or Object form, that is based on (or derived from) the Work and for which … 27 …work of authorship, including the original version of the Work and any modifications or additions … 29 …of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 31 …ks of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative… 33 …Work, where such license applies only to those patent claims licensable by such Contributor that a… 35 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof … 37 You must give any other recipients of the Work or Derivative Works a copy of this License; and 41 …t, patent, trademark, and attribution notices from the Source form of the Work, excluding those no… 43 …Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You… [all …]
|
| /third_party/rust/crates/syn/ |
| D | LICENSE-APACHE | 35 "Work" shall mean the work of authorship, whether in Source or 37 copyright notice that is included in or attached to the work 40 "Derivative Works" shall mean any work, whether in Source or Object 41 form, that is based on (or derived from) the Work and for which the 43 represent, as a whole, an original work of authorship. For the purposes 46 the Work and Derivative Works thereof. 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 50 to that Work or Derivative Works thereof, that is intentionally 51 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /third_party/rust/crates/cxx/ |
| D | LICENSE-APACHE | 35 "Work" shall mean the work of authorship, whether in Source or 37 copyright notice that is included in or attached to the work 40 "Derivative Works" shall mean any work, whether in Source or Object 41 form, that is based on (or derived from) the Work and for which the 43 represent, as a whole, an original work of authorship. For the purposes 46 the Work and Derivative Works thereof. 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 50 to that Work or Derivative Works thereof, that is intentionally 51 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /third_party/rust/crates/serde/ |
| D | LICENSE-APACHE | 35 "Work" shall mean the work of authorship, whether in Source or 37 copyright notice that is included in or attached to the work 40 "Derivative Works" shall mean any work, whether in Source or Object 41 form, that is based on (or derived from) the Work and for which the 43 represent, as a whole, an original work of authorship. For the purposes 46 the Work and Derivative Works thereof. 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 50 to that Work or Derivative Works thereof, that is intentionally 51 submitted to Licensor for inclusion in the Work by the copyright owner [all …]
|
| /third_party/skia/m133/third_party/etc1/ |
| D | LICENSE | 36 "Work" shall mean the work of authorship, whether in Source or Object 38 notice that is included in or attached to the work (an example is 41 "Derivative Works" shall mean any work, whether in Source or Object 42 form, that is based on (or derived from) the Work and for which the 44 represent, as a whole, an original work of authorship. For the purposes 47 the Work and Derivative Works thereof. 49 "Contribution" shall mean any work of authorship, including the original 50 version of the Work and any modifications or additions to that Work or 52 for inclusion in the Work by the copyright owner or by an individual or 59 and improving the Work, but excluding communication that is conspicuously [all …]
|