Home
last modified time | relevance | path

Searched refs:decorated (Results 1 – 25 of 140) sorted by relevance

123456

/external/tensorflow/tensorflow/python/util/
Dtf_decorator_test.py202 decorated = tf_decorator.make_decorator(test_function, test_wrapper)
203 decorator = getattr(decorated, '_tf_decorator')
207 decorated = tf_decorator.make_decorator(test_function, test_wrapper)
208 wrapped_attr = getattr(decorated, '__wrapped__')
212 decorated = tf_decorator.make_decorator(test_function, test_wrapper,
214 decorator = getattr(decorated, '_tf_decorator')
218 decorated = tf_decorator.make_decorator(
220 decorator = getattr(decorated, '_tf_decorator')
225 decorated = tf_decorator.make_decorator(test_function, test_wrapper)
226 self.assertTrue(decorated.foobar)
[all …]
Dtf_should_use.py244 def decorated(fn): function
268 return decorated(fn)
270 return decorated
/external/tensorflow/tensorflow/python/keras/
Dkeras_parameterized.py146 def decorated(self, saved_format, *args, **kwargs): function
156 return decorated
286 def decorated(self, model_type, *args, **kwargs): function
296 return decorated
404 def decorated(self, run_mode, *args, **kwargs): function
415 return decorated
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py1080 def decorated(self, run_mode, *args, **kwargs): function
1099 return decorated
1189 def decorated(self, *args, **kwargs): function
1221 return tf_decorator.make_decorator(f, decorated)
1231 def decorated(*args, **kwds): function
1250 return tf_decorator.make_decorator(f, decorated)
1273 def decorated(*args, **kwds): function
1285 return decorated
1322 def decorated(self, *args, **kwargs): function
1329 return decorated
[all …]
/external/antlr/runtime/Python/tests/
Dt050decorate.g8 def decorated(self, *args, **kwargs):
15 return decorated
/external/antlr/runtime/Python3/tests/
Dt050decorate.g8 def decorated(self, *args, **kwargs):
15 return decorated
/external/antlr/runtime/Cpp/tests/
Dt050decorate.g21 def decorated(self, *args, **kwargs):
28 return decorated
/external/tensorflow/tensorflow/python/ops/
Dbatch_ops.py91 def decorated(*args): # pylint: disable=missing-docstring function
120 return decorated
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dutils.py89 decorated = tf_decorator.make_decorator(
95 return types.MethodType(decorated, layer)
97 return decorated
/external/python/cpython3/Doc/howto/
Dsorting.rst170 * First, the initial list is decorated with new values that control the sort order.
172 * Second, the decorated list is sorted.
179 >>> decorated = [(student.grade, i, student) for i, student in enumerate(student_objects)]
180 >>> decorated.sort()
181 >>> [student for grade, i, student in decorated] # undecorate
189 decorated list, but including it gives two benefits:
195 decorated tuples will be determined by at most the first two items. So for
/external/tensorflow/tensorflow/python/keras/utils/
Dmetrics_utils.py72 def decorated(metric_obj, *args, **kwargs): function
94 return tf_decorator.make_decorator(update_state_fn, decorated)
116 def decorated(metric_obj, *args): function
150 return tf_decorator.make_decorator(result_fn, decorated)
/external/tensorflow/tensorflow/python/eager/
Dbackprop.py401 def decorated(*args, **kwds): function
407 return decorated
498 def decorated(*args, **kwds): function
507 return decorated
546 def decorated(*args, **kwds): function
583 return decorated
/external/python/cpython2/Doc/howto/
Dsorting.rst168 * First, the initial list is decorated with new values that control the sort order.
170 * Second, the decorated list is sorted.
177 >>> decorated = [(student.grade, i, student) for i, student in enumerate(student_objects)]
178 >>> decorated.sort()
179 >>> [student for grade, i, student in decorated] # undecorate
187 decorated list, but including it gives two benefits:
193 decorated tuples will be determined by at most the first two items. So for
/external/deqp-deps/glslang/Test/
Dprecise.tesc78 b = b + c; // b + c should be decorated with 'noContraction'
79 result = fma(a, b, c); // fma() should not be decorated with 'noContradtion'
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dprecise.tesc78 b = b + c; // b + c should be decorated with 'noContraction'
79 result = fma(a, b, c); // fma() should not be decorated with 'noContradtion'
/external/python/cpython3/Lib/test/
Dtest_sys_settrace.py734 decorated=False): argument
739 self.firstLine = None if decorated else self.code.co_firstlineno
802 event='line', decorated=False): argument
803 tracer = JumpTracer(func, jumpFrom, jumpTo, event, decorated)
815 event='line', decorated=False): argument
816 tracer = JumpTracer(func, jumpFrom, jumpTo, event, decorated)
836 error=error, event=event, decorated=True)
848 error=error, event=event, decorated=True)
/external/tensorflow/tensorflow/tools/def_file_filter/
Ddef_file_filter.py.tpl281 # We compare on undname but use the decorated name from candidates.
285 decorated = candidates[idx]
286 if decorated in taken:
304 def_fp.write("\t" + decorated + "\n")
306 def_fp.write("\t" + decorated + " DATA\n")
307 taken.add(decorated)
/external/python/cpython2/Lib/test/
Dtest_sys_settrace.py486 decorated=False): argument
491 self.firstLine = None if decorated else self.code.co_firstlineno
554 event='line', decorated=False): argument
555 tracer = JumpTracer(func, jumpFrom, jumpTo, event, decorated)
574 error=error, event=event, decorated=True)
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
Dclass_definition.py28 elif (statement.type == symbol.decorated and
Dfunction_definition.py28 elif (statement.type == symbol.decorated and
/external/python/cpython2/Include/
Dgraminit.h8 #define decorated 261 macro
/external/python/cpython3/Include/
Dgraminit.h8 #define decorated 261 macro
/external/python/cpython3/Lib/
Dsymbol.py29 decorated = 261 variable
/external/python/cpython2/Lib/
Dsymbol.py18 decorated = 261 variable
/external/wpa_supplicant_8/src/eap_common/
Deap_sim_common.c1228 const u8 *decorated; in eap_sim_anonymous_username() local
1244 decorated = get_last_char(id, id_len, '!'); in eap_sim_anonymous_username()
1245 if (decorated) { in eap_sim_anonymous_username()
1246 decorated++; in eap_sim_anonymous_username()
1247 return eap_sim_anonymous_username(decorated, in eap_sim_anonymous_username()
1248 id + id_len - decorated); in eap_sim_anonymous_username()

123456