Home
last modified time | relevance | path

Searched refs:suppress (Results 1 - 25 of 65) sorted by relevance

123

/third_party/skia/resources/sksl/es2_conformance/
H A Dimport_conformance_tests.py37 bracketedPipeList = pp.Group(pp.Literal("[").suppress() +
39 pp.Literal("]").suppress())
44 pp.Literal("=").suppress() +
46 pp.Literal(";").suppress())
50 pp.Literal("{").suppress() +
52 pp.Literal("}").suppress())
54 expectation = (pp.Keyword("expect").suppress() + (pp.Keyword("compile_fail") |
61 reqGlsl100 = pp.Keyword("require").suppress() + pp.Keyword("full_glsl_es_100_support")
65 ignoredCaseItem = (desc | version100es).suppress()
71 blockEnd = pp.Keyword("end").suppress();
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_foozzie.py425 def run_comparisons(suppress, execution_configs, test_case, timeout,
430 suppress: The helper object for textual suppressions.
451 difference, source = suppress.diff(baseline_output, comparison_output)
457 fail_bailout(baseline_output, suppress.ignore_by_output)
458 fail_bailout(comparison_output, suppress.ignore_by_output)
464 fallback_difference, fallback_source = suppress.diff(
467 fail_bailout(fallback_output, suppress.ignore_by_output)
492 suppress = v8_suppressions.get_suppression(options.skip_suppressions)
500 content_bailout(get_meta_data(content), suppress.ignore_by_metadata)
501 content_bailout(content, suppress
[all...]
H A Dv8_foozzie_test.py119 suppress = v8_suppressions.get_suppression(skip)
120 return suppress.diff_lines(one.splitlines(), two.splitlines())
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djcapimin.c122 * Forcibly suppress or un-suppress all quantization and Huffman tables.
123 * Marks all currently defined tables as already written (if suppress)
124 * or not written (if !suppress). This will control whether they get emitted
134 jpeg_suppress_tables(j_compress_ptr cinfo, boolean suppress) in jpeg_suppress_tables() argument
142 qtbl->sent_table = suppress; in jpeg_suppress_tables()
147 htbl->sent_table = suppress; in jpeg_suppress_tables()
149 htbl->sent_table = suppress; in jpeg_suppress_tables()
/third_party/ltp/testcases/network/stress/ns-tools/
H A Dns-mcast.h98 uint8_t suppress:1; member
102 uint8_t suppress:1; member
H A Dns-traffic.h188 uint8_t suppress:1; member
192 uint8_t suppress:1; member
/third_party/cJSON/tests/unity/auto/
H A Dunity_to_junit.py39 delimiter = Literal(':').suppress()
45 eol = LineEnd().suppress()
46 sol = LineStart().suppress()
/third_party/unity/auto/
H A Dstylize_as_junit.py49 delimiter = Literal(':').suppress()
57 eol = LineEnd().suppress()
58 sol = LineStart().suppress()
/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc212 bool suppress = false; in Finish() local
215 suppress = log_silencer_count_ > 0; in Finish()
218 if (!suppress) { in Finish()
/third_party/python/Lib/test/
H A Dtest_contextlib.py1156 cm_docstring = suppress.__doc__
1157 obj = suppress()
1161 with suppress(ValueError) as enter_result:
1165 with suppress(ValueError):
1169 with suppress(TypeError):
1173 with suppress(LookupError):
1178 with suppress(TypeError):
1183 with suppress():
1187 with suppress(ZeroDivisionError, TypeError):
1189 with suppress(ZeroDivisionErro
[all...]
H A Dtest_resource.py144 with contextlib.suppress(AttributeError):
149 with contextlib.suppress(AttributeError):
/third_party/gn/src/gn/
H A Dscheduler.cc156 void Scheduler::SuppressOutputForTesting(bool suppress) { in SuppressOutputForTesting() argument
158 suppress_output_for_testing_ = suppress; in SuppressOutputForTesting()
H A Dscheduler.h100 void SuppressOutputForTesting(bool suppress);
/third_party/python/Lib/importlib/resources/
H A D_adapters.py1 from contextlib import suppress namespace
148 with suppress(AttributeError):
/third_party/python/Lib/importlib/metadata/
H A D__init__.py23 from contextlib import suppress namespace
799 with suppress(Exception):
801 with suppress(Exception):
817 with suppress(OSError):
931 with suppress(
/third_party/node/deps/v8/src/base/
H A Dcompiler-specific.h72 #define MSVC_SUPPRESS_WARNING(n) __pragma(warning(suppress : n))
75 // This uses suppress instead of push/pop because the delimiter after the
/third_party/python/Lib/test/test_importlib/
H A Dupdate-zips.py45 with contextlib.suppress(ValueError):
/third_party/mesa3d/src/gallium/tools/trace/
H A Dtracediff.sh84 python3 "$TRACEDUMP" --plain --suppress --ignore-junk \
/third_party/ffmpeg/libavutil/arm/
H A Dasm.S72 ELF .eabi_attribute 10, 0 @ suppress Tag_FP_arch
73 ELF .eabi_attribute 12, 0 @ suppress Tag_Advanced_SIMD_arch
76 ELF .eabi_attribute 10, 0 @ suppress Tag_FP_arch
/third_party/python/Lib/asyncio/
H A Dstaggered.py86 with contextlib.suppress(exceptions_mod.TimeoutError):
/third_party/node/deps/v8/tools/cppgc/
H A Dgen_cmake.py10 from contextlib import suppress namespace
131 with suppress(KeyError):
/third_party/mbedtls/library/
H A Dcommon.h290 # define MBEDTLS_MAYBE_UNUSED __pragma(warning(suppress:4189))
/third_party/pulseaudio/src/modules/
H A Dmodule-filter-apply.c137 const char* suppress = pa_proplist_gets(pl, PA_PROP_FILTER_SUPPRESS); in get_filter_name() local
139 if (!suppress || !pa_streq(suppress, apply)) in get_filter_name()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dconsistency_tools.py573 for suppress in self.entity_suppressions:
574 if suppress in message:
/third_party/python/Objects/
H A Dobject.c1244 PyObject *dict, int suppress) in _PyObject_GenericGetAttrWithDict()
1249 When suppress=1, this function suppresses AttributeError. in _PyObject_GenericGetAttrWithDict()
1279 if (res == NULL && suppress && in _PyObject_GenericGetAttrWithDict()
1327 if (suppress && PyErr_ExceptionMatches(PyExc_AttributeError)) { in _PyObject_GenericGetAttrWithDict()
1339 if (res == NULL && suppress && in _PyObject_GenericGetAttrWithDict()
1352 if (!suppress) { in _PyObject_GenericGetAttrWithDict()
1243 _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, PyObject *dict, int suppress) _PyObject_GenericGetAttrWithDict() argument

Completed in 16 milliseconds

123