Home
last modified time | relevance | path

Searched refs:arg_dict (Results 1 – 9 of 9) sorted by relevance

/external/toolchain-utils/llvm_tools/
Dupdate_packages_and_run_tests.py154 def UnchangedSinceLastRun(last_tested_file, arg_dict): argument
179 return arg_dict == last_arg_dict
423 arg_dict = {
429 arg_dict['builders'] = args_output.builders
430 arg_dict['tryjob_options'] = args_output.options
431 if UnchangedSinceLastRun(args_output.last_tested, arg_dict):
489 json.dump(arg_dict, f, indent=2)
Dupdate_packages_and_run_tests_unittest.py48 arg_dict = {
64 f.write(json.dumps(arg_dict, indent=2))
68 last_tested_file, arg_dict), True)
239 arg_dict = {
248 json.dump(arg_dict, f, indent=2)
280 arg_dict = json.load(f)
282 self.assertEqual(arg_dict['svn_version'], 200)
/external/llvm-project/lldb/examples/python/
Din_call_stack.py10 def in_call_stack(frame, bp_loc, arg_dict, _): argument
12 name = arg_dict.GetValueForKey('name').GetStringValue(1000)
/external/llvm-project/llvm/tools/opt-viewer/
Dopt-viewer.py252 arg_dict = dict(list(arg))
253 caller = arg_dict.get('Caller')
256 context.caller_loc[caller] = arg_dict['DebugLoc']
Doptrecord.py105 self.Args = tuple([_reduce_memory_dict(arg_dict) for arg_dict in self.Args])
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining_integration_test.py106 for layer_type, inp_shape, fuzz_dims, arg_dict, filter_fn in _LAYERS_TO_TEST:
107 …arg_combinations = [[(k, i) for i in v] for k, v in arg_dict.items()] # pylint: disable=g-complex…
/external/rust/crates/grpcio-sys/grpc/third_party/upb/cmake/
Dmake_cmakelists.py150 def select(self, arg_dict): argument
/external/tensorflow/tensorflow/python/keras/layers/
Dcore.py1041 arg_dict = config['arguments'][key]
1042 if 'type' in arg_dict and arg_dict['type'] == 'ndarray':
1044 config['arguments'][key] = np.array(arg_dict['value'])
/external/libchrome/base/test/
Dtrace_event_analyzer_unittest.cc954 base::DictionaryValue* arg_dict; in TEST_F() local
955 EXPECT_TRUE(arg->GetAsDictionary(&arg_dict)); in TEST_F()
957 EXPECT_TRUE(arg_dict->GetString("property", &property)); in TEST_F()