MCPcopy Create free account

hub / github.com/coooodeer/parse-rust / functions

Functions394 in github.com/coooodeer/parse-rust

Functiontest_control_characters_in_both
ASCII control chars (\\x01-\\x1f) must not crash.
tests/test_security_inputs.py:116
Functiontest_convert_binary
()
src/types.rs:473
Functiontest_convert_decimal
()
src/types.rs:449
Functiontest_convert_float
()
src/types.rs:489
Functiontest_convert_float_decimal_preserves_text
()
src/types.rs:532
Functiontest_convert_hex
()
src/types.rs:465
Functiontest_convert_negative_decimal
()
src/types.rs:457
Functiontest_convert_number_with_sep
()
src/types.rs:505
Functiontest_convert_octal
()
src/types.rs:481
Functiontest_convert_percentage
()
src/types.rs:497
Functiontest_convert_string_types
()
src/types.rs:513
Functiontest_custom_datetime_regex
()
src/types.rs:564
Functiontest_custom_type
()
tests/test_parse.py:123
Functiontest_custom_type_override_and_search_findall_conversion_work
()
tests/test_python_api_integration.py:230
Functiontest_custom_types_work_for_top_level_and_compiled_paths
()
tests/test_python_api_integration.py:185
Functiontest_datetime_and_custom_percent_formats_return_python_temporals
()
tests/test_python_api_integration.py:161
Functiontest_datetime_edge_values
Weird but parseable datetime strings must not crash.
tests/test_security_inputs.py:361
Functiontest_datetime_group_count
()
tests/test_parse.py:616
Functiontest_datetime_token_regex_helpers
()
src/types.rs:540
Functiontest_datetime_with_various_subsecond_precision
()
tests/test_parse.py:386
Functiontest_datetimes
()
tests/test_parse.py:456
Functiontest_decimal_value
()
tests/test_parsetype.py:170
Functiontest_deeply_nested_fields_compile
A format with deep nested fields must compile.
tests/test_security_inputs.py:187
Functiontest_deeply_nested_fields_parse
Deep nested fields must parse correctly.
tests/test_security_inputs.py:202
Functiontest_dict_style_fields
()
tests/test_pattern.py:78
Functiontest_dot_separated_fields
()
tests/test_pattern.py:70
Functiontest_dot_separated_fields_name_collisions
()
tests/test_pattern.py:85
Functiontest_dotted_type_conversion_pull_8
()
tests/test_bugs.py:27
Functiontest_double_close_brace
Stray closing brace must not crash.
tests/test_security_inputs.py:298
Functiontest_empty_format_string
An empty format must not crash.
tests/test_security_inputs.py:252
Functiontest_empty_input_string
An empty input string with non-empty format must return None.
tests/test_security_inputs.py:260
Functiontest_escape_regex
()
src/compiler.rs:717
Functiontest_extract_format_parses_type_and_width_precision
()
tests/test_python_api_integration.py:251
Functiontest_findall
()
tests/test_findall.py:4
Functiontest_findall_basic
()
src/parser.rs:656
Functiontest_findall_endpos_before_pos
findall with endpos < pos must return empty.
tests/test_security_inputs.py:400
Functiontest_findall_on_empty_string
findall on empty string must return empty iterator.
tests/test_security_inputs.py:386
Functiontest_findall_returns_iterator_object
()
tests/test_python_api_integration.py:54
Functiontest_fixed
()
tests/test_pattern.py:15
Functiontest_fixed
()
tests/test_parse.py:66
Functiontest_fixed_access
()
tests/test_result.py:6
Functiontest_flexible_dates_j
()
tests/test_parse.py:443
Functiontest_flexible_dates_single_digit
()
tests/test_parse.py:438
Functiontest_flexible_dates_year_current_year_inferred
()
tests/test_parse.py:451
Functiontest_flexible_datetime_with_colon
()
tests/test_parse.py:381
Functiontest_flexible_datetime_with_timezone
()
tests/test_parse.py:406
Functiontest_flexible_datetime_with_timezone_that_has_colons
()
tests/test_parse.py:416
Functiontest_flexible_datetimes
()
tests/test_parse.py:357
Functiontest_flexible_time
()
tests/test_parse.py:423
Functiontest_flexible_time_ms
()
tests/test_parse.py:433
Functiontest_flexible_time_no_hour
()
tests/test_parse.py:428
Functiontest_float_edge_values
NaN/Inf representations must not crash.
tests/test_security_inputs.py:351
Functiontest_format_equals_input
Literal format that equals the entire input must match (zero fields).
tests/test_security_inputs.py:276
Functiontest_format_not_interpreted_as_regex_directly
Format strings with regex metacharacters must be literal, not regex.
tests/test_security_inputs.py:218
Functiontest_format_type_from_str
()
src/types.rs:440
Functiontest_format_variety
()
tests/test_pattern.py:44
Functiontest_four_byte_emoji
4-byte UTF-8 emoji must work and span offsets must be character-based.
tests/test_security_inputs.py:129
Functiontest_hexadecimal
()
tests/test_parse.py:60
Functiontest_huge_format_field_count_does_not_stack_overflow
A format string with 100 fields must compile without crash.
tests/test_security_inputs.py:65
Functiontest_huge_string_does_not_oom
A 1 MiB single-line string must not OOM or hang.
tests/test_security_inputs.py:54
Functiontest_hyphen_inside_field_name
()
tests/test_parse.py:776
Functiontest_hyphen_inside_field_name_collision_handling
()
tests/test_parse.py:786
Functiontest_incomplete_format_spec
Format with empty spec ({:}) must be treated as {}, not crash.
tests/test_security_inputs.py:324
Functiontest_int_convert_stateless_base
()
tests/test_parsetype.py:213
Functiontest_integer_overflow
Very large integer strings must not crash, return int or None.
tests/test_security_inputs.py:337
Functiontest_invalid_groupnames_are_handled_gracefully
()
tests/test_pattern.py:94
Functiontest_invalid_regex_group_count_configuration_raises_at_parse_time
()
tests/test_python_api_integration.py:214
Functiontest_is_datetime
()
src/types.rs:557
Functiontest_is_numeric
()
src/types.rs:549
Functiontest_left
()
tests/test_parse.py:72
Functiontest_letters
()
tests/test_parse.py:750
Functiontest_many_search_results_do_not_exhaust_memory
findall on a string with many matches must not blow memory.
tests/test_security_inputs.py:78
Functiontest_match_objects_support_deferred_evaluation
()
tests/test_python_api_integration.py:91
Functiontest_match_trailing_newline
()
tests/test_bugs.py:101
Functiontest_microsecond_precision_issue162
()
tests/test_bugs.py:106
Functiontest_mixed
()
tests/test_parse.py:178
Functiontest_mixed_byte_and_unicode_spans
Spans on mixed ASCII/CJK must report character offsets, not byte offsets.
tests/test_security_inputs.py:171
Functiontest_mixed_type_variant
()
tests/test_parse.py:688
Functiontest_mixed_types
()
tests/test_parse.py:634
Functiontest_multiline
()
tests/test_search.py:9
Functiontest_multiline
()
tests/test_parse.py:203
Functiontest_named
()
tests/test_pattern.py:21
Functiontest_named
()
tests/test_parse.py:142
Functiontest_named_access
()
tests/test_result.py:25
Functiontest_named_aligned_typed
()
tests/test_parse.py:193
Functiontest_named_date_issue7
()
tests/test_bugs.py:13
Functiontest_named_repeated
()
tests/test_parse.py:148
Functiontest_named_repeated_fail_value
()
tests/test_parse.py:160
Functiontest_named_repeated_type
()
tests/test_parse.py:154
Functiontest_named_repeated_type_fail_value
()
tests/test_parse.py:166
Functiontest_named_repeated_type_mismatch
()
tests/test_parse.py:172
Functiontest_named_typed
()
tests/test_pattern.py:27
Functiontest_named_typed
()
tests/test_parse.py:185
Functiontest_nested_braces
Escaped braces ({{ }}) must be treated as literal, not crash.
tests/test_security_inputs.py:307
Functiontest_nested_named_fields_expand_to_nested_dicts
()
tests/test_python_api_integration.py:154
Functiontest_no_evaluate_result
()
tests/test_findall.py:11
Functiontest_no_evaluate_result
()
tests/test_search.py:19
Functiontest_no_evaluate_result
()
tests/test_parse.py:24
Functiontest_no_match
()
tests/test_parse.py:12
Functiontest_normalize_fractional_seconds_padding_and_truncation
()
src/result.rs:666
← previousnext →201–300 of 394, ranked by callers