Searched refs:LineInfo (Results 1 - 25 of 32) sorted by relevance

12

/external/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp53 auto LineInfo = LineNumbers->getNext();
54 assert(LineInfo);
55 auto SourceFile = Session->getSourceFileById(LineInfo->getSourceFileId());
60 Result.Column = LineInfo->getColumnNumber();
61 Result.Line = LineInfo->getLineNumber();
76 while (auto LineInfo = LineNumbers->getNext()) {
78 getLineInfoForAddress(LineInfo->getVirtualAddress(), Specifier);
79 Table.push_back(std::make_pair(LineInfo->getVirtualAddress(), LineEntry));
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp113 std::vector<LineNumberInfo> LineInfo; local
139 LineInfo.push_back(
142 if (LineInfo.size() == 0) {
153 LineNumberInfo last = LineInfo.back();
155 LineInfo.push_back(last);
156 for (size_t i = LineInfo.size() - 2; i > 0; --i)
157 LineInfo[i].LineNumber = LineInfo[i - 1].LineNumber;
162 FunctionMessage.line_number_size = LineInfo.size();
163 FunctionMessage.line_number_table = &*LineInfo
[all...]
/external/clang/include/clang/Rewrite/Frontend/
H A DASTConsumers.h37 bool SilenceRewriteMacroWarning, bool LineInfo);
/external/libedit/src/
H A Dhistedit.h66 } LineInfo; typedef in typeref:struct:lineinfo
177 const LineInfo *el_line(EditLine *);
242 int tok_line(Tokenizer *, const LineInfo *,
H A Del.h147 LineInfo el_lgcylinfo; /* Legacy LineInfo buffer */
H A Deln.c343 const LineInfo *
347 LineInfo *info = &el->el_lgcylinfo;
H A Dtokenizer.c195 FUN(tok,line)(TYPE(Tokenizer) *tok, const TYPE(LineInfo) *line,
447 TYPE(LineInfo) li;
H A Del.c518 public const TYPE(LineInfo) *
522 return (const TYPE(LineInfo) *)(void *)&el->el_line;
H A Dfilecomplete.c416 const TYPE(LineInfo) *li;
H A Dreadline.c231 const LineInfo *li;
2100 const LineInfo *li = el_line(e);
/external/llvm/include/llvm/Support/
H A DGCOV.h399 : Options(Options), LineInfo(), RunCount(0), ProgramCount(0) {}
402 if (Line > LineInfo[Filename].LastLine)
403 LineInfo[Filename].LastLine = Line;
404 LineInfo[Filename].Blocks[Line - 1].push_back(Block);
408 if (Line > LineInfo[Filename].LastLine)
409 LineInfo[Filename].LastLine = Line;
410 LineInfo[Filename].Functions[Line - 1].push_back(Function);
433 StringMap<LineData> LineInfo; member in class:llvm::FileInfo
/external/icu/icu4c/source/samples/layout/
H A Dparagraph.h30 class LineInfo;
/external/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp203 DILineInfo LineInfo; local
205 LineInfo = DebugInfoContext->getLineInfoForAddress(
214 LineInfo.FunctionName = FunctionName;
217 return LineInfo;
H A DSymbolize.cpp62 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts.PrintFunctions, local
65 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info);
66 return LineInfo;
/external/google-breakpad/src/common/dwarf/
H A Dfunctioninfo.cc169 scoped_ptr<LineInfo> lireader(new LineInfo(iter->second.first + data,
H A Ddwarf2reader.h81 class LineInfo { class in namespace:dwarf2reader
88 LineInfo(const char* buffer_, uint64 buffer_length,
91 virtual ~LineInfo() {
H A Ddwarf2reader.cc31 // Implementation of dwarf2reader::LineInfo, dwarf2reader::CompilationUnit,
518 LineInfo::LineInfo(const char* buffer, uint64 buffer_length, function in class:LineInfo
525 uint64 LineInfo::Start() {
533 void LineInfo::ReadHeader() {
616 bool LineInfo::ProcessOneOpcode(ByteReader* reader,
802 void LineInfo::ReadLines() {
/external/google-breakpad/src/common/solaris/
H A Ddump_symbols.cc82 struct LineInfo { struct in namespace:__anon6123
112 std::vector<struct LineInfo> line_info;
276 struct LineInfo line;
376 struct LineInfo &line_info = func_info.line_info[k];
382 struct LineInfo &next_line = func_info.line_info[k + 1];
542 const struct LineInfo &line_info = func_info.line_info[i];
/external/libedit/examples/
H A Dtc1.c98 const LineInfo *lf = el_line(el);
186 const LineInfo *li;
/external/v8/src/
H A Dgdb-jit.cc911 class LineInfo : public Malloced { class in namespace:v8::internal
913 LineInfo() : pc_info_(10) {} function in class:v8::internal::LineInfo
949 LineInfo* lineinfo)
956 LineInfo* lineinfo() const { return lineinfo_; }
1017 LineInfo* lineinfo_;
1500 List<LineInfo::PCInfo>* pc_info = desc_->lineinfo()->pc_info();
1505 LineInfo::PCInfo* info = &pc_info->at(i);
1576 static int ComparePCInfo(const LineInfo::PCInfo* a,
1577 const LineInfo::PCInfo* b) {
2009 static void PutLineInfo(Address addr, LineInfo* inf
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_aaline.c42 struct LineInfo struct
264 compute_coveragef(const struct LineInfo *info,
326 typedef void (*plot_func)(struct gl_context *ctx, struct LineInfo *line,
336 struct LineInfo *line,
H A Ds_aalinetemp.h37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
113 /* Init the LineInfo struct */
114 struct LineInfo line;
/external/llvm/lib/LineEditor/
H A DLineEditor.cpp141 const LineInfo *LI = ::el_line(EL);
/external/llvm/lib/IR/
H A DGCOV.cpp570 for (const auto &LI : LineInfo) {
/external/google-breakpad/src/common/linux/
H A Ddump_symbols.cc204 // dwarf2reader::LineInfo and populates a Module and a line vector
217 dwarf2reader::LineInfo parser(program, length, byte_reader_, &handler);

Completed in 1917 milliseconds

12