| /third_party/rust/rust/tests/ui/associated-type-bounds/ |
| D | duplicate.stderr | 1 error[E0719]: the value of the associated type `Item` (from trait `Iterator`) is already specified 2 --> $DIR/duplicate.rs:7:36 4 LL | struct SI1<T: Iterator<Item: Copy, Item: Send>> { 5 | ---------- ^^^^^^^^^^ re-bound here 7 | `Item` bound here first 9 error[E0719]: the value of the associated type `Item` (from trait `Iterator`) is already specified 10 --> $DIR/duplicate.rs:11:36 12 LL | struct SI2<T: Iterator<Item: Copy, Item: Copy>> { 13 | ---------- ^^^^^^^^^^ re-bound here 15 | `Item` bound here first [all …]
|
| D | duplicate.rs | 7 struct SI1<T: Iterator<Item: Copy, Item: Send>> { 8 …//~^ ERROR the value of the associated type `Item` (from trait `Iterator`) is already specified [E… 11 struct SI2<T: Iterator<Item: Copy, Item: Copy>> { 12 …//~^ ERROR the value of the associated type `Item` (from trait `Iterator`) is already specified [E… 15 struct SI3<T: Iterator<Item: 'static, Item: 'static>> { 16 …//~^ ERROR the value of the associated type `Item` (from trait `Iterator`) is already specified [E… 21 T: Iterator<Item: Copy, Item: Send>, 22 …//~^ ERROR the value of the associated type `Item` (from trait `Iterator`) is already specified [E… 28 T: Iterator<Item: Copy, Item: Copy>, 29 …//~^ ERROR the value of the associated type `Item` (from trait `Iterator`) is already specified [E… [all …]
|
| D | trait-params.rs | 1 // build-pass (FIXME(62277): could be check-pass?) 11 pub fn assert_copy<T: Copy>() {} in assert_copy() argument 17 impl<'a> Into<&'a u8> for A { fn into(self) -> &'a u8 { &0 } } in into() 22 A: Iterator<Item: Copy>, 23 B: Iterator<Item: 'static>, 24 C: Iterator<Item: 'static + Copy + Send>, 25 D: Iterator<Item: for<'a> Into<&'a u8>>, 26 E: Three<A: Iterator<Item: Copy>, B: Iterator<Item: Copy>, C: Iterator<Item: Copy>>, 27 Self: Three<A: 'static, B: Copy, C: Send>, 31 assert_copy::<A::Item>(); in _a() [all …]
|
| D | type-alias.stderr | 2 --> $DIR/type-alias.rs:5:25 4 LL | type _TaWhere1<T> where T: Iterator<Item: Copy> = T; 10 LL - type _TaWhere1<T> where T: Iterator<Item: Copy> = T; 15 --> $DIR/type-alias.rs:6:25 17 LL | type _TaWhere2<T> where T: Iterator<Item: 'static> = T; 22 LL - type _TaWhere2<T> where T: Iterator<Item: 'static> = T; 27 --> $DIR/type-alias.rs:7:25 29 LL | type _TaWhere3<T> where T: Iterator<Item: 'static> = T; 34 LL - type _TaWhere3<T> where T: Iterator<Item: 'static> = T; 39 --> $DIR/type-alias.rs:8:25 [all …]
|
| D | type-alias.rs | 1 // check-pass 5 type _TaWhere1<T> where T: Iterator<Item: Copy> = T; //~ WARNING type_alias_bounds 6 type _TaWhere2<T> where T: Iterator<Item: 'static> = T; //~ WARNING type_alias_bounds 7 type _TaWhere3<T> where T: Iterator<Item: 'static> = T; //~ WARNING type_alias_bounds 8 type _TaWhere4<T> where T: Iterator<Item: 'static + Copy + Send> = T; //~ WARNING type_alias_bounds 9 type _TaWhere5<T> where T: Iterator<Item: for<'a> Into<&'a u8>> = T; //~ WARNING type_alias_bounds 10 type _TaWhere6<T> where T: Iterator<Item: Iterator<Item: Copy>> = T; //~ WARNING type_alias_bounds 12 type _TaInline1<T: Iterator<Item: Copy>> = T; //~ WARNING type_alias_bounds 13 type _TaInline2<T: Iterator<Item: 'static>> = T; //~ WARNING type_alias_bounds 14 type _TaInline3<T: Iterator<Item: 'static>> = T; //~ WARNING type_alias_bounds [all …]
|
| D | inside-adt.stderr | 2 --> $DIR/inside-adt.rs:5:29 4 LL | struct S1 { f: dyn Iterator<Item: Copy> } 8 --> $DIR/inside-adt.rs:7:33 10 LL | struct S2 { f: Box<dyn Iterator<Item: Copy>> } 14 --> $DIR/inside-adt.rs:9:29 16 LL | struct S3 { f: dyn Iterator<Item: 'static> } 20 --> $DIR/inside-adt.rs:12:26 22 LL | enum E1 { V(dyn Iterator<Item: Copy>) } 26 --> $DIR/inside-adt.rs:14:30 28 LL | enum E2 { V(Box<dyn Iterator<Item: Copy>>) } [all …]
|
| /third_party/icu/icu4c/packaging/ |
| D | distrelease.ps1 | 3 #------------------------- 6 # Date: 2017-04-14 7 #------------------------- 9 # This builds a zipfile containing the 64-bit (x64) and/or 32-bit (x86) Windows binaries. 15 # Set-ExecutionPolicy -Scope Process Unrestricted 16 # .\packaging\distrelease.ps1 -arch "x64 or x86 or ARM64" 18 # Will emit: c:\icu4c\icu\source\dist\icu-windows.zip 22 …wershell.core/about/about_execution_policies?view=powershell-5.1&viewFallbackFrom=powershell-Micro… 29 $icuDir = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent 30 $icuDir = Resolve-Path -Path '$icuDir\..' [all …]
|
| /third_party/ffmpeg/doc/ |
| D | bitstream_filters.texi | 6 the configure option @code{--list-bsfs}. 9 @code{--disable-bsfs}, and selectively enable any bitstream filter using 10 the option @code{--enable-bsf=BSF}, or you can disable a particular 11 bitstream filter using the option @code{--disable-bsf=BSF}. 13 The option @code{-bsfs} of the ff* tools will display the list of 16 The ff* tools have a -bsf option applied per stream, taking a 17 comma-separated list of filters, whose parameters follow the filter 21 ffmpeg -i INPUT -c:v copy -bsf:v filter1[=opt1=str1:opt2=str2][,filter2] OUTPUT 29 Convert MPEG-2/4 AAC ADTS to an MPEG-4 Audio Specific Configuration 32 This filter creates an MPEG-4 AudioSpecificConfig from an MPEG-2/4 [all …]
|
| D | ffmpeg.texi | 1 \input texinfo @c -*- texinfo -*- 2 @documentencoding UTF-8 15 ffmpeg [@var{global_options}] @{[@var{input_file_options}] -i @file{input_url}@} ... @{[@var{output… 26 @code{-i} option, and writes to an arbitrary number of output "files", which are 34 or with the @code{-map} option (see the Stream selection chapter). 36 To refer to input files in options, you must use their indices (0-based). E.g. 48 Do not mix input and output files -- first specify all input files, then all 53 @item 56 ffmpeg -i input.avi -b:v 64k -bufsize 64k output.avi 59 @item [all …]
|
| /third_party/mesa3d/.gitlab-ci/windows/ |
| D | mesa_build.ps1 | 7 Write-Host "Refreshing Windows TLS CA cache" 8 (New-Object System.Net.WebClient).DownloadString("https://github.com") >$null 12 Get-Date 13 Write-Host "Compiling Mesa" 14 $builddir = New-Item -Force -ItemType Directory -Name "_build" 15 $installdir = New-Item -Force -ItemType Directory -Name "_install" 20 Remove-Item -Recurse -Force $builddir 21 Remove-Item -Recurse -Force $installdir 22 New-Item -ItemType Directory -Path $builddir 23 New-Item -ItemType Directory -Path $installdir [all …]
|
| D | mesa_deps_d3d.ps1 | 7 $depsInstallPath="C:\mesa-deps" 9 Write-Host "Downloading DirectX 12 Agility SDK at:" 10 Get-Date 11 Invoke-WebRequest -Uri https://www.nuget.org/api/v2/package/Microsoft.Direct3D.D3D12/1.614.1 -OutFi… 12 Expand-Archive -Path 'agility.zip' -DestinationPath 'C:\agility' 13 # Copy Agility SDK into mesa-deps\bin\D3D12 14 New-Item -ErrorAction SilentlyContinue -ItemType Directory -Path $depsInstallPath\bin -Name 'D3D12' 15 Copy-Item 'C:\agility\build\native\bin\x64\*.dll' -Destination $depsInstallPath\bin\D3D12 16 Remove-Item 'agility.zip' 17 Remove-Item -Recurse 'C:\agility' [all …]
|
| D | mesa_deps_test_deqp.ps1 | 4 $MyPath = $MyInvocation.MyCommand.Path | Split-Path -Parent 7 $source_dir = Join-Path -Path "$PWD" -ChildPath "src" 8 $deqp_source = Join-Path -Path "$source_dir" -ChildPath "VK-GL-CTS" 9 $deqp_build = Join-Path -Path "$PWD" -ChildPath "deqp" 11 Write-Host "Cloning Vulkan and GL Conformance Tests at:" 12 Get-Date 13 New-Item -ItemType Directory -Path "$deqp_source" | Out-Null 14 Push-Location -Path $deqp_source 16 git remote add origin https://github.com/KhronosGroup/VK-GL-CTS.git 17 git fetch --depth 1 origin d48899f85b486a70d090af59a1453763458611d9 # of branch vulkan-cts-1.3.8 [all …]
|
| D | vainfo_run.ps1 | 2 function Deploy-Dependencies { in Deploy-Dependencies() 7 Write-Host "Copying libva runtime and driver at:" in Deploy-Dependencies() 8 Get-Date in Deploy-Dependencies() 10 …# Copy the VA runtime binaries from the mesa built dependencies so the versions match with the bui… in Deploy-Dependencies() 11 $depsInstallPath="C:\mesa-deps" in Deploy-Dependencies() 12 Copy-Item "$depsInstallPath\bin\vainfo.exe" -Destination "$deploy_directory\vainfo.exe" in Deploy-Dependencies() 13 Copy-Item "$depsInstallPath\bin\va_win32.dll" -Destination "$deploy_directory\va_win32.dll" in Deploy-Dependencies() 14 Copy-Item "$depsInstallPath\bin\va.dll" -Destination "$deploy_directory\va.dll" in Deploy-Dependencies() 16 # Copy Agility SDK into D3D12 subfolder of vainfo in Deploy-Dependencies() 17 New-Item -ItemType Directory -Force -Path "$deploy_directory\D3D12" | Out-Null in Deploy-Dependencies() [all …]
|
| /third_party/rust/rust/tests/ui/traits/ |
| D | issue-50480.stderr | 2 --> $DIR/issue-50480.rs:3:12 4 LL | struct Foo(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); 9 LL | struct Foo<N>(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); 13 --> $DIR/issue-50480.rs:3:15 15 LL | struct Foo(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); 19 --> $DIR/issue-50480.rs:3:12 21 LL | struct Foo(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); 26 LL | struct Foo<N>(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); 30 --> $DIR/issue-50480.rs:3:15 32 LL | struct Foo(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String); [all …]
|
| /third_party/skia/third_party/externals/microhttpd/doc/ |
| D | fdl-1.3.texi | 11 Everyone is permitted to copy and distribute verbatim copies 16 @item 21 assure everyone the effective freedom to copy and redistribute it, 40 @item 46 world-wide, royalty-free license, unlimited in duration, to use that 50 copy, modify or distribute the work in a way requiring permission 57 A ``Secondary Section'' is a named appendix or a front-matter section 77 as Front-Cover Texts or Back-Cover Texts, in the notice that says that 78 the Document is released under this License. A Front-Cover Text may 79 be at most 5 words, and a Back-Cover Text may be at most 25 words. [all …]
|
| D | lgpl.texi | 9 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 11 Everyone is permitted to copy and distribute verbatim copies 24 free software---to make sure the software is free for all its users. 27 specially designated software---typically libraries---of the Free 54 We protect your rights with a two-step method: (1) we copyright the 56 permission to copy, distribute and/or modify the library. 77 libraries into non-free programs. 90 of an advantage over competing non-free programs. These disadvantages 97 a de-facto standard. To achieve this, non-free programs must be 99 library does the same job as widely used non-free libraries. In this [all …]
|
| /third_party/protobuf/csharp/src/Google.Protobuf/Collections/ |
| D | RepeatedField.cs | 2 // Protocol Buffers - Google's data interchange format 5 // Use of this source code is governed by a BSD-style 7 // https://developers.google.com/open-source/licenses/bsd 47 /// bytes, both of which are immutable) and so a simple copy is 99 // Non-nullable value types can be packed or not. in AddEntriesFrom() 108 // of the repeated field and pre-initialize the underlying collection. in AddEntriesFrom() 134 // Empty packed field. Odd, but valid - just ignore. in AddEntriesFrom() 275 … $"Cannot set Capacity to a value smaller than the current item count, {count}"); 302 Array.Copy(array, 0, tmp, 0, count); in SetSize() 308 /// Adds the specified item to the collection. [all …]
|
| /third_party/rust/rust/tests/ui/traits/new-solver/ |
| D | alias-bound-unsound.rs | 1 // compile-flags: -Ztrait-solver=next 8 type Item: Copy typedef 10 <Self as Foo>::Item: Copy; 12 fn copy_me(x: &Self::Item) -> Self::Item { in copy_me() argument 18 type Item = String where String: Copy; typedef 24 //~^ ERROR the type `&<() as Foo>::Item` is not well-formed in main() 25 //~| ERROR `<() as Foo>::Item` is not well-formed in main()
|
| /third_party/ncurses/menu/ |
| D | m_item_opt.c | 3 * Copyright 1998-2004,2010 Free Software Foundation, Inc. * 6 * copy of this software and associated documentation files (the * 8 * without limitation the rights to use, copy, modify, merge, publish, * 36 * Menus item option routines * 43 /*--------------------------------------------------------------------------- 45 | Function : int set_item_opts(ITEM *item, Item_Options opts) 47 | Description : Set the options of the item. If there are relevant 48 | changes, the item is connected and the menu is posted, 51 | Return Values : E_OK - success 52 | E_BAD_ARGUMENT - invalid item options [all …]
|
| /third_party/python/Lib/test/ |
| D | test_xml_dom_minicompat.py | 3 import copy 15 # Test item access on an EmptyNodeList. 18 self.assertIsNone(node_list.item(0)) 19 self.assertIsNone(node_list.item(-1)) # invalid item 24 node_list[-1] 51 self.assertIsNone(node_list.item(0)) 52 self.assertIsNone(node_list.item(-1)) 57 node_list[-1] 63 self.assertEqual(node_list.item(0), 111) 64 self.assertIsNone(node_list.item(-1)) # invalid item [all …]
|
| /third_party/rust/rust/library/core/src/iter/adapters/ |
| D | copied.rs | 26 pub(in crate::iter) fn new(it: I) -> Copied<I> { in new() 31 fn copy_fold<T: Copy, Acc>(mut f: impl FnMut(Acc, T) -> Acc) -> impl FnMut(Acc, &T) -> Acc { in copy_fold() argument 35 fn copy_try_fold<T: Copy, Acc, R>(mut f: impl FnMut(Acc, T) -> R) -> impl FnMut(Acc, &T) -> R { in copy_try_fold() argument 42 I: Iterator<Item = &'a T>, 43 T: Copy, 45 type Item = T; typedef 47 fn next(&mut self) -> Option<T> { in next() 53 ) -> Result<[Self::Item; N], array::IntoIter<Self::Item, N>> in next_chunk() argument 60 fn size_hint(&self) -> (usize, Option<usize>) { in size_hint() 64 fn try_fold<B, F, R>(&mut self, init: B, f: F) -> R in try_fold() [all …]
|
| /third_party/rust/rust/tests/ui/generic-associated-types/ |
| D | issue-68641-check-gat-bounds.rs | 4 type Item<'a>: Copy; typedef 6 fn copy<'a>(item: &Self::Item<'a>) -> Self::Item<'a> { in copy() method 7 *item in copy() 12 type Item<'a> = T; typedef 13 //~^ ERROR the trait bound `T: Copy` is not satisfied 19 let copy = String::copy(&s); in main() localVariable 22 assert!(s.as_ptr() == copy.as_ptr()); in main() 24 // Any use of `copy` is certeinly UB after this in main() 28 println!("{}", copy); in main()
|
| /third_party/cJSON/tests/ |
| D | common.h | 2 Copyright (c) 2009-2017 Dave Gamble and cJSON contributors 4 Permission is hereby granted, free of charge, to any person obtaining a copy 7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 28 void reset(cJSON *item); 29 void reset(cJSON *item) { in reset() argument 30 if ((item != NULL) && (item->child != NULL)) in reset() 32 cJSON_Delete(item->child); in reset() 34 if ((item->valuestring != NULL) && !(item->type & cJSON_IsReference)) in reset() 36 global_hooks.deallocate(item->valuestring); in reset() 38 if ((item->string != NULL) && !(item->type & cJSON_StringIsConst)) in reset() [all …]
|
| /third_party/python/Lib/ |
| D | _weakrefset.py | 2 # This code is separated-out because it is needed 15 # This technique should be relatively thread-safe (since sets are). 39 def _remove(item, selfref=ref(self)): argument 43 self._pending_removals.append(item) 45 self.data.discard(item) 58 item = pop() 61 discard(item) 66 item = itemref() 67 if item is not None: 69 # `item` until it is resumed or closed. [all …]
|
| /third_party/python/Lib/venv/scripts/common/ |
| D | Activate.ps1 | 26 Activate.ps1 -Verbose 31 Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv 35 Activate.ps1 -Prompt "MyPython" 45 PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser 60 <# Function declarations --------------------------------------------------- #> 77 if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { in global:deactivate() 78 Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt in global:deactivate() 79 Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT in global:deactivate() 83 if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { in global:deactivate() 84 Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME in global:deactivate() [all …]
|