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

12345678910

/haiku/headers/os/package/
H A DPackageInfo.h42 virtual void OnError(const BString& msg, int line, int col) = 0;
/haiku/src/add-ons/translators/raw/
H A DRAW.cpp2680 uint8* line, lookUpTable[0x10000];
2687 line = (uint8 *)malloc(outputRow);
2688 if (line == NULL)
2691 memset(line, 0, outputRow);
2709 line[col * 4 + 2] = lookUpTable[fImageData[sourceOffset][0]];
2710 line[col * 4 + 1] = lookUpTable[fImageData[sourceOffset][1]];
2711 line[col * 4 + 0] = lookUpTable[fImageData[sourceOffset][2]];
2714 memcpy(&outputBuffer[outputOffset], line, outputRow);
2719 uint16* ppm2 = (uint16*)line;
2731 free(line);
[all...]
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c1039 char line[500]; local
1126 while ( fgets( line, sizeof(line), fp ) != (char*) 0 )
1129 l = strlen( line );
1130 if ( line[l - 1] == '\n' )
1131 line[l - 1] = '\0';
1133 cryp = strchr( line, ':' );
1138 if ( strcmp( line, authinfo ) == 0 )
1147 &hc->remoteuser, &hc->maxremoteuser, strlen( line ) );
1148 (void) strcpy( hc->remoteuser, line );
[all...]
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DDVBMediaNode.cpp2758 char line[1024]; local
2759 while (fgets(line, sizeof(line), f)) {
2760 if (line[0] == ':') // skip comments
2762 if (strchr(line, ':') == NULL) // skip empty lines
2764 fChannelList->AddItem(line);
/haiku/src/system/libnetwork/netresolv/net/
H A Dgethnamaddr.c1111 _yp_hostent(char *line, int af, struct getnamaddr *info) argument
1116 char *p = line;
1124 _DIAGASSERT(line != NULL);
1156 /* skip to the next line */
H A Dgetaddrinfo.c2426 _yphostent(char *line, const struct addrinfo *pai) argument
2436 _DIAGASSERT(line != NULL);
2439 p = line;
2446 /* terminate line */
/haiku/src/add-ons/kernel/drivers/audio/cmedia/
H A Dpcm.c831 sound->left.adc_source = line; // record line left
881 sound->right.adc_source = line; //record line right
973 case line:
1003 OLDAPI(("line: %x\n", u));
1014 case line:
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css207 text-decoration:line-through;
289 /* All these borders may interfere with text on the line bellow. Make
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp854 int32 line = offset / bytesPerLine; local
859 point.y = line * fLineHeight;
939 // single line case
948 // first line
/haiku/src/kits/debugger/controllers/
H A DDebugReportGenerator.cpp575 int32 line = statement->StartSourceLocation().Line(); local
581 sourcePath.String(), line);
/haiku/src/add-ons/kernel/drivers/ports/pc_serial/
H A DSerialDevice.cpp650 // we don't overrun the tty line buffer and cause it to block. While
819 SerialDevice::SignalControlLineState(int line, bool enable) argument
821 gTTYModule->tty_hardware_signal(fSystemTTYCookie, line, enable);
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp668 int32 line; local
669 if (message->FindInt32("be:line", &line) == B_OK) {
670 fTextView->GoToLine(line);
1494 // preserve caret line and position
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DTeamWindow.cpp1550 // scroll to the breakpoint's source code line number (it is not done
1771 int32 line = location.GetSourceLocation().Line(); local
1773 if (location.SourceFile() != NULL && line >= 0
1776 fSourceView->ScrollToLine(line);
/haiku/headers/os/interface/
H A DTextView.h158 int32 OffsetAt(int32 line) const;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath.c301 const char *file, int line)
308 line,
354 _ath_power_set_selfgen(struct ath_softc *sc, int power_state, const char *file, int line) argument
362 line,
390 _ath_power_set_power_state(struct ath_softc *sc, int power_state, const char *file, int line) argument
397 line,
428 _ath_power_restore_power_state(struct ath_softc *sc, const char *file, int line) argument
436 line,
300 _ath_power_setpower(struct ath_softc *sc, int power_state, int selfgen, const char *file, int line) argument
/haiku/src/kits/package/hpkg/
H A DPackageWriterImpl.cpp524 virtual void OnError(const BString& msg, int line, int col) { argument
526 B_HPKG_PACKAGE_INFO_FILE_NAME, line, col, msg.String());
/haiku/src/apps/mail/
H A DMailWindow.cpp2063 HorizontalLine line(BRect(0, 0, pageRect.right, 0));
2064 bmap.AddChild(&line);
2065 print.DrawView(&line, line.Bounds(), BPoint(0, header_height + 1));
2102 bmap.RemoveChild(&line);
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.cpp209 Error(TCPEndpoint* endpoint, const char* error, int32 line) argument
212 fLine(line),
221 out.Print("tcp:%p (%12s) error at line %" B_PRId32 ": %s", fEndpoint,
/haiku/src/bin/network/telnet/
H A Dtelnet.c120 char *line; /* hack around breakage in sra.c :-( !! */
119 char *line; /* hack around breakage in sra.c :-( !! */ variable
/haiku/src/apps/serialconnect/libvterm/src/
H A Dstate.c86 // Update lineinfo if full line
771 // Setting DECVSSM must clear doublewidth/doubleheight state of every line
1244 /* TODO: 1, 2 and 4 aren't meaningful yet without line tab stops */

Completed in 156 milliseconds

12345678910