Lines Matching refs:replacement
288 struct value *replacement = NULL;
291 gdbpy_ref<> py_str = pretty_print_one_value (printer, &replacement);
338 else if (replacement)
343 common_val_print (replacement, stream, recurse, &opts, language);
636 PyObject containing the string. For any other type, *REPLACEMENT is
637 set to the replacement value and this function returns NULL. On
638 error, *REPLACEMENT is set to NULL and this function also returns
642 struct value **replacement,
649 *replacement = NULL;
650 gdbpy_ref<> py_str = pretty_print_one_value (printer_obj, replacement);
652 if (*replacement == NULL && py_str == NULL)