Searched refs:line (Results 176 - 200 of 245) sorted by relevance

12345678910

/haiku/src/apps/mail/
H A DContent.cpp389 If "view" is NULL, it will assume that "line" lies on a line break,
391 line already has.
394 FillInQuoteTextRuns(BTextView* view, quote_context* context, const char* line,
406 // get index to the beginning of the current line
421 // the following line works only reliable when text wrapping is set to
428 // if the text is not the start of a new line, go back
429 // to the first character in the current line
436 // get number of nested qoutes for current line
440 // if there was no text in this line, ther
[all...]
H A DContent.h257 bool Insert(const char* line, int32 count, bool isHyperLink,
307 const char* line, int32 length, const BFont& font, text_run_array* style,
/haiku/headers/libs/agg/
H A Dagg_renderer_primitives.h155 void line(int x1, int y1, int x2, int y2, bool last=false) function in class:agg::renderer_primitives
201 line(m_curr_x, m_curr_y, x, y, last);
H A Dagg_rasterizer_cells_aa.h70 void line(int x1, int y1, int x2, int y2);
316 void rasterizer_cells_aa<Cell>::line(int x1, int y1, int x2, int y2) function in class:agg::rasterizer_cells_aa
326 line(x1, y1, cx, cy);
327 line(cx, cy, x2, y2);
359 //Vertical line - we have to calculate start and end cells,
361 //all cells of the line. We know exactly there's only one
/haiku/src/add-ons/kernel/debugger/qrencode/
H A Dmodule.cpp48 move_to_and_clear_line(int line) argument
50 kprintf(" \x1b[%dd\x1b[G\x1b[K", line + 1);
/haiku/src/kits/debugger/arch/x86_64/disasm/
H A DDisassemblerX8664.cpp108 DisassemblerX8664::GetNextInstruction(BString& line, target_addr_t& _address, argument
122 line = buffer;
/haiku/src/system/kernel/arch/x86/
H A Darch_debug_console.cpp166 arch_debug_remove_interrupt_handler(uint32 line) argument
168 if (line != INT_PS2_KEYBOARD || !sKeyboardHandlerInstalled)
/haiku/src/apps/haikudepot/textview/
H A DParagraphLayout.h224 void _IncludeStyleInLine(LineInfo& line,
228 const LineInfo& line) const;
/haiku/src/kits/package/manager/
H A DRepositoryBuilder.cpp44 virtual void OnError(const BString& message, int line, int column) argument
46 fErrors << BString().SetToFormat("%s: parse error in line %d:%d: %s\n",
47 fContext, line, column, message.String());
/haiku/src/kits/network/libnetservices/
H A DHttpHeaders.cpp227 BHttpHeaders::AddHeader(const char* line) argument
229 return _AddOrDeleteHeader(new(std::nothrow) BHttpHeader(line));
/haiku/src/add-ons/accelerants/radeon/
H A Dimpactv.c37 int line; local
50 // at line disp + 18 the accumulator is initialized;
51 // simulate timing during vertical blank and find the last CRT line where
52 // a new TV line is started
54 for( line = mode->timing.v_display - 1 + 18; line < mode->timing.v_total - 2; ++line ) {
58 v_first = line + 1;
117 SHOW_FLOW( 2, "Restart in frame %d, line %d, pixel %d",
290 // according to TV standard, having the sync delay of 1 line an
[all...]
/haiku/src/apps/sudoku/
H A DSudokuView.cpp150 char line[1024]; local
154 while (fgets(line, sizeof(line), file) != NULL
156 status = _FilterString(line, sizeof(line), buffer, out, ignore);
241 char* line = text.LockBuffer(1024); local
242 memset(line, 0, 1024);
246 line[i++] = ' ';
247 _SetText(&line[i++], fField->ValueAt(x, y));
249 line[
[all...]
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DSchedulingPage.cpp312 int32 line = (int32)point.y / (int32)fFontInfo.lineHeight; local
313 return line < CountLines() ? line : -1;
325 BRect LineRect(uint32 line) const
327 float y = (float)line * fFontInfo.lineHeight;
447 int32 line = LineAt(where); local
448 if (line >= 0) {
455 firstLine = std::min(firstLine, line);
456 lastLine = std::max(lastLine, line);
460 fSelectionModel->SelectItem(line, tru
[all...]
/haiku/src/tests/kits/storage/testapps/
H A DPathMonitorTest2.cpp137 const char* line = string; local
138 while (line < end) {
139 const char* lineEnd = strchr(line, '\n');
142 << (line == string && firstIndent != NULL ? firstIndent : indent);
143 result.Append(line, lineEnd - line);
144 line = lineEnd;
/haiku/src/add-ons/translators/ppm/
H A DPPMTranslator.cpp133 char line[1024]; local
137 line[0] = 0;
138 fgets(line, 1024, f);
139 if (!line[0])
141 /* remember: line ends with \n, so printf()s don't have to */
142 ptr = line;
150 "settings line: %s",
151 line);
191 LOG_ERR, "unknown PPMTranslator setting: %s", line);
819 /* write each line a
[all...]
/haiku/src/servers/registrar/
H A DAuthenticationManager.cpp1248 while (char* line = fgets(lineBuffer, sizeof(lineBuffer), file.Get())) {
1249 if (strlen(line) == 0)
1260 status_t error = parse_passwd_line(line, name, password, uid, gid,
1263 debug_printf("REG: Unparsable line in passwd DB file: \"%s\"\n",
1296 while (char* line = fgets(lineBuffer, sizeof(lineBuffer), file.Get())) {
1297 if (strlen(line) == 0)
1307 status_t error = parse_group_line(line, name, password, gid, members,
1310 debug_printf("REG: Unparsable line in group DB file: \"%s\"\n",
1343 while (char* line = fgets(lineBuffer, sizeof(lineBuffer), file.Get())) {
1344 if (strlen(line)
[all...]
/haiku/src/libs/libtelnet/
H A Dsra.c63 extern char line[];
441 if (isroot(name) && !rootterm(line))
574 if (isroot(name) && !rootterm(line))
/haiku/src/kits/shared/
H A DJsonTextWriter.cpp86 void HandleError(status_t status, int32 line,
272 BJsonTextWriterStackedEventListener::HandleError(status_t status, int32 line, argument
275 fWriter->HandleError(status, line, message);
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js697 var line = new Uint8Array(this.bytesPerRow);
701 remoteMessage.dataView.readInto(line);
704 imageData.data[position++] = line[x * 3 + 2];
705 imageData.data[position++] = line[x * 3 + 1];
706 imageData.data[position++] = line[x * 3 + 0];
715 var line = new Uint16Array(lineBuffer.buffer);
722 imageData.data[position++] = (line[x] & 0xf800) >> 8;
723 imageData.data[position++] = (line[x] & 0x07e0) >> 3;
724 imageData.data[position++] = (line[x] & 0x001f) << 3;
732 var line
[all...]
/haiku/src/apps/diskprobe/
H A DDataView.h90 void ConvertLine(char* line, off_t offset,
/haiku/src/add-ons/kernel/drivers/ports/pc_serial/
H A DSerialDevice.h72 virtual status_t SignalControlLineState(int line, bool enable);
113 /* line coding */
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmutex.h38 void _mtx_assert(struct mtx *m, int what, const char *file, int line);
/haiku/src/add-ons/kernel/file_cache/
H A Dlaunch_speedup.cpp567 const char *line = buffer; local
569 while (parse_node_ref(line, nodeRef, &line)) {
576 line++;
/haiku/src/apps/serialconnect/
H A DTermView.cpp94 // - The end of line is reached
434 ScrollBufferItem* line local
436 if (line != NULL && pos.col < line->cols) {
437 cell = line->cells[pos.col];
/haiku/src/apps/debugger/user_interface/cli/
H A DCliContext.h92 void AddLineToInputHistory(const char* line);

Completed in 126 milliseconds

12345678910