Lines Matching refs:new_content

2220 rich_location::add_fixit_insert_before (const char *new_content)  in add_fixit_insert_before()  argument
2222 add_fixit_insert_before (get_loc (), new_content); in add_fixit_insert_before()
2230 const char *new_content) in add_fixit_insert_before() argument
2233 maybe_add_fixit (start, start, new_content); in add_fixit_insert_before()
2240 rich_location::add_fixit_insert_after (const char *new_content) in add_fixit_insert_after() argument
2242 add_fixit_insert_after (get_loc (), new_content); in add_fixit_insert_after()
2250 const char *new_content) in add_fixit_insert_after() argument
2264 maybe_add_fixit (next_loc, next_loc, new_content); in add_fixit_insert_after()
2301 rich_location::add_fixit_replace (const char *new_content) in add_fixit_replace() argument
2303 add_fixit_replace (get_loc (), new_content); in add_fixit_replace()
2313 const char *new_content) in add_fixit_replace() argument
2316 add_fixit_replace (range, new_content); in add_fixit_replace()
2324 const char *new_content) in add_fixit_replace() argument
2341 maybe_add_fixit (start, finish, new_content); in add_fixit_replace()
2401 const char *new_content) in maybe_add_fixit() argument
2445 const char *newline = strchr (new_content, '\n'); in maybe_add_fixit()
2481 if (prev->maybe_append (start, next_loc, new_content)) in maybe_add_fixit()
2484 m_fixit_hints.push (new fixit_hint (start, next_loc, new_content)); in maybe_add_fixit()
2491 const char *new_content) in fixit_hint() argument
2494 m_bytes (xstrdup (new_content)), in fixit_hint()
2495 m_len (strlen (new_content)) in fixit_hint()
2530 const char *new_content) in maybe_append() argument
2539 size_t extra_len = strlen (new_content); in maybe_append()
2541 memcpy (m_bytes + m_len, new_content, extra_len); in maybe_append()