/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/ |
D | RecognitionException.pm | 63 my $new_args = { %$args }; 65 $new_args->{input} = $input; 66 $new_args->{index} = $input->index(); 70 $new_args->{token} = $token; 71 $new_args->{line} = $token->get_line(); 72 $new_args->{char_position_in_line} = $token->get_char_position_in_line(); 79 $new_args->{c} = $input->LA(1); 80 $new_args->{line} = $input->get_line(); 81 $new_args->{char_position_in_line} = $input->get_char_position_in_line(); 84 $new_args->{c} = $input->LA(1); [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/client/secure/ |
D | secure_channel_create.cc | 48 grpc_channel_args* new_args = GetSecureNamingChannelArgs(args); in CreateSubchannel() local 49 if (new_args == nullptr) { in CreateSubchannel() 55 Subchannel::Create(MakeOrphanable<Chttp2Connector>(), new_args); in CreateSubchannel() 56 grpc_channel_args_destroy(new_args); in CreateSubchannel() 116 grpc_channel_args* new_args = grpc_channel_args_copy_and_add( in GetSecureNamingChannelArgs() local 125 return new_args; in GetSecureNamingChannelArgs() 146 grpc_channel_args* new_args = in CreateChannel() local 149 target, new_args, GRPC_CLIENT_CHANNEL, nullptr, nullptr, error); in CreateChannel() 150 grpc_channel_args_destroy(new_args); in CreateChannel() 194 grpc_channel_args* new_args = grpc_channel_args_copy_and_add_and_remove( in grpc_secure_channel_create() local [all …]
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_isinstance.py | 33 new_args = [] 41 new_args.append(arg) 44 if new_args and new_args[-1].type == token.COMMA: 45 del new_args[-1] 46 if len(new_args) == 1: 48 new_args[0].prefix = atom.prefix 49 atom.replace(new_args[0]) 51 args[:] = new_args
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_isinstance.py | 33 new_args = [] 41 new_args.append(arg) 44 if new_args and new_args[-1].type == token.COMMA: 45 del new_args[-1] 46 if len(new_args) == 1: 48 new_args[0].prefix = atom.prefix 49 atom.replace(new_args[0]) 51 args[:] = new_args
|
/external/rust/crates/grpcio-sys/grpc/test/core/security/ |
D | grpc_tls_credentials_options_test.cc | 77 grpc_channel_args* new_args = nullptr; in TEST_F() local 79 nullptr, "random targets", nullptr, &new_args); in TEST_F() 80 grpc_channel_args_destroy(new_args); in TEST_F() 99 grpc_channel_args* new_args = nullptr; in TEST_F() local 101 nullptr, "random targets", nullptr, &new_args); in TEST_F() 102 grpc_channel_args_destroy(new_args); in TEST_F() 121 grpc_channel_args* new_args = nullptr; in TEST_F() local 123 nullptr, "random targets", nullptr, &new_args); in TEST_F() 124 grpc_channel_args_destroy(new_args); in TEST_F() 143 grpc_channel_args* new_args = nullptr; in TEST_F() local [all …]
|
D | tls_security_connector_test.cc | 130 grpc_channel_args* new_args = nullptr; in TEST_F() local 133 &new_args); in TEST_F() 146 grpc_channel_args_destroy(new_args); in TEST_F() 253 grpc_channel_args* new_args = nullptr; in TEST_F() local 256 &new_args); in TEST_F() 270 grpc_channel_args_destroy(new_args); in TEST_F() 291 grpc_channel_args* new_args = nullptr; in TEST_F() local 294 &new_args); in TEST_F() 312 grpc_channel_args_destroy(new_args); in TEST_F() 321 grpc_channel_args* new_args = nullptr; in TEST_F() local [all …]
|
/external/cronet/build/util/ |
D | version_test.py | 13 new_args = args[:] 16 new_args[flag_index + 1] = val 17 return new_args 87 new_args = get_new_args(_VersionTest._EXAMPLE_ARGS) 88 return version.BuildOutput(new_args) 124 new_args = _ReplaceArgs(args_with_template, ['-a', 'arm64']) 125 output = self._RunBuildOutput(get_new_args=lambda args: new_args) 143 new_args = _ReplaceArgs(args_with_template, ['-a', 'x64']) 144 output = self._RunBuildOutput(get_new_args=lambda args: new_args) 154 new_args = _ReplaceArgs(self._EXAMPLE_ANDROID_ARGS, ['-a', 'foobar']) [all …]
|
/external/angle/build/util/ |
D | version_test.py | 13 new_args = args[:] 16 new_args[flag_index + 1] = val 17 return new_args 87 new_args = get_new_args(_VersionTest._EXAMPLE_ARGS) 88 return version.BuildOutput(new_args) 124 new_args = _ReplaceArgs(args_with_template, ['-a', 'arm64']) 125 output = self._RunBuildOutput(get_new_args=lambda args: new_args) 143 new_args = _ReplaceArgs(args_with_template, ['-a', 'x64']) 144 output = self._RunBuildOutput(get_new_args=lambda args: new_args) 154 new_args = _ReplaceArgs(self._EXAMPLE_ANDROID_ARGS, ['-a', 'foobar']) [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/client/insecure/ |
D | channel_create.cc | 42 grpc_channel_args* new_args = in CreateSubchannel() local 45 Subchannel::Create(MakeOrphanable<Chttp2Connector>(), new_args); in CreateSubchannel() 46 grpc_channel_args_destroy(new_args); in CreateSubchannel() 68 grpc_channel_args* new_args = in CreateChannel() local 71 target, new_args, GRPC_CLIENT_CHANNEL, nullptr, nullptr, error); in CreateChannel() 72 grpc_channel_args_destroy(new_args); in CreateChannel() 107 grpc_channel_args* new_args = grpc_channel_args_copy_and_add_and_remove( in grpc_insecure_channel_create() local 111 grpc_channel* channel = grpc_core::CreateChannel(target, new_args, &error); in grpc_insecure_channel_create() 113 grpc_channel_args_destroy(new_args); in grpc_insecure_channel_create()
|
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | proxy_mapper_registry.cc | 55 grpc_channel_args** new_args) { in grpc_proxy_mapper_list_map_name() argument 58 name_to_resolve, new_args)) { in grpc_proxy_mapper_list_map_name() 68 grpc_channel_args** new_args) { in grpc_proxy_mapper_list_map_address() argument 71 new_args)) { in grpc_proxy_mapper_list_map_address() 112 grpc_channel_args** new_args) { in grpc_proxy_mappers_map_name() argument 114 name_to_resolve, new_args); in grpc_proxy_mappers_map_name() 119 grpc_channel_args** new_args) { in grpc_proxy_mappers_map_address() argument 121 new_address, new_args); in grpc_proxy_mappers_map_address()
|
D | proxy_mapper.cc | 32 grpc_channel_args** new_args) { in grpc_proxy_mapper_map_name() argument 34 new_args); in grpc_proxy_mapper_map_name() 41 grpc_channel_args** new_args) { in grpc_proxy_mapper_map_address() argument 43 new_args); in grpc_proxy_mapper_map_address()
|
D | proxy_mapper.h | 39 grpc_channel_args** new_args); 48 grpc_channel_args** new_args); 64 grpc_channel_args** new_args); 70 grpc_channel_args** new_args);
|
D | client_channel_plugin.cc | 43 grpc_channel_args* new_args = grpc_channel_args_copy_and_add( in append_filter() local 45 grpc_channel_stack_builder_set_channel_arguments(builder, new_args); in append_filter() 46 grpc_channel_args_destroy(new_args); in append_filter()
|
D | http_proxy.cc | 104 grpc_channel_args** new_args) { in proxy_mapper_map_name() argument 179 *new_args = grpc_channel_args_copy_and_add(args, args_to_add, 2); in proxy_mapper_map_name() 182 *new_args = grpc_channel_args_copy_and_add(args, args_to_add, 1); in proxy_mapper_map_name() 199 grpc_channel_args** new_args) { in proxy_mapper_map_address() argument
|
/external/grpc-grpc/src/core/ext/transport/chttp2/client/insecure/ |
D | channel_create.cc | 67 grpc_channel_args* new_args = in client_channel_factory_create_channel() local 70 grpc_channel_create(target, new_args, GRPC_CLIENT_CHANNEL, nullptr); in client_channel_factory_create_channel() 71 grpc_channel_args_destroy(new_args); in client_channel_factory_create_channel() 98 grpc_channel_args* new_args = grpc_channel_args_copy_and_add(args, &arg, 1); in grpc_insecure_channel_create() local 102 new_args); in grpc_insecure_channel_create() 104 grpc_channel_args_destroy(new_args); in grpc_insecure_channel_create()
|
/external/cronet/testing/trigger_scripts/ |
D | chromeos_device_trigger.py | 109 new_args = additional_args[:1] 115 new_args.extend(['--dimension', k, v]) 122 new_args.extend(['--dimension', 'device_status', 'available']) 124 new_args.extend([ 128 new_args += additional_args[1:] 130 return triggerer.run_swarming_go(new_args, args.dump_json,
|
/external/grpc-grpc/src/core/ext/transport/chttp2/client/secure/ |
D | secure_channel_create.cc | 130 grpc_channel_args* new_args = grpc_channel_args_copy_and_add( in get_secure_naming_subchannel_args() local 144 final_sc_args->args = new_args; in get_secure_naming_subchannel_args() 180 grpc_channel_args* new_args = in client_channel_factory_create_channel() local 183 grpc_channel_create(target, new_args, GRPC_CLIENT_CHANNEL, nullptr); in client_channel_factory_create_channel() 184 grpc_channel_args_destroy(new_args); in client_channel_factory_create_channel() 217 grpc_channel_args* new_args = grpc_channel_args_copy_and_add( in grpc_secure_channel_create() local 222 new_args); in grpc_secure_channel_create() 224 grpc_channel_args_destroy(new_args); in grpc_secure_channel_create()
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/cronet/client/secure/ |
D | cronet_channel_create.cc | 54 grpc_channel_args* new_args = grpc_channel_args_copy_and_add( in grpc_cronet_secure_channel_create() local 58 grpc_create_cronet_transport(engine, target, new_args, reserved); in grpc_cronet_secure_channel_create() 62 grpc_channel_create(target, new_args, GRPC_CLIENT_DIRECT_CHANNEL, ct); in grpc_cronet_secure_channel_create() 63 grpc_channel_args_destroy(new_args); in grpc_cronet_secure_channel_create()
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/ |
D | proxy_mapper_registry.cc | 66 grpc_channel_args** new_args) { in MapName() argument 69 if (mapper->MapName(server_uri, args, name_to_resolve, new_args)) { in MapName() 79 grpc_channel_args** new_args) { in MapAddress() argument 82 if (mapper->MapAddress(address, args, new_address, new_args)) { in MapAddress()
|
/external/autotest/server/site_tests/platform_MTBF/ |
D | generate_tests.py | 80 new_args = [] 82 new_args.append(_substitute_constants(arg, constants)) 83 new_test['args'] = new_args 114 new_args = [] 116 new_args.append(_substitute_constants(arg, constants)) 117 new_suite['args'] = new_args
|
/external/autotest/client/bin/result_tools/ |
D | utils.py | 286 new_args = copy.copy(args) 287 new_args['file_size_threshold_byte'] = 50 * 1024 288 throttlers.append((zip_file_throttler, new_args)) 297 new_args = copy.copy(args) 298 new_args.update({'file_size_threshold_byte': threshold, 300 throttlers.append((delete_file_throttler, new_args)) 302 new_args = copy.copy(args) 303 new_args.update({'file_size_threshold_byte': delete_file_thresholds[-1]}) 304 throttlers.append((delete_file_throttler, new_args))
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/client/ |
D | authority.cc | 27 grpc_arg new_args[1]; in grpc_default_authority_add_if_not_present() local 37 new_args[num_new_args++] = grpc_channel_arg_string_create( in grpc_default_authority_add_if_not_present() 41 return grpc_channel_args_copy_and_add(args, new_args, num_new_args); in grpc_default_authority_add_if_not_present()
|
/external/grpc-grpc/src/core/ext/transport/chttp2/client/ |
D | authority.cc | 27 grpc_arg new_args[1]; in grpc_default_authority_add_if_not_present() local 38 new_args[num_new_args++] = grpc_channel_arg_string_create( in grpc_default_authority_add_if_not_present() 41 return grpc_channel_args_copy_and_add(args, new_args, num_new_args); in grpc_default_authority_add_if_not_present()
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/ |
D | grpclb_channel_secure.cc | 76 grpc_channel_args* new_args = in CreateGrpclbBalancerChannel() local 79 grpc_secure_channel_create(creds, target_uri, new_args, nullptr); in CreateGrpclbBalancerChannel() 80 grpc_channel_args_destroy(new_args); in CreateGrpclbBalancerChannel()
|
/external/cronet/testing/merge_scripts/code_coverage/ |
D | merge_results.py | 159 new_args = [ 171 new_args += json.loads(params.additional_merge_script_args) 173 new_args += params.jsons_to_merge 175 args = [sys.executable, params.additional_merge_script] + new_args
|