Home
last modified time | relevance | path

Searched refs:decorators (Results 1 – 25 of 966) sorted by relevance

12345678910>>...39

/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/regex/message/
DTestDarwinLogFilterRegexMessage.py15 from lldbsuite.test import decorators
24 @decorators.skipUnlessDarwin
25 @decorators.expectedFailureAll(oslist=["macosx"],
51 @decorators.skipUnlessDarwin
52 @decorators.expectedFailureAll(oslist=["macosx"],
70 @decorators.skipUnlessDarwin
71 @decorators.expectedFailureAll(oslist=["macosx"],
88 @decorators.skipUnlessDarwin
89 @decorators.expectedFailureAll(oslist=["macosx"],
107 @decorators.skipUnlessDarwin
[all …]
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq1/
DTestAmbiguousTailCallSeq1.py2 from lldbsuite.test import decorators
4 decorators = [decorators.skipUnlessHasCallSiteInfo, variable
5 decorators.skipIf(dwarf_version=['<', '4'])]
7 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decorators)
9 build_dict=dict(CFLAGS_EXTRAS="-O2 -ggdb"), decorators=decorators)
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/
DTestAmbiguousTailCallSeq2.py2 from lldbsuite.test import decorators
4 decorators = [decorators.skipUnlessHasCallSiteInfo, variable
5 decorators.skipIf(dwarf_version=['<', '4'])]
7 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decorators)
9 build_dict=dict(CFLAGS_EXTRAS="-O2 -ggdb"), decorators=decorators)
/external/chromium-trace/catapult/devil/devil/android/
Ddecorators_test.py14 from devil.android import decorators
29 @decorators.WithTimeoutAndRetries
45 @decorators.WithTimeoutAndRetries
57 @decorators.WithTimeoutAndRetries
77 @decorators.WithTimeoutAndRetries
93 @decorators.WithTimeoutAndConditionalRetries(do_not_retry_no_adb_error)
108 @decorators.WithTimeoutAndConditionalRetries(do_not_retry_no_adb_error)
121 @decorators.WithTimeoutAndRetriesDefaults(1, 0)
144 @decorators.WithTimeoutAndRetriesDefaults(30, 10)
161 @decorators.WithTimeoutAndRetriesDefaults(30, 10)
[all …]
/external/tensorflow/tensorflow/python/util/
Dtf_decorator_test.py302 decorators, _ = tf_decorator.unwrap(test_function)
303 self.assertEqual(0, len(decorators))
316 decorators, _ = tf_decorator.unwrap(test_decorated_function)
317 self.assertEqual(3, len(decorators))
318 self.assertTrue(isinstance(decorators[0], tf_decorator.TFDecorator))
319 self.assertTrue(isinstance(decorators[1], tf_decorator.TFDecorator))
320 self.assertTrue(isinstance(decorators[2], tf_decorator.TFDecorator))
321 self.assertIsNot(decorators[0], decorators[1])
322 self.assertIsNot(decorators[1], decorators[2])
323 self.assertIsNot(decorators[2], decorators[0])
[all …]
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Ddecorators_test.py5 import decorators
18 self.assertRaises(Exception, lambda: decorators.trace(1))
19 self.assertRaises(Exception, lambda: decorators.trace(""))
20 self.assertRaises(Exception, lambda: decorators.trace([]))
23 self.assertRaises(Exception, lambda: decorators.trace(generator))
26 @decorators.traced
30 @decorators.traced
34 @decorators.traced
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/unambiguous_sequence/
DTestUnambiguousTailCalls.py2 from lldbsuite.test import decorators
4 decor = [decorators.skipUnlessHasCallSiteInfo,
5 decorators.skipIf(dwarf_version=['<', '4'])]
7 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decor)
10 decorators=decor+[decorators.skipIf(debug_info="dsym")])
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/inlining_and_tail_calls/
DTestInliningAndTailCalls.py2 from lldbsuite.test import decorators
4 decor = [decorators.skipUnlessHasCallSiteInfo,
5 decorators.skipIf(dwarf_version=['<', '4'])]
7 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decor)
10 decorators=decor+[decorators.skipIf(debug_info="dsym")])
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/
DTestDisambiguatePathsToCommonSink.py2 from lldbsuite.test import decorators
4 decor = [decorators.skipUnlessHasCallSiteInfo,
5 decorators.skipIf(dwarf_version=['<', '4'])]
8 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decor)
12 decorators=decor+[decorators.skipIf(debug_info="dsym")])
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/thread_step_out_message/
DTestArtificialFrameStepOutMessage.py2 from lldbsuite.test import decorators
4 decor = [decorators.skipUnlessHasCallSiteInfo,
5 decorators.skipIf(dwarf_version=['<', '4'])]
8 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decor)
12 decorators=decor+[decorators.skipIf(debug_info="dsym")])
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/disambiguate_call_site/
DTestDisambiguateCallSite.py2 from lldbsuite.test import decorators
4 decor = [decorators.skipUnlessHasCallSiteInfo,
5 decorators.skipIf(dwarf_version=['<', '4'])]
7 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decor)
10 decorators=decor+[decorators.skipIf(debug_info="dsym")])
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/disambiguate_tail_call_seq/
DTestDisambiguateTailCallSeq.py2 from lldbsuite.test import decorators
4 decor = [decorators.skipUnlessHasCallSiteInfo,
5 decorators.skipIf(dwarf_version=['<', '4'])]
7 build_dict=dict(CFLAGS_EXTRAS="-O2 -glldb"), decorators=decor)
10 decorators=decor+[decorators.skipIf(debug_info="dsym")])
/external/llvm-project/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/
DTestBasicEntryValues.py2 from lldbsuite.test.decorators import *
6 decorators = [skipIf(archs=no_match(supported_archs)), variable
11 lldbinline.MakeInlineTest(__file__, globals(), decorators=decorators,
16 decorators=decorators+[skipIf(debug_info="dsym")],
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/exact_match/message/
DTestDarwinLogFilterMatchMessage.py13 from lldbsuite.test import decorators
60 @decorators.skipUnlessDarwin
61 @decorators.expectedFailureAll(oslist=["macosx"],
81 @decorators.skipUnlessDarwin
82 @decorators.expectedFailureAll(oslist=["macosx"],
103 @decorators.skipUnlessDarwin
104 @decorators.expectedFailureAll(oslist=["macosx"],
124 @decorators.skipUnlessDarwin
125 @decorators.expectedFailureAll(oslist=["macosx"],
/external/llvm-project/lldb/test/API/functionalities/darwin_log/basic/
DTestDarwinLogBasic.py13 from lldbsuite.test import decorators
21 @decorators.add_test_categories(['pyapi'])
22 @decorators.skipUnlessDarwin
23 @decorators.expectedFailureAll(archs=["i386"], bugnumber="rdar://28655626")
24 @decorators.expectedFailureAll(bugnumber="rdar://30645203")
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dfastboot.py12 from devil.android import decorators
85 @decorators.WithTimeoutAndRetriesDefaults(_DEFAULT_TIMEOUT, _DEFAULT_RETRIES)
98 @decorators.WithTimeoutAndRetriesDefaults(_FLASH_TIMEOUT, 0)
109 @decorators.WithTimeoutAndRetriesDefaults(_DEFAULT_TIMEOUT, _DEFAULT_RETRIES)
119 @decorators.WithTimeoutAndRetriesFromInstance()
124 @decorators.WithTimeoutAndRetriesDefaults(_FLASH_TIMEOUT, 0)
129 @decorators.WithTimeoutAndRetriesFromInstance()
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/
DTestDarwinLogFilterRegexSubsystem.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
66 @decorators.skipUnlessDarwin
84 @decorators.skipUnlessDarwin
102 @decorators.skipUnlessDarwin
120 @decorators.skipUnlessDarwin
138 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/regex/activity/
DTestDarwinLogFilterRegexActivity.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
67 @decorators.skipUnlessDarwin
85 @decorators.skipUnlessDarwin
103 @decorators.skipUnlessDarwin
121 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/regex/category/
DTestDarwinLogFilterRegexCategory.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
67 @decorators.skipUnlessDarwin
85 @decorators.skipUnlessDarwin
103 @decorators.skipUnlessDarwin
121 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/regex/activity-chain/
DTestDarwinLogFilterRegexActivityChain.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
67 @decorators.skipUnlessDarwin
84 @decorators.skipUnlessDarwin
101 @decorators.skipUnlessDarwin
118 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/format/
DTestDarwinLogMessageFormat.py13 from lldbsuite.test import decorators
57 @decorators.skipUnlessDarwin
69 @decorators.skipUnlessDarwin
95 @decorators.skipUnlessDarwin
111 @decorators.skipUnlessDarwin
128 @decorators.skipUnlessDarwin
145 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/
DTestDarwinLogFilterMatchSubsystem.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
67 @decorators.skipUnlessDarwin
87 @decorators.skipUnlessDarwin
105 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/exact_match/category/
DTestDarwinLogFilterMatchCategory.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
67 @decorators.skipUnlessDarwin
87 @decorators.skipUnlessDarwin
105 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity-chain/
DTestDarwinLogFilterMatchActivityChain.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
67 @decorators.skipUnlessDarwin
86 @decorators.skipUnlessDarwin
103 @decorators.skipUnlessDarwin
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/exact_match/activity/
DTestDarwinLogFilterMatchActivity.py12 from lldbsuite.test import decorators
49 @decorators.skipUnlessDarwin
67 @decorators.skipUnlessDarwin
87 @decorators.skipUnlessDarwin
105 @decorators.skipUnlessDarwin

12345678910>>...39