Searched refs:exclude (Results 1 - 25 of 100) sorted by relevance

1234

/external/syslinux/gpxe/src/drivers/bus/
H A Dpcibackup.c36 * @v exclude PCI configuration space backup exclusion list, or NULL
40 const uint8_t *exclude ) {
42 if ( ! exclude )
44 for ( ; *exclude != PCI_CONFIG_BACKUP_EXCLUDE_END ; exclude++ ) {
45 if ( offset == *exclude ) {
59 * @v exclude PCI configuration space backup exclusion list, or NULL
62 const uint8_t *exclude ) {
68 if ( ! pci_backup_excluded ( pci, offset, exclude ) )
78 * @v exclude PC
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dpcibackup.h28 const uint8_t *exclude );
31 const uint8_t *exclude );
/external/antlr/antlr-3.4/runtime/Perl5/
H A DMakefile.PL9 --exclude=blib \
10 --exclude='*~' \
/external/sonic/
H A Dmkorig18 if ! tar -cvzf sonic_$version.orig.tar.gz --exclude-vcs --exclude=debian sonic-$version; then
/external/libvpx/libvpx/test/
H A Dexamples.sh17 # List of script names to exclude.
22 example_tests=$(filter_strings "${example_tests}" "${word}" exclude)
H A Dtools_common.sh213 exclude=${3}
215 if [ -n "${exclude}" ]; then
218 exclude='-v'
220 unset exclude
225 if echo "${s}" | egrep -q ${exclude} "${filter}" > /dev/null 2>&1; then
250 tests_to_filter=$(filter_strings "${tests_to_filter}" ^DISABLED exclude)
/external/mockito/
H A Dupdate_source.sh49 for exclude in ${EXCLUDE}; do
50 echo "Excluding $exclude"
51 rm -r $exclude
/external/deqp/external/vulkancts/scripts/
H A Dbuild_mustpass.py31 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists, parseBuildConfigFromCmdLineArgs namespace
74 exclude("test-issues.txt"),
75 exclude("excluded-tests.txt"),
76 exclude("android-tests.txt"),
77 exclude("waivers.txt")]),
/external/e2fsprogs/util/
H A Dgen-tarball.in10 exclude=/tmp/exclude
43 -print) | sed -e "s/^$base_e2fsprogs/$SRCROOT/" > $exclude
44 sed -e "s;^;$SRCROOT/;" < $srcdir/$list.exclude >> $exclude
48 (cd $top_srcdir/.. ; tar -c -h -v -f - -X $exclude $SRCROOT) \
/external/dexmaker/
H A Dupdate_source.sh48 for exclude in ${EXCLUDE}; do
49 echo "Excluding $exclude"
50 rm -r $exclude
/external/objenesis/
H A Dupdate_source.sh51 for exclude in ${EXCLUDE}; do
52 echo "Excluding $exclude"
53 rm -r $exclude
/external/chromium-trace/catapult/telemetry/build/
H A Dgenerate_telemetry_harness.sh14 --exclude=*/third_party/catapult/test_data/* \
/external/caliper/caliper/src/main/java/com/google/caliper/api/
H A DFootprint.java37 Class<?>[] exclude() default {};
/external/skia/
H A Dpublic.bzl43 srcs: struct(include=[], exclude=[])
45 Equivalent of glob(srcs.include, exclude=srcs.exclude)
48 if hasattr(srcs, 'exclude'):
49 return native.glob(srcs.include, exclude=srcs.exclude)
72 exclude = [
115 # Currently exclude all vulkan specific files
135 exclude = [
190 exclude
[all...]
/external/deqp/scripts/
H A Dbuild_android_mustpass.py26 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists, parseBuildConfigFromCmdLineArgs namespace
144 exclude("gles3-multisample-issues.txt")]),
153 exclude("gles3-pixelformat-issues.txt")]),
347 exclude("egl-test-issues.txt"),
348 exclude("egl-internal-api-tests.txt"),
349 exclude("egl-manual-robustness.txt"),
350 exclude("egl-driver-issues.txt")]
364 exclude("gles2-test-issues.txt"),
365 exclude("gles2-failures.txt")
380 exclude("gles
[all...]
H A Drun_nightly.py87 def __init__(self, name, buildConfig, generator, binaryName, testset, args = [], exclude = [], ignore = []):
94 self.exclude = exclude
310 if len(config.exclude) > 0:
311 execArgs += ['--exclude=%s' % string.join(config.exclude, ",")]
370 exclude = [ variable
384 exclude = [ variable
403 exclude = [], variable
426 exclude variable
442 exclude = [ variable
455 exclude = ["dEQP-CL.performance.*", "dEQP-CL.robustness.*", "dEQP-CL.stress.memory.*"], variable
[all...]
/external/noto-fonts/other/
H A Dsubset_noto_serif.py54 exclude=ANDROID_EMOJI)
/external/noto-fonts/cjk/
H A Dsubset_noto_cjk.py81 def remove_from_cmap(infile, outfile, exclude=frozenset()):
84 font_data.delete_from_cmap(font, exclude)
96 remove_from_cmap(otf_name, otf_name, exclude=EXCLUDED_CODEPOINTS)
/external/testng/src/test/java/test/override/
H A DOverrideTest.java25 private void runTest(String include, String exclude) { argument
39 if (exclude != null) tng.setExcludedGroups(exclude);
/external/autotest/client/site_tests/security_SuidBinaries/
H A Dsecurity_SuidBinaries.py53 exclude = [ '/proc',
61 for item in exclude:
/external/jsoncpp/scons-tools/
H A Dglobtool.py28 for exclude in excludes:
29 if fnmatch.fnmatchcase( fn, exclude ):
/external/ltp/
H A DMakefile.release46 tar -cvz --exclude "$(TARBALL)" -f $(TARBALL) .
/external/autotest/contrib/
H A Dalways_failing_tests.py50 ).exclude(test__contains='/'
51 ).exclude(test__contains='_JOB'
52 ).exclude(test='provision'
53 ).exclude(test__contains='try_new_image')
/external/skia/gn/
H A Dgn_to_bp.py222 def GrabDependentSrcs(name, srcs_to_extend, exclude):
230 if exclude and exclude in dep:
233 GrabDependentSrcs(dep, srcs_to_extend, exclude)
/external/skia/tools/
H A DBUILD_simulator.py62 def BUILD_glob(include, exclude=()):
66 for pattern in exclude:

Completed in 687 milliseconds

1234