Searched refs:parser_error (Results 1 – 4 of 4) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/ |
D | service_config_parser.cc | 54 grpc_error* parser_error = GRPC_ERROR_NONE; in ParseGlobalParameters() local 56 args, json, &parser_error); in ParseGlobalParameters() 57 if (parser_error != GRPC_ERROR_NONE) { in ParseGlobalParameters() 58 error_list.push_back(parser_error); in ParseGlobalParameters() 75 grpc_error* parser_error = GRPC_ERROR_NONE; in ParsePerMethodParameters() local 77 args, json, &parser_error); in ParsePerMethodParameters() 78 if (parser_error != GRPC_ERROR_NONE) { in ParsePerMethodParameters() 79 error_list.push_back(parser_error); in ParsePerMethodParameters()
|
D | service_config.cc | 78 grpc_error* parser_error = GRPC_ERROR_NONE; in ParseJsonMethodConfig() local 80 ServiceConfigParser::ParsePerMethodParameters(args, json, &parser_error); in ParseJsonMethodConfig() 81 if (parser_error != GRPC_ERROR_NONE) { in ParseJsonMethodConfig() 82 error_list.push_back(parser_error); in ParseJsonMethodConfig()
|
/external/python/cpython3/Modules/ |
D | parsermodule.c | 182 parser_error = 0; variable 554 PyErr_SetString(parser_error, message); in err_string() 652 PyErr_Format(parser_error, "Unrecognized node type %d.", TYPE(tree)); in validate_node() 667 PyErr_Format(parser_error, "Unrecognized node type %d.", ch_type); in validate_node() 704 PyErr_Format(parser_error, "Expected %s, got %s.", in validate_node() 710 PyErr_Format(parser_error, "Illegal terminal: expected '%s'.", in validate_node() 714 PyErr_Format(parser_error, "Illegal terminal: expected %s.", in validate_node() 731 PyErr_Format(parser_error, in validate_node() 862 PyErr_SetObject(parser_error, err); in build_node_children() 883 PyErr_Format(parser_error, in build_node_children() [all …]
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 160 parser_error = 0; variable 551 PyErr_SetString(parser_error, message); in err_string() 769 PyErr_SetObject(parser_error, err); in build_node_children() 789 PyErr_Format(parser_error, in build_node_children() 807 PyErr_Format(parser_error, in build_node_children() 835 PyErr_SetObject(parser_error, err); in build_node_children() 889 PyErr_SetObject(parser_error, tuple); in build_node_tree() 902 PyErr_SetString(parser_error, "missed encoding"); in build_node_tree() 906 PyErr_Format(parser_error, in build_node_tree() 951 PyErr_SetObject(parser_error, err); in build_node_tree() [all …]
|