HomeSort by relevance Sort by last modified time
    Searched refs:LineInfo (Results 1 - 25 of 42) sorted by null

1 2

  /external/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 53 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/
IntelJITEventListener.cpp 113 std::vector<LineNumberInfo> LineInfo;
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.begin()
    [all...]
  /external/clang/include/clang/Rewrite/Frontend/
ASTConsumers.h 37 bool SilenceRewriteMacroWarning, bool LineInfo);
  /external/libedit/src/
histedit.h 62 typedef struct lineinfo { struct
66 } LineInfo;
177 const LineInfo *el_line(EditLine *);
242 int tok_line(Tokenizer *, const LineInfo *,
el.h 147 LineInfo el_lgcylinfo; /* Legacy LineInfo buffer */
eln.c 343 const LineInfo *
347 LineInfo *info = &el->el_lgcylinfo;
tokenizer.c 195 FUN(tok,line)(TYPE(Tokenizer) *tok, const TYPE(LineInfo) *line,
447 TYPE(LineInfo) li;
el.c 518 public const TYPE(LineInfo) *
522 return (const TYPE(LineInfo) *)(void *)&el->el_line;
filecomplete.c 416 const TYPE(LineInfo) *li;
  /prebuilts/libs/libedit/include/
histedit.h 62 typedef struct lineinfo { struct
66 } LineInfo;
177 const LineInfo *el_line(EditLine *);
242 int tok_line(Tokenizer *, const LineInfo *,
  /external/llvm/include/llvm/Support/
GCOV.h 399 : 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;
  /external/icu/icu4c/source/samples/layout/
paragraph.h 30 class LineInfo;
  /external/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.cpp 203 DILineInfo LineInfo;
205 LineInfo = DebugInfoContext->getLineInfoForAddress(
214 LineInfo.FunctionName = FunctionName;
217 return LineInfo;
Symbolize.cpp 62 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts.PrintFunctions,
65 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info);
66 return LineInfo;
  /external/google-breakpad/src/common/dwarf/
functioninfo.cc 169 scoped_ptr<LineInfo> lireader(new LineInfo(iter->second.first + data,
dwarf2reader.h 81 class LineInfo {
88 LineInfo(const char* buffer_, uint64 buffer_length,
91 virtual ~LineInfo() {
    [all...]
dwarf2reader.cc 31 // Implementation of dwarf2reader::LineInfo, dwarf2reader::CompilationUnit,
518 LineInfo::LineInfo(const char* buffer, uint64 buffer_length,
525 uint64 LineInfo::Start() {
533 void LineInfo::ReadHeader() {
616 bool LineInfo::ProcessOneOpcode(ByteReader* reader,
802 void LineInfo::ReadLines() {
    [all...]
  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 82 struct LineInfo {
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/
tc1.c 98 const LineInfo *lf = el_line(el);
186 const LineInfo *li;
  /external/v8/src/
gdb-jit.cc 923 class LineInfo : public Malloced {
925 LineInfo() : pc_info_(10) {}
961 LineInfo* lineinfo)
962 : name_(name), code_(code), shared_info_(shared), lineinfo_(lineinfo) {}
968 LineInfo* lineinfo() const { return lineinfo_; } function in class:v8::internal::BASE_EMBEDDED
1029 LineInfo* lineinfo_;
2180 LineInfo* lineinfo = GetLineInfo(addr); local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 42 struct LineInfo
264 compute_coveragef(const struct LineInfo *info,
326 typedef void (*plot_func)(struct gl_context *ctx, struct LineInfo *line,
336 struct LineInfo *line,
s_aalinetemp.h 37 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/
LineEditor.cpp 141 const LineInfo *LI = ::el_line(EL);
  /external/llvm/lib/IR/
GCOV.cpp 570 for (const auto &LI : LineInfo) {
  /external/google-breakpad/src/common/linux/
dump_symbols.cc 204 // dwarf2reader::LineInfo and populates a Module and a line vector
217 dwarf2reader::LineInfo parser(program, length, byte_reader_, &handler);
    [all...]

Completed in 934 milliseconds

1 2