Lines Matching +defs:comment +defs:start
990 // scrolling area. The region is defined by the index of the start and end lines
991 // of the region. The start and end lines may be equal, in which case, the
994 int start;
997 ScrollContext(int line) : start(line), end(line) {}
998 ScrollContext(int _start, int _end) : start(_start), end(_end) {}
1001 start += offset;
1762 if (context.start == 1)
1763 context.start--;
2316 // set and false is returned. This method is usually called at the start of an
2541 if (context.start == GetErrorHeight())
2542 context.start = 0;
2561 if (context.start < m_first_visible_line) {
2562 m_first_visible_line = context.start;
7199 const char *comment = inst->GetComment(&exe_ctx);
7205 if (comment != nullptr && comment[0] == '\0')
7206 comment = nullptr;
7210 if (mnemonic != nullptr && operands != nullptr && comment != nullptr)
7211 strm.Printf("%-8s %-25s ; %s", mnemonic, operands, comment);