Home
last modified time | relevance | path

Searched +full:expand +full:- +full:archive (Results 1 – 25 of 137) sorted by relevance

123456

/third_party/mesa3d/.gitlab-ci/windows/
Dmesa_deps_d3d.ps17 $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 …]
Dmesa_deps_build.ps12 $MyPath = $MyInvocation.MyCommand.Path | Split-Path -Parent
7 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -bor [Net.SecurityP…
9 Remove-Item -Recurse -Force -ErrorAction SilentlyContinue "deps" | Out-Null
11 $depsInstallPath="C:\mesa-deps"
13 Get-Date
14 Write-Host "Cloning DirectX-Headers"
15 git clone -b v1.614.1 --depth=1 https://github.com/microsoft/DirectX-Headers deps/DirectX-Headers
17 Write-Host "Failed to clone DirectX-Headers repository"
20 Write-Host "Building DirectX-Headers"
21 $dxheaders_build = New-Item -ItemType Directory -Path ".\deps\DirectX-Headers" -Name "build"
[all …]
/third_party/skia/m133/tools/testrunners/common/android/
Dadb_test.bzl6 def _adb_test_runner_transition_impl(settings, attr): # buildifier: disable=unused-variable
9 # If no platform was specified via --adb_platform, use the host platform. This allows us to
32 …build/rules_go/blob/5933b6ed063488472fc14ceca232b3115e8bc39f/go/private/platforms.bzl#LL30C9-L30C9.
45 # Map the --adb_platform CPU part to GOARCH style, which we differ from for readability.
50 # This transition allows us to cross-compile the Go test runner (i.e. the program that issues adb
51 # commands) for a different platform, for example when "bazel build"-ing on an x86 GCE machine and
64 if [[ -z "${TEST_UNDECLARED_OUTPUTS_DIR}" ]]; then
72 output_dir_flag = "--output-dir $TEST_UNDECLARED_OUTPUTS_DIR"
79 # Print commands and expand variables for easier debugging.
80 set -x
[all …]
/third_party/skia/third_party/externals/tint/kokoro/windows/
Dbuild.bat7 @rem http://www.apache.org/licenses/LICENSE-2.0
46 set TEMP_DIR=%TEMP%\tint-temp
47 set SRC_DIR="%TEMP_DIR%\tint-src"
48 set BUILD_DIR="%TEMP_DIR%\tint-build"
65 …pi/projects/dnovillo/directxshadercompiler/artifacts/build%%2FRelease%%2Fdxc-artifacts.zip?branch=…
66 curl -L %DXC_LATEST_ARTIFACT% --output "%TEMP_DIR%\dxc.zip" || goto :error
71 powershell.exe -Command "Expand-Archive -LiteralPath '%TEMP_DIR%\dxc.zip' -DestinationPath '%TEMP_D…
80 powershell -Command "(New-Object Net.WebClient).DownloadFile('https://storage.googleapis.com/chrome
81 powershell -Command "Expand-Archive -Force 'depot_tools.zip' 'depot_tools'" || goto :error
107 set COMMON_CMAKE_FLAGS=-DTINT_BUILD_DOCS=O
[all …]
/third_party/skia/third_party/externals/microhttpd/m4/
Dax_require_defined.m42 # http://www.gnu.org/software/autoconf-archive/ax_require_defined.html
14 # non-fatal:
18 # It's like AC_REQUIRE except it doesn't expand the required macro.
30 # and this notice are preserved. This file is offered as-is, without any
/third_party/skia/m133/third_party/externals/expat/expat/conftools/
Dax-require-defined.m42 # https://www.gnu.org/software/autoconf-archive/ax_require_defined.html
14 # non-fatal:
18 # It's like AC_REQUIRE except it doesn't expand the required macro.
30 # and this notice are preserved. This file is offered as-is, without any
/third_party/skia/third_party/externals/expat/expat/conftools/
Dax-require-defined.m42 # https://www.gnu.org/software/autoconf-archive/ax_require_defined.html
14 # non-fatal:
18 # It's like AC_REQUIRE except it doesn't expand the required macro.
30 # and this notice are preserved. This file is offered as-is, without any
/third_party/skia/third_party/externals/libjpeg-turbo/
Dcoderules.txt4 Copyright (C) 1991-1996, Thomas G. Lane.
5 It was modified by The libjpeg-turbo Project to include only information
6 relevant to libjpeg-turbo.
16 Brader). This document is available in the IJG FTP archive (see
27 then-part;
29 else-part;
34 Multi-word names should be written in lower case with underscores, e.g.,
40 or METHODDEF(type). These macros expand to "static type" or just "type" as
57 wherever possible. (Note that our method-based calling conventions help this
65 4. Don't use static variables except for read-only constant tables. Variables
[all …]
/third_party/skia/m133/third_party/externals/libjpeg-turbo/
Dcoderules.txt4 Copyright (C) 1991-1996, Thomas G. Lane.
5 It was modified by The libjpeg-turbo Project to include only information
6 relevant to libjpeg-turbo.
16 Brader). This document is available in the IJG FTP archive (see
27 then-part;
29 else-part;
34 Multi-word names should be written in lower case with underscores, e.g.,
40 or METHODDEF(type). These macros expand to "static type" or just "type" as
57 wherever possible. (Note that our method-based calling conventions help this
65 4. Don't use static variables except for read-only constant tables. Variables
[all …]
/third_party/rust/rust/src/tools/rust-analyzer/crates/proc-macro-srv/src/
Ddylib.rs18 fn invalid_data_err(e: impl Into<Box<dyn std::error::Error + Send + Sync>>) -> io::Error { in invalid_data_err()
22 fn is_derive_registrar_symbol(symbol: &str) -> bool { in is_derive_registrar_symbol()
26 fn find_registrar_symbol(file: &Path) -> io::Result<Option<String>> { in find_registrar_symbol()
40 …// https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/m… in find_registrar_symbol()
54 /// [here](https://github.com/fedochet/rust-proc-macro-panic-inside-panic-expample)
55 /// and [here](https://github.com/rust-lang/rust/issues/60593).
58 /// [here](https://github.com/fedochet/rust-proc-macro-panic-inside-panic-expample/issues/1)
62 fn load_library(file: &Path) -> Result<Library, libloading::Error> { in load_library()
67 fn load_library(file: &Path) -> Result<Library, libloading::Error> { in load_library()
85 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
[all …]
/third_party/elfutils/doc/
Dreadelf.12 .\" Tue 2019-Aug 20 by Ben Woodard <woodard@redhat.com>
3 .\" Contact elfutils-devel@sourceware.org to correct errors or typos.
20 .\" Set up some character translations and predefined strings. \*(-- will
24 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
26 .tr \(*W-
29 . ds -- \(*W-
31 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
32 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
39 . ds -- \|\(em\|
71 .\" Fear. Run. Save yourself. No user-serviceable parts.
[all …]
/third_party/skia/m133/third_party/externals/icu/scripts/
Dupdate.sh3 # Use of this source code is governed by a BSD-style license that can be
9 if [ $# -lt 1 ];
11 echo "Usage: "$0" version (e.g. '56-1')" >&2
17 # Makes ("68" "1") from "68-1".
18 readonly major_minor_version=(${version//-/ })
23 tmp_dir=~/tmp/icu-${version}
24 repo_url="https://github.com/unicode-org/icu/archive/refs/tags/release-${version}.tar.gz"
29 if ! wget --spider $repo_url 2>/dev/null; then
35 rm -rf $tmp_dir
36 mkdir -p $tmp_dir
[all …]
/third_party/rust/rust/compiler/rustc_codegen_gcc/src/
Dlib.rs2 …in libgccjit based on https://zpz.github.io/blog/overloading-equality-operator-in-cpp-class-hierar…
4 …TO (gcc's equivalent to Full LTO is -flto -flto-partition=one — https://documentation.suse.com/sbp…
46 mod archive; module
71 use rustc_ast::expand::allocator::AllocatorKind;
93 pub struct PrintOnPanic<F: Fn() -> String>(pub F);
95 impl<F: Fn() -> String> Drop for PrintOnPanic<F> {
109 fn locale_resource(&self) -> &'static str { in locale_resource()
135 …(&self, tcx: TyCtxt<'tcx>, metadata: EncodedMetadata, need_metadata_module: bool) -> Box<dyn Any> { in codegen_crate()
142 … ongoing_codegen: Box<dyn Any>, sess: &Session, _outputs: &OutputFilenames) -> Result<(CodegenResu… in join_codegen()
151 …fn link(&self, sess: &Session, codegen_results: CodegenResults, outputs: &OutputFilenames) -> Resu… in link()
[all …]
/third_party/rust/rust/compiler/rustc_codegen_llvm/src/
Dlib.rs7 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
28 use rustc_ast::expand::allocator::AllocatorKind;
51 pub mod archive; module
97 fn new(enabled: bool) -> Self { in new()
120 ) -> ModuleLlvm { in codegen_allocator()
131 ) -> (ModuleCodegen<ModuleLlvm>, u64) { in compile_codegen_unit()
139 ) -> TargetMachineFactoryFn<Self> { in target_machine_factory()
143 fn spawn_thread<F, T>(time_trace: bool, f: F) -> std::thread::JoinHandle<T> in spawn_thread()
145 F: FnOnce() -> T, in spawn_thread()
159 ) -> std::io::Result<std::thread::JoinHandle<T>> in spawn_named_thread()
[all …]
/third_party/opencl-headers/.github/workflows/
Dwindows.yml7 runs-on: windows-latest
16 - VER: v141
18 GEN: Ninja Multi-Config
22 NINJA_URL: https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip
28 - uses: actions/checkout@v2
30 - name: Cache Ninja install
31 if: matrix.GEN == 'Ninja Multi-Config'
32 id: ninja-install
37 key: ${{runner.os}}-ninja-${{env.NINJA_URL}}
39 - name: Install Ninja
[all …]
/third_party/libedit/
Daclocal.m41 # generated automatically by aclocal 1.17 -*- Autoconf -*-
3 # Copyright (C) 1996-2024 Free Software Foundation, Inc.
23 # Copyright (C) 2002-2024 Free Software Foundation, Inc.
30 # ----------------------------
43 # -----------------------------
50 # -------------------------------
59 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
61 # Copyright (C) 2001-2024 Free Software Foundation, Inc.
87 # are both prefixed by $srcdir. In an in-source build this is usually
101 # Another solution, used here, is to always expand $ac_aux_dir to an
[all …]
Dltmain.sh2 ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
3 ## by inline-source v2019-02-19.15
6 # Provide generalized library-building support services.
9 # Copyright (C) 1996-2019, 2021-2024 Free Software Foundation, Inc.
38 ## ------ ##
40 ## ------ ##
42 # Run './libtool --help' for help with using this script from the
46 ## ------------------------------- ##
48 ## ------------------------------- ##
52 # with bootstrap, so set those here where they can still be over-
[all …]
/third_party/libxml2/
D.gitlab-ci.yml3 # for libxslt, that's why we need git and libgcrypt-dev.
7 # RUN apt-get update && \
8 # apt-get upgrade -y && \
9 # apt-get install -y --no-install-recommends \
10 # curl git ca-certificates \
11 # autoconf automake libtool pkg-config \
13 # zlib1g-dev liblzma-dev libgcrypt-dev \
14 # python-dev python3-dev \
20 - |
21 ln -s /tests/xmlconf
[all …]
/third_party/libexif/
Daclocal.m41 # generated automatically by aclocal 1.17 -*- Autoconf -*-
3 # Copyright (C) 1996-2024 Free Software Foundation, Inc.
23 # Copyright (C) 2002-2024 Free Software Foundation, Inc.
30 # ----------------------------
43 # -----------------------------
50 # -------------------------------
59 # Copyright (C) 2011-2024 Free Software Foundation, Inc.
65 # AM_PROG_AR([ACT-IF-FAIL])
66 # -------------------------
67 # Try to determine the archiver interface, and trigger the ar-lib wrapper
[all …]
/third_party/curl/
Dltmain.sh2 ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
3 ## by inline-source v2019-02-19.15
6 # Provide generalized library-building support services.
9 # Copyright (C) 1996-2019, 2021-2022 Free Software Foundation, Inc.
34 VERSION="2.4.7 Debian-2.4.7-7"
38 ## ------ ##
40 ## ------ ##
42 # Run './libtool --help' for help with using this script from the
46 ## ------------------------------- ##
48 ## ------------------------------- ##
[all …]
Daclocal.m41 # generated automatically by aclocal 1.16.5 -*- Autoconf -*-
3 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
23 # Copyright (C) 2002-2021 Free Software Foundation, Inc.
30 # ----------------------------
43 # -----------------------------
50 # -------------------------------
59 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
61 # Copyright (C) 2001-2021 Free Software Foundation, Inc.
87 # are both prefixed by $srcdir. In an in-source build this is usually
101 # Another solution, used here, is to always expand $ac_aux_dir to an
[all …]
/third_party/libevdev/build-aux/
Dltmain.sh2 ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
3 ## by inline-source v2019-02-19.15
6 # Provide generalized library-building support services.
9 # Copyright (C) 1996-2019, 2021-2022 Free Software Foundation, Inc.
38 ## ------ ##
40 ## ------ ##
42 # Run './libtool --help' for help with using this script from the
46 ## ------------------------------- ##
48 ## ------------------------------- ##
52 # with bootstrap, so set those here where they can still be over-
[all …]
/third_party/skia/m133/third_party/externals/libpng/
Dltmain.sh2 ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
3 ## by inline-source v2019-02-19.15
6 # Provide generalized library-building support services.
9 # Copyright (C) 1996-2019, 2021-2022 Free Software Foundation, Inc.
38 ## ------ ##
40 ## ------ ##
42 # Run './libtool --help' for help with using this script from the
46 ## ------------------------------- ##
48 ## ------------------------------- ##
52 # with bootstrap, so set those here where they can still be over-
[all …]
Daclocal.m41 # generated automatically by aclocal 1.16.5 -*- Autoconf -*-
3 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
23 # Copyright (C) 2002-2021 Free Software Foundation, Inc.
30 # ----------------------------
43 # -----------------------------
50 # -------------------------------
59 # Figure out how to run the assembler. -*- Autoconf -*-
61 # Copyright (C) 2001-2021 Free Software Foundation, Inc.
68 # ----------
76 _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
[all …]
/third_party/cares/
Daclocal.m41 # generated automatically by aclocal 1.16.5 -*- Autoconf -*-
3 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
23 # Copyright (C) 2002-2021 Free Software Foundation, Inc.
30 # ----------------------------
43 # -----------------------------
50 # -------------------------------
59 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
61 # Copyright (C) 2001-2021 Free Software Foundation, Inc.
87 # are both prefixed by $srcdir. In an in-source build this is usually
101 # Another solution, used here, is to always expand $ac_aux_dir to an
[all …]

123456