| /external/clang/test/Modules/ |
| D | relative-dep-gen.cpp | 2 // RUN: rm -rf %t 5 …-cc1 -fno-implicit-modules -fmodule-name=relative-dep-gen -emit-module -x c++ Inputs/relative-dep-… 6 …-cc1 -fno-implicit-modules -fmodule-map-file=Inputs/relative-dep-gen.modulemap -fmodule-file=%t/mo… 7 …-cc1 -fno-implicit-modules -fmodule-map-file=Inputs/relative-dep-gen.modulemap -dependency-file %t… 9 // RUN: FileCheck --check-prefix=CHECK-BUILD %s < %t/build.d 10 // RUN: FileCheck --check-prefix=CHECK-USE %s < %t/use-explicit.d 11 // RUN: FileCheck --check-prefix=CHECK-USE %s < %t/use-implicit.d 13 …-cc1 -fno-implicit-modules -fmodule-name=relative-dep-gen -emit-module -x c++ Inputs/relative-dep-… 14 …-cc1 -fno-implicit-modules -fmodule-map-file=Inputs/relative-dep-gen-cwd.modulemap -fmodule-file=%… 15 …-cc1 -fno-implicit-modules -fmodule-map-file=Inputs/relative-dep-gen-cwd.modulemap -dependency-fil… [all …]
|
| D | dependency-gen.modulemap | 2 // RUN: rm -rf %t 4 …-I. -x c++ -fmodule-name=test -fmodules -emit-module -fno-validate-pch -fmodules-strict-decluse %s… 6 …-I. -x c++ -fmodule-name=test-base -fmodules -emit-module -fno-validate-pch -fmodules-strict-declu… 7 …-I. -x c++ -fmodule-name=test -fmodules -emit-module -fno-validate-pch -fmodules-strict-decluse -f… 9 …-I. -x c++ -fmodules -include Inputs/dependency-gen.h -x c++ /dev/null -fmodule-file=%t/explicit.p… 12 header "Inputs/dependency-gen.h" 13 use "test-base" 14 use "test-base2" 20 // IMPLICIT-DAG: {{[/\\]}}dependency-gen.modulemap 21 // IMPLICIT-DAG: {{ |\.[/\\]}}Inputs{{[/\\]}}dependency-gen-base.modulemap [all …]
|
| D | dependency-gen.m | 1 // RUN: rm -rf %t-mcp 2 // RUN: mkdir -p %t-mcp 4 …-x objective-c -isystem %S/Inputs/System/usr/include -dependency-file %t.d.1 -MT %s.o -I %S/Inputs… 6 // CHECK: dependency-gen.m 7 // CHECK: Inputs{{.}}module.map 8 // CHECK: Inputs{{.}}diamond_top.h 9 // CHECK-NOT: usr{{.}}include{{.}}module.map 10 // CHECK-NOT: stdint.h 13 …-x objective-c -isystem %S/Inputs/System/usr/include -dependency-file %t.d.2 -MT %s.o -I %S/Inputs… 14 // RUN: FileCheck %s -check-prefix=CHECK-SYS < %t.d.2 [all …]
|
| D | dependency-gen-pch.m | 1 // RUN: rm -rf %t-mcp 2 // RUN: mkdir -p %t-mcp 3 // REQUIRES: x86-registered-target 5 …-isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -module-file-deps -dependency-file %t.d -… 7 // CHECK: dependency-gen-pch.m.o 8 // CHECK-NEXT: dependency-gen-pch.m 9 // CHECK-NEXT: Inputs{{.}}module.map 10 // CHECK-NEXT: diamond_top.pcm 11 // CHECK-NEXT: Inputs{{.}}diamond_top.h
|
| /external/google-cloud-java/.kokoro/ |
| D | dependencies.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -eo pipefail 17 shopt -s nullglob 28 java -version 36 java -version 2>&1 | grep "version" \ 37 | sed -E 's/^.*"(.*?)".*$/\1/g' \ 38 | sed -E 's/^(1\.[0-9]\.0).*$/\1/g' 44 echo -n "-Xmx1024m" 46 echo -n "-Xmx1024m -XX:MaxPermSize=128m" 54 mvn install -B -V -ntp \ [all …]
|
| /external/clang/test/Driver/ |
| D | pch-deps.c | 1 // RUN: %clang -x c-header %s -o %t.pch -MMD -MT dependencies -MF %t.d -### 2> %t 2 // RUN: FileCheck %s -input-file=%t 3 // CHECK: -emit-pch 4 // CHECK: -dependency-file 5 // CHECK: -module-file-deps 7 // RUN: %clang -c %s -o %t -MMD -MT dependencies -MF %t.d -### 2> %t 8 // RUN: FileCheck %s -check-prefix=CHECK-NOPCH -input-file=%t 9 // CHECK-NOPCH: -dependency-file 10 // CHECK-NOPCH-NOT: -module-file-deps 12 // RUN: %clang -x c-header %s -o %t.pch -MMD -MT dependencies -MF %t.d \ [all …]
|
| D | Wp-args.c | 1 // Check that we extract -MD from '-Wp,-MD,FOO', which is used by a number of 4 // RUN: %clang -target i386-pc-linux-gnu -### \ 5 // RUN: -Wp,-MD,FOO.d -fsyntax-only %s 2> %t 8 // CHECK: "-cc1" 9 // CHECK-NOT: -MD 10 // CHECK: "-dependency-file" "FOO.d" 11 // CHECK: "-MT" 15 // RUN: %clang -target i386-pc-linux-gnu -### \ 16 // RUN: -Wp,-MMD -fsyntax-only %s 2> %t 17 // RUN: FileCheck -check-prefix MMD < %t %s [all …]
|
| /external/tensorflow/tensorflow/tools/tensorflow_builder/compat_checker/ |
| D | compat_checker.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 """Checks if a set of configuration(s) is version and dependency compatible.""" 70 if i == len(v_short) - 1: 71 if v_long[i + 1:] == ["0"]*(len(v_long) - 1 - i): 114 """Class that checks configuration versions and dependency compatibilities. 117 against supported versions and dependency rules defined in `.ini` config file. 118 For project `TensorFlow Builder`, it functions as a sub-module for the builder 126 `_Reqs` represents a single version or dependency requirement specified in 128 to help organize and identify version and dependency compatibility for a 133 """Initializes a version or dependency requirement object. [all …]
|
| /external/llvm/lib/CodeGen/ |
| D | ImplicitNullChecks.cpp | 1 //===-- ImplicitNullChecks.cpp - Fold null checks into memory accesses ----===// 8 //===----------------------------------------------------------------------===// 26 //===----------------------------------------------------------------------===// 50 static cl::opt<int> PageSize("imp-null-check-page-size", 54 #define DEBUG_TYPE "implicit-null-checks" 62 /// Represents one null check that can be made implicit. 64 // The memory operation the null check can be folded into. 67 // The instruction actually doing the null check (Ptr != 0). 70 // The block the check resides in. 73 // The block branched to if the pointer is non-null. [all …]
|
| /external/mbedtls/tests/scripts/ |
| D | generate_test_code.py | 5 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 16 ------ 24 --------------------- 35 that macro should be specified as a dependency of the test. 48 enc_dec_buf:MBEDTLS_CIPHER_AES_128_GCM:"AES-128-GCM":128:8:-1 51 --------------- 55 of functions and function dependencies. Check any existing functions 59 ---------- 61 - Generating test_suite_<module>[.<optional sub module>].c file 63 - Building each source file into executables. [all …]
|
| /external/openthread/third_party/mbedtls/repo/tests/scripts/ |
| D | generate_test_code.py | 5 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 16 ------ 24 --------------------- 35 that macro should be specified as a dependency of the test. 48 enc_dec_buf:MBEDTLS_CIPHER_AES_128_GCM:"AES-128-GCM":128:8:-1 51 --------------- 55 of functions and function dependencies. Check any existing functions 59 ---------- 61 - Generating test_suite_<module>[.<optional sub module>].c file 63 - Building each source file into executables. [all …]
|
| /external/harfbuzz_ng/ |
| D | meson.build | 5 'cpp_eh=none', # Just to support msvc, we are passing -fno-exceptions also anyway 8 …'wrap_mode=nofallback', # Use --wrap-mode=default to revert, https://github.com/harfbuzz/harfbuzz/… 23 null_dep = dependency('', required: false) 26 if ['clang', 'clang-cl'].contains(cpp.get_id()) and cpp.get_define('_MSC_FULL_VER') != '' 27 add_project_arguments('-std=c++14', language: 'cpp') 36 '/wd4244', # lossy type conversion (e.g. double -> int) 37 cpp.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8 45 '-Bsymbolic-functions' 49 '-fno-exceptions', 50 '-fno-rtti', [all …]
|
| /external/linux-kselftest/tools/testing/selftests/ |
| D | kselftest_deps.sh | 2 # SPDX-License-Identifier: GPL-2.0 13 echo -e "Usage: $0 -[p] <compiler> [test_name]\n" 14 echo -e "\tkselftest_deps.sh [-p] gcc" 15 echo -e "\tkselftest_deps.sh [-p] gcc vm" 16 echo -e "\tkselftest_deps.sh [-p] aarch64-linux-gnu-gcc" 17 echo -e "\tkselftest_deps.sh [-p] aarch64-linux-gnu-gcc vm\n" 18 echo "- Should be run in selftests directory in the kernel repo." 19 echo "- Checks if Kselftests can be built/cross-built on a system." 20 echo "- Parses all test/sub-test Makefile to find library dependencies." 21 echo "- Runs compile test on a trivial C file with LDLIBS specified" [all …]
|
| /external/pigweed/pw_build_mcuxpresso/py/pw_build_mcuxpresso/ |
| D | components.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 24 ) -> bool: 25 """Check whether element is compatible with the given core. 28 element: element to check. 49 ) -> tuple[xml.etree.ElementTree.Element | None, pathlib.Path | None]: 83 ) -> list[str]: 84 """Parse pre-processor definitions for a component. 108 def _parse_define(define: xml.etree.ElementTree.Element) -> str: 133 ) -> list[pathlib.Path]: 173 ) -> pathlib.Path: [all …]
|
| /external/autotest/client/common_lib/hosts/ |
| D | repair.py | 2 # Use of this source code is governed by a BSD-style license that can be 12 * `Verifier`: A class representing a single verification check. 14 a failed verification check. 38 _HOSTNAME_PATTERN = 'chromeos[0-9]-row[0-9]+[a-z]?-rack[0-9]+[a-z]?-host[0-9]+' 42 # True - verifier run and passed 43 # False - verifier run and failed 44 # None - verifier did not run or dependency failed 69 '_DependencyFailure', ('dependency', 'error', 'tag')) 73 '_NonCriticalDependencyFailure', ('dependency', 'error', 'tag')) 81 failure being passed back from a verification dependency. That is, [all …]
|
| /external/mesa3d/ |
| D | meson.build | 1 # Copyright © 2017-2020 Intel Corporation 29 'b_ndebug=if-release', 42 null_dep = dependency('', required : false) 52 '-D__STDC_CONSTANT_MACROS', 53 '-D__STDC_FORMAT_MACROS', 54 '-D__STDC_LIMIT_MACROS', 55 '-DPACKAGE_VERSION="@0@"'.format(meson.project_version()), 56 '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/-/issues"', 64 with_moltenvk_dir = get_option('moltenvk-dir') 65 with_vulkan_icd_dir = get_option('vulkan-icd-dir') [all …]
|
| /external/apache-xml/test/tests/bugzilla/ |
| D | Bugzilla3489.xsl | 4 extension-element-prefixes="redirect"> 5 <!-- Reproducing Bugzilla 3489 --> 6 <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/> 7 <xsl:strip-space elements="*"/> 8 <xsl:param name="output-dir"/> 11 <xsl:apply-templates/> 19 <xsl:value-of select="concat(/workspace/@cvsdir, '/')"/> 22 <xsl:value-of select="cvs/@module"/> 25 <xsl:value-of select="@srcdir"/> 30 <xsl:value-of select="concat('Creating Gump buildfile for ', @name)"/> [all …]
|
| /external/bazelbuild-rules_rust/test/unit/pipelined_compilation/ |
| D | pipelined_compilation_test.bzl | 24 # Both actions should use the same --emit= 25 assert_argv_contains(env, rlib_action, "--emit=dep-info,link,metadata") 26 assert_argv_contains(env, metadata_action, "--emit=dep-info,link,metadata") 42 # Only the action building metadata should contain --rustc-quit-on-rmeta 43 …assert_list_contains_adjacent_elements_not(env, rlib_action.argv, ["--rustc-quit-on-rmeta", "true"… 44 …assert_list_contains_adjacent_elements(env, metadata_action.argv, ["--rustc-quit-on-rmeta", "true"… 46 # Check that both actions refer to the metadata of :first, not the rlib 47 …extern_metadata = [arg for arg in metadata_action.argv if arg.startswith("--extern=first=") and "l… 51 "did not find a --extern=first=*.rmeta but expected one", 53 …extern_rlib = [arg for arg in rlib_action.argv if arg.startswith("--extern=first=") and "libfirst"… [all …]
|
| /external/perfetto/tools/ |
| D | install-build-deps | 8 # http://www.apache.org/licenses/LICENSE-2.0 41 # root (to avoid ending up with buildtools/protobuf/protobuf-1.2.3/... and have 49 class Dependency: class 67 'buildtools/mac/clang-format', 70 'buildtools/linux64/clang-format', 73 'buildtools/win/clang-format.exe', 80 # GN. From https://chrome-infra-packages.appspot.com/dl/gn/gn/. 82 Dependency( 84 'https://storage.googleapis.com/perfetto/gn-mac-1968-0725d782', 87 Dependency( [all …]
|
| /external/libxml2/ |
| D | meson.build | 16 r = run_command('git', 'describe', check: false) 18 v_extra = '-GIT' + r.stdout().strip() 46 xml_cflags = '-DLIBXML_STATIC' 47 libxml2_cflags += '-DLIBXML_STATIC' 48 dep_args += '-DLIBXML_STATIC' 75 want_thread_alloc = get_option('thread-alloc') 84 # TODO: Options should be three-valued: "yes", "no", default 92 message('-Dc14n=true overrides -Doutput') 96 message('-Dc14n=true overrides -Dxpath') 103 message('-Dschemas=true overrides -Dpattern') [all …]
|
| /external/clang/test/Preprocessor/ |
| D | pr13851.c | 1 // Check that -E -M -MF does not cause an "argument unused" error, by adding 2 // -Werror to the clang invocation. Also check the dependency output, if any. 3 // RUN: %clang -Werror -E -M -MF %t-M.d %s 4 // RUN: FileCheck --input-file=%t-M.d %s 5 // CHECK: pr13851.o: 6 // CHECK: pr13851.c 8 // Check that -E -MM -MF does not cause an "argument unused" error, by adding 9 // -Werror to the clang invocation. Also check the dependency output, if any. 10 // RUN: %clang -Werror -E -MM -MF %t-MM.d %s 11 // RUN: FileCheck --input-file=%t-MM.d %s
|
| /external/skia/site/docs/dev/contrib/ |
| D | cqkeywords.md | 2 --- 6 --- 18 ------ 24 Run](https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/G5-X0_tfmok) 29 The CQ will run through its list of verifiers (reviewer check, trybots, tree check, 30 presubmit check), and will close the issue instead of committing it. 33 No-Dependency-Checks 34 -------------------- 36 No-Dependency-Checks: true 38 The CQ rejects patchsets with open dependencies. An open dependency exists when a CL [all …]
|
| /external/vulkan-validation-layers/build-android/ |
| D | update_external_sources_android.bat | 2 REM Update source for glslang, spirv-tools, and shaderc 13 REM http://www.apache.org/licenses/LICENSE-2.0 31 echo Dependency check failed: 39 echo Dependency check failed: 41 echo Git for Windows can be downloaded here: https://git-scm.com/download/win 46 where /q ndk-build.cmd 48 echo Dependency check failed: 49 echo ndk-build.cmd not found 51 echo Install and ensure ndk-build.cmd makes it into your PATH 59 echo Creating and/or updating glslang, spirv-tools, spirv-headers, shaderc, vulkan-headers, vulkan-… [all …]
|
| /external/grpc-grpc/third_party/ |
| D | README.md | 1 # Third-party libraries 3 gRPC depends on several third-party libraries, their source code is available 8 - IMPORTANT: whenever possible, try to only update to a stable release of a library (= not to maste… 9 …makes gRPC installation harder for users, as it forces them to always build the dependency from so… 12 - bazel BUILD uses a different dependency model - whenever updating a submodule, also update the re… 13 non-bazel builds stay in sync (this is actually enforced by a sanity check in some cases) 15 ## Considerations when adding a new third-party dependency 17 - gRPC C++ needs to stay buildable/installable even if the submodules are not present (e.g. the tar… 20 …- CAVEAT: upb is an exception here because of its lack of cmake support. Therefore, third_party/up… 22 - Adding a new dependency is a lot of work (both for us and for the users). [all …]
|
| /external/cronet/components/cronet/tools/ |
| D | check_cronet_dependencies.py | 3 # Use of this source code is governed by a BSD-style license that can be 5 """check_cronet_dependencies.py - Keep track of Cronet's dependencies.""" 16 from util import build_utils # pylint: disable=wrong-import-position 19 def normalize_third_party_dep(dependency): argument 21 if third_party_str not in dependency: 22 raise ValueError('Dependency is not third_party dependency') 23 root_end_index = dependency.rfind(third_party_str) + len(third_party_str) 24 dependency_name_end_index = dependency.find("/", root_end_index) 25 if dependency_name_end_index == -1: 26 return dependency [all …]
|