Home | History | Annotate | Download | only in python

Lines Matching defs:text_part

362   disasm_text_part_object *text_part
364 text_part->string = new std::string (str);
365 text_part->style = style;
367 return gdbpy_ref<> ((PyObject *) text_part);
398 /* Implement DisassembleInfo.text_part method. Creates and returns a new
429 gdbpy_ref<> text_part
432 return text_part.release ();
458 /* Return a string representation of TEXT_PART. The returned string does
462 disasmpy_part_to_string (const disasm_text_part_object *text_part)
464 gdb_assert (text_part->string != nullptr);
465 return *(text_part->string);
495 disasm_text_part_object *text_part
497 str += disasmpy_part_to_string (text_part);
773 gdbpy_ref<> text_part
775 dis->m_parts.emplace_back (std::move (text_part));
1039 gdbpy_ref<> text_part
1041 content.emplace_back (text_part.release ());
1371 disasm_text_part_object *text_part
1373 gdb_assert (text_part->string != nullptr);
1374 info->fprintf_styled_func (info->stream, text_part->style,
1375 "%s", text_part->string->c_str ());
1562 { "text_part", (PyCFunction) disasmpy_info_make_text_part,
1564 "text_part (STRING, STYLE) -> DisassemblerTextPart\n\