Home
last modified time | relevance | path

Searched refs:str_value (Results 1 – 2 of 2) sorted by relevance

/misc/config_tools/library/
A Dhv_cfg_lib.py41 def is_numeric_check(str_value, prime_item, item): argument
44 if str_value == '0':
46 str_hex_0x = str_value.lstrip('0x')
47 str_hex_0X = str_value.lstrip('0X')
57 def range_check(str_value, prime_item, item, range_val): argument
59 value = acrn_config_utilities.num2int(str_value)
A Dacrn_config_utilities.py574 def num2int(str_value): argument
577 if isinstance(str_value, int):
578 val = str_value
580 if str_value.isnumeric():
581 val = int(str_value)
584 val = int(str_value, 16)

Completed in 6 milliseconds