Searched defs:line_offset (Results 1 - 11 of 11) sorted by relevance

/external/elfutils/src/libdw/
H A Ddwarf_macro_getsrcfiles.c45 Dwarf_Off line_offset = table->line_offset; local
46 if (line_offset == (Dwarf_Off) -1)
76 if (__libdw_getsrclines (dbg, line_offset, table->comp_dir,
H A Ddwarf_getmacros.c126 Dwarf_Off line_offset = (Dwarf_Off) -1; local
128 INTUSE(dwarf_formudata) (attr, &line_offset);
136 table->line_offset = line_offset;
169 Dwarf_Off line_offset = (Dwarf_Off) -1; local
172 line_offset = read_addr_unaligned_inc (is_64bit ? 8 : 4, dbg, readp);
181 INTUSE(dwarf_formudata) (attr, &line_offset);
252 .line_offset = line_offset,
H A DlibdwP.h365 Dwarf_Off line_offset; member in struct:__anon4598
/external/v8/src/
H A Dcompilation-cache.cc116 int line_offset,
127 if (line_offset != script->line_offset()->value()) return false;
146 int line_offset,
166 line_offset,
198 line_offset,
313 int line_offset,
319 return script_.Lookup(source, name, line_offset, column_offset,
113 HasOrigin( Handle<SharedFunctionInfo> function_info, Handle<Object> name, int line_offset, int column_offset, bool is_shared_cross_origin) argument
143 Lookup( Handle<String> source, Handle<Object> name, int line_offset, int column_offset, bool is_shared_cross_origin, Handle<Context> context) argument
310 LookupScript( Handle<String> source, Handle<Object> name, int line_offset, int column_offset, bool is_shared_cross_origin, Handle<Context> context) argument
H A Dcompiler.cc1138 Handle<String> source, Handle<Object> script_name, int line_offset,
1172 source, script_name, line_offset, column_offset,
1193 script->set_line_offset(Smi::FromInt(line_offset));
1137 CompileScript( Handle<String> source, Handle<Object> script_name, int line_offset, int column_offset, bool is_shared_cross_origin, Handle<Context> context, v8::Extension* extension, ScriptData** cached_data, ScriptCompiler::CompileOptions compile_options, NativesFlag natives) argument
H A Dapi.cc1734 int line_offset = 0; local
1741 line_offset = static_cast<int>(source->resource_line_offset->Value());
1754 str, name_obj, line_offset, column_offset, is_shared_cross_origin,
2085 v8::Integer::New(v8_isolate, script->line_offset()->value()),
4165 v8::Integer::New(isolate, script->line_offset()->value()),
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp498 int32_t line_offset = local
500 State.Row.Line += line_offset;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.cpp287 dw_sleb128_t line_offset = debug_line_data.GetSLEB128(&offset); local
288 log->Printf( "0x%8.8x: DW_LNS_advance_line (%i)", op_offset, line_offset);
289 row.line += line_offset;
364 int32_t line_offset = prologue.line_base + (adjust_opcode % prologue.line_range); local
365 log->Printf("0x%8.8x: address += 0x%" PRIx64 ", line += %i\n", op_offset, (uint64_t)addr_offset, line_offset);
367 row.line += line_offset;
832 int32_t line_offset = prologue->line_base + (adjust_opcode % prologue->line_range); local
833 state.line += line_offset;
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp2748 int line_offset = ftell( fs->file ); local
2758 last_occurence = line_offset + (int)(ptr - ptr0);
/external/elfutils/src/src/
H A Dreadelf.c7256 Dwarf_Off line_offset = -1; local
7260 line_offset = read_8ubyte_unaligned_inc (dbg, readp);
7262 line_offset = read_4ubyte_unaligned_inc (dbg, readp);
7264 line_offset);
7350 if (line_offset != (Dwarf_Off) -1)
7353 while (cu != NULL && line_offset != cu->offset)
/external/v8/test/cctest/
H A Dtest-api.cc14543 int line_offset) {
14551 CHECK_EQ(10 + line_offset, message->GetLineNumber());
17322 v8::Handle<v8::Integer> line_offset = v8::Integer::New(isolate, 3); local
17324 v8::ScriptOrigin detailed_origin(origin, line_offset, column_offset);
14541 CheckTryCatchSourceInfo(v8::Handle<v8::Script> script, const char* resource_name, int line_offset) argument

Completed in 925 milliseconds