Symbol: LineAt
headers/os/interface/TextView.h
156
int32 LineAt(int32 offset) const;
headers/os/interface/TextView.h
157
int32 LineAt(BPoint point) const;
headers/private/debugger/files/SourceFile.h
32
const char* LineAt(int32 index) const;
headers/private/debugger/model/DisassembledCode.h
42
virtual const char* LineAt(int32 index) const;
headers/private/debugger/model/FileSourceCode.h
45
virtual const char* LineAt(int32 index) const;
headers/private/debugger/model/LineDataSource.h
17
virtual const char* LineAt(int32 index) const = 0;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1251
fFilterModel->SelectedItemAt(LineAt(point)));
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
447
int32 line = LineAt(where);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1251
const char* lineData = fSourceCode->LineAt(i);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1563
for (int32 i = 0; const char* line = fSourceCode->LineAt(i); i++)
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1637
if (fSourceCode->LineAt(line)[i] == '\t')
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1655
const char* sourceLine = fSourceCode->LineAt(line);
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1735
text.SetTo(fSourceCode->LineAt(fSelectionStart.line)
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1739
text.SetTo(fSourceCode->LineAt(fSelectionStart.line)
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1743
text << fSourceCode->LineAt(i) << "\n";
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1744
text.Append(fSourceCode->LineAt(fSelectionEnd.line),
src/apps/debugger/user_interface/gui/team_window/SourceView.cpp
1770
const char* line = fSourceCode->LineAt(point.line);
src/apps/mail/MailWindow.cpp
2208
lastLine = fContentView->TextView()->LineAt(
src/apps/terminal/HistoryBuffer.cpp
80
HistoryLine* line = LineAt(index);
src/apps/terminal/HistoryBuffer.h
30
inline HistoryLine* LineAt(int32 index) const;
src/kits/debugger/controllers/DebugReportGenerator.cpp
724
data << code->LineAt(i);
src/kits/debugger/model/FileSourceCode.cpp
90
return fSourceFile->LineAt(index);
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
233
const char* line = fHighlightSource->LineAt(i);
src/kits/interface/TextView.cpp
1347
return LineAt(fSelStart);