Home
last modified time | relevance | path

Searched +full:- +full:- +full:exclude (Results 1 – 25 of 1080) sorted by relevance

12345678910>>...44

/third_party/protobuf/java/lite/
Dpom.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
6 <artifactId>protobuf-parent</artifactId>
10 <artifactId>protobuf-javalite</artifactId>
48 <!-- Include core protos in the bundle as resources -->
78 <artifactId>maven-resources-plugin</artifactId>
82 <id>copy-source-files</id>
83 <phase>generate-sources</phase>
85 <goal>copy-resources</goal>
93 <!-- Keep in sync with //java/core:BUILD -->
[all …]
/third_party/noto-cjk/
Dgh-release-noto-cjk-sans.sh4 # we have everything in this single repo https://github.com/googlefonts/noto-cjk
5 # This script will make a new release for Sans. To do a Serif release use gh-release-noto-cjk-serif…
10 …guide](https://github.com/googlefonts/noto-cjk/tree/main/Sans#downloading-noto-sans-cjk)." > Sans/…
13 zip -r -v 01_NotoSansCJK-OTF-VF.zip Variable/OTF Variable/OTC/NotoSansCJK-VF.otf.ttc LICENSE --excl…
14 zip -r -v 02_NotoSansCJK-TTF-VF.zip Variable/TTF Variable/OTC/NotoSansCJK-VF.ttf.ttc LICENSE --excl…
15 zip -j -r -v 03_NotoSansCJK-OTC.zip OTC LICENSE --exclude "*.zip" "*.DS_Store" "OTC/NotoSansCJK.ttc"
16 zip -r -v 04_NotoSansCJK-OTF.zip OTF LICENSE --exclude "*.zip" "*.DS_Store"
17 zip -r -v 05_NotoSansCJK-SubsetOTF.zip SubsetOTF LICENSE --exclude "*.zip" "*.DS_Store"
18 zip -j -r -v 06_NotoSansCJKjp.zip OTF/Japanese LICENSE --exclude "*.zip" "*.DS_Store"
19 zip -j -r -v 07_NotoSansCJKkr.zip OTF/Korean LICENSE --exclude "*.zip" "*.DS_Store"
[all …]
Dgh-release-noto-cjk-serif.sh4 # we have everything in this single repo https://github.com/googlefonts/noto-cjk
5 # This script will make a new release for Serif. To do a Sans release use gh-release-noto-cjk-sans.…
10 …uide](https://github.com/googlefonts/noto-cjk/tree/main/Serif#downloading-noto-serif-cjk)." > Seri…
13 zip -r -v 02_NotoSerifCJK-OTF-VF.zip Variable/OTF Variable/OTC/NotoSerifCJK-VF.otf.ttc LICENSE --ex…
14 zip -r -v 03_NotoSerifCJK-TTF-VF.zip Variable/TTF Variable/OTC/NotoSerifCJK-VF.ttf.ttc LICENSE --ex…
15 zip -r -v 04_NotoSerifCJKOTC.zip OTC LICENSE --exclude "*.zip" "*.DS_Store" "OTC/NotoSerifCJK.ttc"
16 zip -r -v 05_NotoSerifCJKOTF.zip OTF LICENSE --exclude "*.zip" "*.DS_Store"
17 zip -r -v 06_NotoSerifCJKSubsetOTF.zip SubsetOTF LICENSE --exclude "*.zip" "*.DS_Store"
18 zip -r -v 07_NotoSerifCJKjp.zip OTF/Japanese LICENSE --exclude "*.zip" "*.DS_Store"
19 zip -r -v 08_NotoSerifCJKkr.zip OTF/Korean LICENSE --exclude "*.zip" "*.DS_Store"
[all …]
/third_party/protobuf/python/
DMANIFEST.in2 exclude google/protobuf/internal/*_pb2.py
3 exclude google/protobuf/internal/*_test.py
4 exclude google/protobuf/internal/*.proto
5 exclude google/protobuf/internal/test_util.py
7 recursive-include google *.cc
8 recursive-include google *.h
10 recursive-exclude google *_test.py
11 recursive-exclude google *_test.proto
12 recursive-exclude google unittest*_pb2.py
14 global-exclude *.dll
[all …]
/third_party/vk-gl-cts/scripts/
Dbuild_android_mustpass.py1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
5 # --------------------------------------
13 # http://www.apache.org/licenses/LICENSE-2.0
21 #-------------------------------------------------------------------------
26 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists,…
37 http://www.apache.org/licenses/LICENSE-2.0
50 EGL_MODULE = getModuleByName("dEQP-EGL")
51 GLES2_MODULE = getModuleByName("dEQP-GLES2")
52 GLES3_MODULE = getModuleByName("dEQP-GLES3")
[all …]
/third_party/mindspore/mindspore-src/source/scripts/pre_commit/githooks/
Dpre-push8 # http://www.apache.org/licenses/LICENSE-2.0
20 CURR_DIR=$(dirname "${BASH_SOURCE-$0}")
22 cd -P "${CURR_DIR}" || exit
23 pwd -P
26 cd -P "${CURR_DIR}/../../../" || exit
27 pwd -P
30 cd -P "${CURR_DIR}/../../../../" || exit
31 pwd -P
35 uname_s=$(uname -s)
41 elif [ "$os_name" == "MINGW" ]; then # MINGW, windows, git-bash
[all …]
/third_party/rust/crates/clap/tests/builder/
Dindices.rs8 Arg::new("exclude") in indices_mult_opts()
20 .try_get_matches_from(vec!["ind", "-e", "A", "B", "-i", "B", "C", "-e", "C"]) in indices_mult_opts()
24 m.indices_of("exclude").unwrap().collect::<Vec<_>>(), in indices_mult_opts()
35 Arg::new("exclude") in index_mult_opts()
47 .try_get_matches_from(vec!["ind", "-e", "A", "B", "-i", "B", "C", "-e", "C"]) in index_mult_opts()
50 assert_eq!(m.index_of("exclude"), Some(2)); in index_mult_opts()
58 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in index_flag()
60 .try_get_matches_from(vec!["ind", "-e", "-i"]) in index_flag()
63 assert_eq!(m.index_of("exclude"), Some(1)); in index_flag()
71 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in index_flags()
[all …]
/third_party/skia/third_party/externals/icu/filters/
Dflutter.json2 // Use of this source code is governed by a BSD-style license that can be
25 "conversion_mappings": { "filterType": "exclude" },
26 "coll_tree": { "filterType": "exclude" },
27 "coll_ucadata": { "filterType": "exclude" },
28 "confusables": { "filterType": "exclude" },
29 "curr_tree": { "filterType": "exclude" },
30 "lang_tree": { "filterType": "exclude" },
31 "locales_tree": { "filterType": "exclude" },
34 "rbnf_tree": { "filterType": "exclude" },
35 "rbnf_index": { "filterType": "exclude" },
[all …]
Dandroid_extra.json2 // Use of this source code is governed by a BSD-style license that can be
15 "brkitr_dictionaries": { "filterType": "exclude" },
16 "brkitr_rules": { "filterType": "exclude" },
17 "brkitr_tree": { "filterType": "exclude" },
18 "cnvalias": { "filterType": "exclude" },
19 "coll_index": { "filterType": "exclude" },
20 "coll_ucadata": { "filterType": "exclude" },
21 "confusables": { "filterType": "exclude" },
22 "conversion_mappings": { "filterType": "exclude" },
23 "curr_supplemental": { "filterType": "exclude" },
[all …]
/third_party/icu/icu4j/main/classes/core/
Dbuild.xml1 <!--
5 * Copyright (C) 2009-2015, International Business Machines Corporation and
8 -->
10 <property file="build-local.properties"/>
12 <import file="${shared.dir}/build/common-targets.xml"/>
17 <property name="jar.name" value="icu4j-${ant.project.name}.jar"/>
18 <property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/>
20 <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/>
22 …<target name="build-all" depends="@build-all" description="Build the project including all depende…
28 …<target name="copy" depends="@copy, copy-data" description="Copy non-java runtime files to the pro…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/
Dmodule.modulemap26 // Exclude these; they're intended to be included into only a single
28 exclude header "CodeGen/LinkAllAsmWriterComponents.h"
29 exclude header "CodeGen/LinkAllCodegenComponents.h"
38 // Doing so causes a linker error in clang-format.
108 exclude header "DebugInfo/PDB/DIA/DIADataStream.h"
109 exclude header "DebugInfo/PDB/DIA/DIAEnumDebugStreams.h"
110 exclude header "DebugInfo/PDB/DIA/DIAEnumFrameData.h"
111 exclude header "DebugInfo/PDB/DIA/DIAEnumInjectedSources.h"
112 exclude header "DebugInfo/PDB/DIA/DIAEnumLineNumbers.h"
113 exclude header "DebugInfo/PDB/DIA/DIAEnumSectionContribs.h"
[all …]
/third_party/vk-gl-cts/external/openglcts/scripts/
Dbuild_mustpass.py1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
12 # http://www.apache.org/licenses/LICENSE-2.0
20 #-------------------------------------------------------------------------
27 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists
38 /* Copyright (C) 2016-2017 The Khronos Group Inc
44 * http://www.apache.org/licenses/LICENSE-2.0
55 #-------------------------------------------------- ES MUSTPASS------------------------------------…
89 EGL_MODULE = getModuleByName("dEQP-EGL")
90 ES2CTS_MODULE = getModuleByName("dEQP-GLES2")
[all …]
/third_party/python/Lib/distutils/tests/
Dtest_filelist.py18 exclude xo
21 global-include *.x
22 global-include *.txt
23 global-exclude *.tmp
24 recursive-include f *.oo
25 recursive-exclude global *.x
75 l('.hg/last-message.txt'),
81 l('dir/graft-one'),
95 l('.hg/last-message.txt'),
99 l('dir/graft-one'),
[all …]
/third_party/typescript/src/testRunner/unittests/config/
DconvertTypeAcquisitionFromJson.ts21 …Error.code, expectedError.code, `Expected error-code: ${JSON.stringify(expectedError.code)}. Actua…
22 …ry, expectedError.category, `Expected error-category: ${JSON.stringify(expectedError.category)}. A…
59 exclude: ["0.js", "1.js"]
68 exclude: ["0.js", "1.js"]
82 exclude: ["0.js", "1.js"]
91 exclude: ["0.js", "1.js"]
110 exclude: []
132 exclude: []
151 exclude: []
165 exclude: ["0.js"]
[all …]
/third_party/vixl/test/aarch64/
Dtest-api-aarch64.cc31 #include "test-runner.h"
32 #include "test-utils.h"
34 #include "aarch64/macro-assembler-aarch64.h"
35 #include "aarch64/registers-aarch64.h"
36 #include "aarch64/simulator-aarch64.h"
37 #include "aarch64/test-utils-aarch64.h"
56 int leading_sign_bits = width - non_sign_bits - 1; in TEST()
75 Helper::Check(-1, 0); // 0b---- in TEST()
76 Helper::Check(-2, 1); // 0b---0 in TEST()
77 Helper::Check(-3, 2); // 0b--01 in TEST()
[all …]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
DPrefixTree.java8 * http://www.apache.org/licenses/LICENSE-2.0
47 * termination. For example, the ranges {@code {"1[0-3]", "1234", "56x"}} will result in the
48 * prefixes {@code {"1[0-3]", "56x"}}, since {@code "1[0-3]"} contains {@code "12"}, which is a
69 * paths in "exclude". For example:
79 * <p>Caveat: In cases where the {@code include} and {@code exclude} ranges overlap, the shortest
87 public static PrefixTree minimal(RangeTree include, RangeTree exclude, int minLength) { in minimal() argument
88 checkArgument(include.intersect(exclude).isEmpty(), "ranges must be disjoint"); in minimal()
97 exclude = exclude.subtract(prefix.retainFrom(exclude)); in minimal()
103 if (prefix.isIdentity() || exclude.isEmpty()) { in minimal()
104 // Either we already accept anything, or there is nothing to exclude. in minimal()
[all …]
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
Dpom.xml1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst…
2 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8 <version>0.2.0-SNAPSHOT</version>
11 <version>0.2.0-SNAPSHOT</version>
27 <artifactId>maven-compiler-plugin</artifactId>
33 <exclude>**/*Test*.java</exclude>
39 <exclude>org/brotli/dec/SetDictionaryTest.java</exclude>
45 <artifactId>maven-surefire-plugin</artifactId>
46 <version>3.0.0-M3</version>
55 <artifactId>maven-source-plugin</artifactId>
[all …]
/third_party/skia/third_party/externals/icu/source/tools/genrb/
Dfilterrb.h49 EXCLUDE enumerator
61 * EXCLUDE = reject the whole subtree
75 // -/alabama
77 // -/fornia/hawaii
78 // -/mississippi
81 // -/mississippi/*/iowa
89 * included: EXCLUDE
100 * included: EXCLUDE
104 * included: EXCLUDE
117 * included: EXCLUDE
[all …]
/third_party/icu/icu4c/source/tools/genrb/
Dfilterrb.h49 EXCLUDE enumerator
61 * EXCLUDE = reject the whole subtree
75 // -/alabama
77 // -/fornia/hawaii
78 // -/mississippi
81 // -/mississippi/*/iowa
89 * included: EXCLUDE
100 * included: EXCLUDE
104 * included: EXCLUDE
117 * included: EXCLUDE
[all …]
/third_party/skia/third_party/externals/tint/tools/src/glob/
Dglob.go7 // https://www.apache.org/licenses/LICENSE-2.0
67 // Each path pattern is considered in turn to either include or exclude the
68 // file path for license scanning. Pattern use forward-slashes '/' for
70 // ? - matches any single non-separator character
71 // * - matches any sequence of non-separator characters
72 // ** - matches any sequence of characters including separators
83 // { "exclude": [ "out/*", "build/*" ] },
122 // cond is the value to return if the rule doesn't either include or exclude.
130 // { "include": [ ... ] } or { "exclude": [ ... ] }
134 Exclude []string
[all …]
/third_party/skia/
Dpublic.bzl31 srcs: struct(include=[], exclude=[])
33 Equivalent of glob(srcs.include, exclude=srcs.exclude)
36 if hasattr(srcs, "exclude"):
37 return native.glob(srcs.include, exclude = srcs.exclude)
55 exclude = [
121 return ["-msse2"]
123 return ["-mssse3"]
125 return ["-msse4.1"]
127 return ["-msse4.2"]
129 return ["-mavx"]
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceRangeSpec.cpp1 //===- subzero/src/IceRangeSpec.cpp - Include/exclude specification -------===//
8 //===----------------------------------------------------------------------===//
12 /// match against. This is specified as a comma-separated list of clauses.
13 /// Each clause optionally starts with '-' to indicate exclusion instead of
23 //===----------------------------------------------------------------------===//
40 /// - "X" is treated as "X:X+1".
41 /// - ":Y" is treated as "0:Y".
42 /// - "X:" is treated as "X:inf"
69 /// Helper function to add one token to the include or exclude set. The token
74 // Mark that an include or exclude was explicitly given. This affects the in record()
[all …]
/third_party/skia/third_party/externals/angle2/build_overrides/
Dgtest.gni2 # Use of this source code is governed by a BSD-style license that can be
7 # Exclude support for registering main function in multi-process tests.
10 # Exclude support for platform-specific operations across unit tests.
13 # Exclude support for testing Objective C code on OS X and iOS.
16 # Exclude support for flushing coverage files on iOS.
/third_party/vk-gl-cts/external/vulkancts/scripts/
Dbuild_mustpass.py1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
5 # ----------
13 # http://www.apache.org/licenses/LICENSE-2.0
21 #-------------------------------------------------------------------------
32 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists,…
39 http://www.apache.org/licenses/LICENSE-2.0
50 VULKAN_MODULE = getModuleByName("dEQP-VK")
51 VULKAN_SC_MODULE = getModuleByName("dEQP-VKSC")
60 exclude("test-issues.txt"),
[all …]
/third_party/skia/third_party/externals/spirv-tools/build_overrides/
Dgtest.gni7 # https://www.apache.org/licenses/LICENSE-2.0
15 # Exclude support for registering main function in multi-process tests.
18 # Exclude support for platform-specific operations across unit tests.
21 # Exclude support for testing Objective C code on OS X and iOS.
24 # Exclude support for flushing coverage files on iOS.

12345678910>>...44