Home
last modified time | relevance | path

Searched refs:SUPPRESS (Results 1 – 11 of 11) sorted by relevance

/third_party/libcoap/examples/
Doscore_testcases.sh192 if [ "$SUPPRESS" = no ] ; then
200 if [ "$SUPPRESS" = no ] ; then
208 if [ "$SUPPRESS" = no ] ; then
216 if [ "$SUPPRESS" = no ] ; then
224 if [ "$SUPPRESS" = no ] ; then
232 if [ "$SUPPRESS" = no ] ; then
240 if [ "$SUPPRESS" = no ] ; then
/third_party/python/Lib/
Dargparse.py94 SUPPRESS = '==SUPPRESS==' variable
223 if self.heading is not SUPPRESS and self.heading is not None:
249 if text is not SUPPRESS and text is not None:
253 if usage is not SUPPRESS:
258 if action.help is not SUPPRESS:
292 if part and part is not SUPPRESS])
434 if action.help is SUPPRESS:
609 elif action.nargs == SUPPRESS:
622 if params[name] is SUPPRESS:
698 if action.default is not SUPPRESS:
[all …]
/third_party/skia/third_party/externals/angle2/scripts/
Dprocess_angle_perf_results.py691 parser.add_argument('--configuration-name', help=argparse.SUPPRESS)
693 parser.add_argument('--build-properties', help=argparse.SUPPRESS)
694 parser.add_argument('--summary-json', help=argparse.SUPPRESS)
695 parser.add_argument('--task-output-dir', help=argparse.SUPPRESS)
696 parser.add_argument('-o', '--output-json', required=True, help=argparse.SUPPRESS)
707 parser.add_argument('json_files', nargs='*', help=argparse.SUPPRESS)
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dmain.py103 help=argparse.SUPPRESS)
110 help=argparse.SUPPRESS)
/third_party/python/Lib/unittest/
Dmain.py228 default=argparse.SUPPRESS,
229 help=argparse.SUPPRESS)
/third_party/node/
Dconfigure.py485 help=argparse.SUPPRESS) # Unsupported, undocumented.
697 help=argparse.SUPPRESS)
703 help=argparse.SUPPRESS)
709 help=argparse.SUPPRESS)
715 help=argparse.SUPPRESS)
868 help=argparse.SUPPRESS)
/third_party/cef/tools/yapf/yapf/
D__init__.py115 parser.add_argument('--verify', action='store_true', help=argparse.SUPPRESS)
/third_party/python/Lib/test/
Dtest_argparse.py1401 Sig('foo', nargs='?', default=argparse.SUPPRESS),
1402 Sig('bar', nargs='*', default=argparse.SUPPRESS),
1403 Sig('--baz', action='store_true', default=argparse.SUPPRESS),
1419 parser_signature = Sig(argument_default=argparse.SUPPRESS)
2723 group.add_argument('-x', help=argparse.SUPPRESS)
2757 add('--spam', action='store_true', help=argparse.SUPPRESS)
2758 add('--badger', action='store_false', help=argparse.SUPPRESS)
2759 add('--bladder', help=argparse.SUPPRESS)
4000 parser_signature = Sig(prog='PROG', usage=argparse.SUPPRESS)
4023 Sig('--foo', help=argparse.SUPPRESS),
[all …]
/third_party/jerryscript/tools/
Dbuild.py49 return helpstring if devhelp_arguments.devhelp else argparse.SUPPRESS
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZPatterns.td163 // TR2 and the output being TR1. SUPPRESS is 4 to suppress inexact conditions
/third_party/python/Doc/library/
Dargparse.rst539 calls, we supply ``argument_default=SUPPRESS``::
541 >>> parser = argparse.ArgumentParser(argument_default=argparse.SUPPRESS)
1042 Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if the
1046 >>> parser.add_argument('--foo', default=argparse.SUPPRESS)
1234 setting the ``help`` value to ``argparse.SUPPRESS``::
1237 >>> parser.add_argument('--foo', help=argparse.SUPPRESS)