Home
last modified time | relevance | path

Searched refs:exclude (Results 1 – 25 of 952) sorted by relevance

12345678910>>...39

/external/autotest/server/site_tests/cheets_CTS_Instant/
Dcontrol.9.0_r14.x86.all.CtsAccessibilityServiceTestCases_-_CtsAutoFillServiceTestCases26exclude-filter', 'CtsPreferenceTestCases', '--exclude-filter', 'CtsPrintTestCases', '--exclude-fil…
Dcontrol.9.0_r14.arm.all.CtsAccessibilityServiceTestCases_-_CtsAutoFillServiceTestCases26exclude-filter', 'CtsPreferenceTestCases', '--exclude-filter', 'CtsPrintTestCases', '--exclude-fil…
Dcontrol.9.0_r14.x86.all.CtsSampleDeviceTestCases_-_CtsWindowManagerDeviceTestCases26exclude-filter', 'CtsPreferenceTestCases', '--exclude-filter', 'CtsPrintTestCases', '--exclude-fil…
Dcontrol.9.0_r14.arm.all.CtsSampleDeviceTestCases_-_CtsWindowManagerDeviceTestCases26exclude-filter', 'CtsPreferenceTestCases', '--exclude-filter', 'CtsPrintTestCases', '--exclude-fil…
Dcontrol.9.0_r14.arm.all.CtsBackgroundRestrictionsTestCases_-_CtsPrintTestCases26exclude-filter', 'CtsTextTestCases', '--exclude-filter', 'CtsAnimationTestCases', '--exclude-filte…
Dcontrol.9.0_r14.x86.all.CtsBackgroundRestrictionsTestCases_-_CtsPrintTestCases26exclude-filter', 'CtsTextTestCases', '--exclude-filter', 'CtsAnimationTestCases', '--exclude-filte…
Dcontrol.x86.waivers30 # approximate by --module and --exclude of a few expensive classes
33 '--exclude-filter', 'CtsMediaTestCases android.media.cts.AudioNativeTest',
34 '--exclude-filter', 'CtsMediaTestCases android.media.cts.AudioRecordTest',
35 … '--exclude-filter', 'CtsMediaTestCases android.media.cts.EncodeVirtualDisplayWithCompositionTest',
36 '--exclude-filter', 'CtsMediaTestCases android.media.cts.EncoderTest',
37 '--exclude-filter', 'CtsMediaTestCases android.media.cts.MediaDrmClearkeyTest',
Dcontrol.9.0_dev.arm.waivers30 # approximate by --module and --exclude of a few expensive classes
33 '--exclude-filter', 'CtsMediaTestCases android.media.cts.AudioNativeTest',
34 '--exclude-filter', 'CtsMediaTestCases android.media.cts.AudioRecordTest',
35 … '--exclude-filter', 'CtsMediaTestCases android.media.cts.EncodeVirtualDisplayWithCompositionTest',
36 '--exclude-filter', 'CtsMediaTestCases android.media.cts.EncoderTest',
37 '--exclude-filter', 'CtsMediaTestCases android.media.cts.MediaDrmClearkeyTest',
/external/deqp/scripts/
Dbuild_android_mustpass.py26 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists,…
59 exclude("egl-test-issues.txt"),
60 exclude("egl-internal-api-tests.txt"),
61 exclude("egl-manual-robustness.txt"),
62 exclude("egl-driver-issues.txt"),
63 exclude("egl-temp-excluded.txt")]
85 exclude("gles2-test-issues.txt"),
86 exclude("gles2-failures.txt"),
87 exclude("gles2-temp-excluded.txt"),
111 filters = MASTER_GLES2_COMMON_FILTERS + [exclude("gles2-master-2020-03-01.txt")],
[all …]
/external/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
10 recursive-exclude google *_test.py
11 recursive-exclude google *_test.proto
12 recursive-exclude google unittest*_pb2.py
14 global-exclude *.dll
15 global-exclude *.pyc
16 global-exclude *.pyo
[all …]
/external/conscrypt/apex/tests/
DTEST_MAPPING7 …"exclude-filter": "org.apache.harmony.crypto.tests.javax.crypto.func.KeyAgreementFunctionalTest#te…
10 …"exclude-filter": "com.android.org.conscrypt.java.security.AlgorithmParameterGeneratorTestDH#testA…
13 …"exclude-filter": "org.apache.harmony.crypto.tests.javax.crypto.KeyAgreementTest#test_generateSecr…
16 …"exclude-filter": "org.apache.harmony.tests.javax.net.ssl.TrustManagerFactory1Test#test_initLjavax…
19 "exclude-filter": "com.android.org.conscrypt.java.security.SignatureTest#test_getInstance"
27 …"exclude-filter": "org.apache.harmony.crypto.tests.javax.crypto.func.KeyAgreementFunctionalTest#te…
30 …"exclude-filter": "com.android.org.conscrypt.java.security.AlgorithmParameterGeneratorTestDH#testA…
33 …"exclude-filter": "org.apache.harmony.crypto.tests.javax.crypto.KeyAgreementTest#test_generateSecr…
36 …"exclude-filter": "org.apache.harmony.tests.javax.net.ssl.TrustManagerFactory1Test#test_initLjavax…
/external/grpc-grpc-java/core/
Dbuild.gradle11 exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
13 exclude group: 'com.google.code.findbugs', module: 'jsr305'
15 exclude group: 'org.codehaus.mojo', module: 'animal-sniffer-annotations'
19 exclude group: 'com.google.code.findbugs', module: 'jsr305'
21 exclude group: 'com.google.guava', module: 'guava'
23 exclude group: 'io.grpc', module: 'grpc-context'
27 exclude group: 'com.google.code.findbugs', module: 'jsr305'
29 exclude group: 'io.grpc', module: 'grpc-context'
31 exclude group: 'com.google.guava', module: 'guava'
45 exclude 'io/grpc/Internal?*.java'
[all …]
/external/yapf/yapf/yapflib/
Dfile_resources.py74 def GetCommandLineFiles(command_line_file_list, recursive, exclude): argument
76 return _FindPythonFiles(command_line_file_list, recursive, exclude)
115 def _FindPythonFiles(filenames, recursive, exclude): argument
117 if exclude and any(e.startswith('./') for e in exclude):
122 if filename != '.' and exclude and IsIgnored(filename, exclude):
129 if dirpath != '.' and exclude and IsIgnored(dirpath, exclude):
136 if exclude and IsIgnored(filepath, exclude):
149 def IsIgnored(path, exclude): argument
154 return any(fnmatch.fnmatch(path, e.rstrip('/')) for e in exclude)
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/
Dmodule.modulemap28 exclude header "CodeGen/LinkAllAsmWriterComponents.h"
29 exclude header "CodeGen/LinkAllCodegenComponents.h"
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"
114 exclude header "DebugInfo/PDB/DIA/DIAEnumSourceFiles.h"
115 exclude header "DebugInfo/PDB/DIA/DIAEnumSymbols.h"
[all …]
/external/llvm-project/llvm/include/llvm/
Dmodule.modulemap28 exclude header "CodeGen/LinkAllAsmWriterComponents.h"
29 exclude header "CodeGen/LinkAllCodegenComponents.h"
114 exclude header "DebugInfo/PDB/DIA/DIADataStream.h"
115 exclude header "DebugInfo/PDB/DIA/DIAEnumDebugStreams.h"
116 exclude header "DebugInfo/PDB/DIA/DIAEnumFrameData.h"
117 exclude header "DebugInfo/PDB/DIA/DIAEnumInjectedSources.h"
118 exclude header "DebugInfo/PDB/DIA/DIAEnumLineNumbers.h"
119 exclude header "DebugInfo/PDB/DIA/DIAEnumSectionContribs.h"
120 exclude header "DebugInfo/PDB/DIA/DIAEnumSourceFiles.h"
121 exclude header "DebugInfo/PDB/DIA/DIAEnumSymbols.h"
[all …]
/external/deqp/external/openglcts/scripts/
Dbuild_mustpass.py28 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists
161 exclude("gles3-multisample-issues.txt")]),
172 exclude("gles3-pixelformat-issues.txt")]),
232 exclude("egl-test-issues.txt"),
233 exclude("egl-internal-api-tests.txt"),
234 exclude("egl-driver-issues.txt")
248 exclude("gles2-test-issues.txt"),
249 exclude("gles2-spec-issues.txt"),
250 exclude("gles2-driver-issues.txt"),
251 exclude("gles2-hw-issues.txt")
[all …]
/external/e2fsprogs/util/
Dgen-tarball.in10 exclude=/tmp/exclude$$
41 -print) > $exclude
42 sed -e "s;^;$base_e2fsprogs/;" < $srcdir/all.exclude >> $exclude
45 tar -c -f - -X $exclude --sort=name --owner=0 --group=0 \
50 rm -f "$exclude"
/external/autotest/server/site_tests/firmware_Cr50ConsoleCommands/
Dfirmware_Cr50ConsoleCommands.py184 self.exclude = []
185 for prop, include, exclude in self.BOARD_PROPERTIES:
188 if exclude:
189 self.exclude.extend(exclude.split(','))
191 self.exclude.append(include)
198 self.exclude.append('tot')
199 self.exclude.append('prepvt')
207 self.exclude.append('prepvt')
208 self.exclude.append('guc')
209 self.exclude.append('tot')
[all …]
/external/tensorflow/tensorflow/tools/tensorflow_builder/compat_checker/
Dtest_config.ini7 cherry = [range(1.0, 3.0) include(4.0) exclude(2.0)]
9 cranberry = [range(1.0,) exclude(3.0, 4.0, 4.5)]
12 grapefruit = [range( ,3.0) include(4.0) exclude(2.5)]
21 cantaloupe = [range(10.0, 15.0) include(2.0) exclude(11.0)]
32 cherry = [cherry range(1.0, 2.0) include(2.2) exclude(1.2) requires raspberry 3.0]
33 jackfruit = [jackfruit 2.0 requires grapefruit range(1.0, 2.0) include(2.2) exclude(1.2)]
/external/dokka/runners/fatjar/
Dbuild.gradle23 exclude compileOnly
29 exclude 'colorScheme/**'
30 exclude 'fileTemplates/**'
31 exclude 'inspectionDescriptions/**'
32 exclude 'intentionDescriptions/**'
34 exclude 'src/**'
/external/llvm/include/llvm/
Dmodule.modulemap22 exclude header "CodeGen/MachineValueType.h"
26 exclude header "CodeGen/CommandFlags.h"
27 exclude header "CodeGen/LinkAllAsmWriterComponents.h"
28 exclude header "CodeGen/LinkAllCodegenComponents.h"
68 exclude header "DebugInfo/PDB/DIA/DIADataStream.h"
69 exclude header "DebugInfo/PDB/DIA/DIAEnumDebugStreams.h"
70 exclude header "DebugInfo/PDB/DIA/DIAEnumLineNumbers.h"
71 exclude header "DebugInfo/PDB/DIA/DIAEnumSourceFiles.h"
72 exclude header "DebugInfo/PDB/DIA/DIAEnumSymbols.h"
73 exclude header "DebugInfo/PDB/DIA/DIALineNumber.h"
[all …]
/external/grpc-grpc-java/protobuf/
Dbuild.gradle16 exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
18 exclude group: 'com.google.code.findbugs', module: 'jsr305'
20 exclude group: 'org.codehaus.mojo', module: 'animal-sniffer-annotations'
26 exclude group: 'com.google.api', module: 'api-common'
28 exclude group: 'com.google.protobuf', module: 'protobuf-java'
32 exclude group: 'com.google.protobuf', module: 'protobuf-lite'
/external/python/setuptools/setuptools/command/
Dinstall_lib.py91 exclude = self.get_exclusions()
93 if not exclude:
104 if dst in exclude:
118 exclude = self.get_exclusions()
119 if exclude:
120 return [f for f in outputs if f not in exclude]
/external/dexmaker/
DTEST_MAPPING7 "exclude-annotation": "androidx.test.filters.LargeTest"
15 "exclude-annotation": "androidx.test.filters.LargeTest"
23 "exclude-annotation": "androidx.test.filters.LargeTest"
31 "exclude-annotation": "androidx.test.filters.LargeTest"
/external/mockito/
DTEST_MAPPING7 "exclude-annotation": "androidx.test.filters.LargeTest"
15 "exclude-annotation": "androidx.test.filters.LargeTest"
23 "exclude-annotation": "androidx.test.filters.LargeTest"
31 "exclude-annotation": "androidx.test.filters.LargeTest"

12345678910>>...39