Searched refs:value_view (Results 1 – 1 of 1) sorted by relevance
478 std::string_view value_view = value; in ParseIntegral() local479 const bool is_byte = ConsumeSuffix(&value_view, "u8"); in ParseIntegral()480 const bool is_unsigned_int = ConsumeSuffix(&value_view, "u32"); in ParseIntegral()481 const bool is_long = ConsumeSuffix(&value_view, "l") || ConsumeSuffix(&value_view, "L"); in ParseIntegral()482 const bool is_unsigned_long = ConsumeSuffix(&value_view, "u64"); in ParseIntegral()487 std::string raw_value_substr = std::string(value_view); in ParseIntegral()