Searched defs:line (Results 401 - 425 of 1454) sorted by last modified time

<<11121314151617181920>>

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h87 // Length of the line table data in bytes (not including the prologue)
115 line(rhs.line),
131 line = rhs.line;
150 uint32_t line; // An unsigned integer indicating a source line number. Lines are numbered beginning at 1. The compiler may emit the value 0 in cases where an instruction cannot be attributed to any source line. member in struct:DWARFDebugLine::Row
151 uint16_t column; // An unsigned integer indicating a column number within a source line. Columns are numbered beginning at 1. The value 0 is reserved to indicate that a statement begins at the 'left edge' of the line
[all...]
H A DSymbolFileDWARF.cpp1199 // Just started parsing the line table
1203 // Done parsing line table, nothing to do for the cleanup
1219 state.line,
1229 // First, put the current sequence into the line table.
1262 // We have an object file that has a line table with addresses
1263 // that are not linked. We need to link the line table and convert
2834 SymbolFileDWARF::ResolveSymbolContext(const FileSpec& file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list) argument
2867 if (line != 0)
2871 if (line_table != NULL && line != 0)
2881 uint32_t line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_idx, line, fals
[all...]
H A DSymbolFileDWARFDebugMap.cpp833 SymbolFileDWARFDebugMap::ResolveSymbolContext (const FileSpec& file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list) argument
858 oso_dwarf->ResolveSymbolContext(file_spec, line, check_inlines, resolve_scope, sc_list);
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp324 SymbolFileSymtab::ResolveSymbolContext (const FileSpec& file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list) argument
/external/lldb/source/Symbol/
H A DCompileUnit.cpp282 CompileUnit::FindLineEntry (uint32_t start_idx, uint32_t line, const FileSpec* file_spec_ptr, bool exact, LineEntry *line_entry_ptr) argument
294 // All the line table entries actually point to the version of the Compile
305 return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr);
316 uint32_t line,
352 if (line != 0)
364 // the line table function that searches for a line entries
367 line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_indexes.front(), line, exact, &line_entry);
370 // as "line". If "exact == false", the "found_line" will be the
371 // closest line entr
313 ResolveSymbolContext( const FileSpec& file_spec, uint32_t line, bool check_inlines, bool exact, uint32_t resolve_scope, SymbolContextList &sc_list ) argument
[all...]
H A DLineTable.cpp41 uint32_t line,
51 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry);
86 uint32_t line,
98 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry);
151 LT_COMPARE (a.line, b.line);
228 // line entry that matches the address in case there are
245 // entry for a previous line...
275 line_entry.line = entry.line;
38 InsertLineEntry( lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry ) argument
82 AppendLineEntryToSequence( LineSequence* sequence, lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry ) argument
289 FindLineEntryIndexByFileIndex( uint32_t start_idx, const std::vector<uint32_t> &file_indexes, uint32_t line, bool exact, LineEntry* line_entry_ptr ) argument
347 FindLineEntryIndexByFileIndex(uint32_t start_idx, uint32_t file_idx, uint32_t line, bool exact, LineEntry* line_entry_ptr) argument
[all...]
H A DSymbolVendor.cpp268 SymbolVendor::ResolveSymbolContext (const FileSpec& file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list) argument
275 return m_sym_file_ap->ResolveSymbolContext(file_spec, line, check_inlines, resolve_scope, sc_list);
/external/lldb/test/functionalities/command_script/import/
H A Dmain.c4 printf("Hello world.\n"); // Set break point at this line.
9 char line[100]; local
10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
11 printf("input line=>%s\n", line);
/external/lldb/test/python_api/hello_world/
H A Dmain.c4 printf("Hello world.\n"); // Set break point at this line.
9 char line[100]; local
10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
11 printf("input line=>%s\n", line);
/external/lldb/test/python_api/lldbutil/iter/
H A Dmain.cpp66 printf ("%s (thread = %u) after usleep ...\n", __FUNCTION__, thread_index); // Set break point at this line.
85 mask_access (eAssign, thread_mask_1 | thread_mask_2 | thread_mask_3); // And that line.
92 char line[64]; local
99 if (fgets (line, sizeof(line), stdin))
101 if (line[0] == '\n' || line[0] == '\r' || line[0] == '\0')
106 int32_t index = strtoul (line, NULL, 0);
/external/lldb/test/python_api/lldbutil/process/
H A Dmain.cpp66 printf ("%s (thread = %u) after usleep ...\n", __FUNCTION__, thread_index); // Set break point at this line.
85 mask_access (eAssign, thread_mask_1 | thread_mask_2 | thread_mask_3); // And that line.
92 char line[64]; local
99 if (fgets (line, sizeof(line), stdin))
101 if (line[0] == '\n' || line[0] == '\r' || line[0] == '\0')
106 int32_t index = strtoul (line, NULL, 0);
/external/lldb/test/python_api/module_section/
H A Dmain.cpp66 printf ("%s (thread = %u) after usleep ...\n", __FUNCTION__, thread_index); // Set break point at this line.
85 mask_access (eAssign, thread_mask_1 | thread_mask_2 | thread_mask_3); // And that line.
92 char line[64]; local
99 if (fgets (line, sizeof(line), stdin))
101 if (line[0] == '\n' || line[0] == '\r' || line[0] == '\0')
106 int32_t index = strtoul (line, NULL, 0);
/external/lldb/test/python_api/process/io/
H A Dmain.c5 char line[100]; local
7 while (fgets(line, sizeof(line), stdin)) { // Reading from stdin...
8 fprintf(stderr, "input line=>%d\n", count++);
/external/lldb/tools/debugserver/source/
H A DPThreadMutex.cpp24 PThreadMutex::Locker::Locker(PThreadMutex& m, const char *function, const char *file, const int line) : argument
28 m_line(line),
34 PThreadMutex::Locker::Locker(PThreadMutex* m, const char *function, const char *file, const int line) : argument
38 m_line(line),
44 PThreadMutex::Locker::Locker(pthread_mutex_t *mutex, const char *function, const char *file, const int line) : argument
48 m_line(line),
H A DRNBRemote.cpp146 // The X packet doesn't currently work. If/when it does, remove the line above and uncomment out the line below
452 RNBRemote::HandlePacket_ILLFORMED (const char *file, int line, const char *p, const char *description) argument
454 DNBLogThreadedIf (LOG_RNB_PACKETS, "%8u %s:%i ILLFORMED: '%s' (%s)", (uint32_t)m_comm.Timer().ElapsedMicroSeconds(true), file, line, __FUNCTION__, p);
1498 skip_spaces (std::string &line) argument
1500 if (!line.empty())
1502 size_t space_pos = line.find_first_not_of (k_space_delimiters);
1504 line.erase(0, space_pos);
1509 get_identifier (std::string &line) argument
1512 skip_spaces (line);
1532 get_operator(std::string &line) argument
1548 get_value(std::string &line) argument
1566 std::string line; local
[all...]
/external/lldb/tools/driver/
H A DIOChannel.cpp32 // Printing the following string causes libedit to back up to the beginning of the line & blank it out.
59 // Sometimes we get called after the user has submitted the line, but before editline has
61 // equivalent to having no characters on the line, since it has already been submitted.
346 const char *line = ::el_gets (m_edit_line, &line_len); local
351 if (line)
355 while (line_len > 0 && (line[line_len - 1] == '\n' || line[line_len - 1] == '\r'))
359 ::history (m_history, &m_history_event, H_ENTER, line);
360 new_line.assign (line, line_len); // Omit the newline
428 std::string line; local
[all...]
/external/lldb/tools/lldb-perf/lib/
H A DXcode.cpp162 Xcode::CreateFileLineBreakpoint (SBTarget target, const char* file, uint32_t line) argument
164 return target.BreakpointCreateByLocation(file, line);
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h280 // Command-line utilities:
284 // GetInjectableArgvs() - returns the command line as a vector of strings.
2105 // Formats a source file path and a line number as they would appear
2107 GTEST_API_ ::std::string FormatFileLocation(const char* file, int line);
2113 int line);
2133 GTestLog(GTestLogSeverity severity, const char* file, int line);
2283 // A copy of all command line arguments. Set by InitGoogleTest().
3013 // Utilities for command line flags and environment variables.
7031 // the current line number. For more details, see
7120 ScopedTrace(const char* file, int line, cons
7476 AddTestName(const char* file, int line, const char* case_name, const char* test_name) argument
8406 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
10568 GetTestCasePatternHolder( const char* test_case_name, const char* file, int line) argument
19163 int const line; member in struct:testing::internal::AssertHelper::AssertHelperData
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc37 // This line ensures that gtest.h can be compiled on its own, even
509 // specified on the command line.
769 // environment variable or a command line flag. E.g. you can set the
869 int line; member in struct:testing::internal::TraceInfo
1361 // Parses the command line for Google Test flags, without initializing
1595 "&line=" + StreamableToString(test_part_result.line_number()) +
1664 // specified on the command line.
1833 int line,
1835 : data_(new AssertHelperData(type, file, line, message)) {
1845 AddTestPartResult(data_->type, data_->file, data_->line,
1831 AssertHelper(TestPartResult::Type type, const char* file, int line, const char* message) argument
3717 ReportInvalidTestCaseType(const char* test_case_name, const char* file, int line) argument
[all...]
/external/libvpx/libvpx/vpx_mem/include/
H A Dvpx_mem_tracker.h29 line; member in struct:mem_block
65 char * file, unsigned int line)
69 line - the line in file addr was referenced from
70 Adds memory address addr, it's size, file and line it came from
74 char *file, unsigned int line,
78 vpx_memory_tracker_add(size_t addr, unsigned int size, char * file, unsigned int line)
114 fail, the filename and line of the check will be printed out.
116 void vpx_memory_tracker_check_integrity(char *file, unsigned int line);
/external/libvpx/libvpx/vpx_mem/memory_manager/
H A Dhmm_dflt_abort.c30 /* Print abort message, file and line. Terminate execution.
32 void hmm_dflt_abort(const char *file, const char *line) { argument
47 fputs(line, stderr);
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.c204 void *xvpx_memalign(size_t align, size_t size, char *file, int line) { argument
255 vpx_memory_tracker_add((size_t)x, (unsigned int)size, file, line, 1);
260 void *xvpx_malloc(size_t size, char *file, int line) { argument
261 return xvpx_memalign(DEFAULT_ALIGNMENT, size, file, line);
264 void *xvpx_calloc(size_t num, size_t size, char *file, int line) { argument
265 void *x = xvpx_memalign(DEFAULT_ALIGNMENT, num * size, file, line);
273 void *xvpx_realloc(void *memblk, size_t size, char *file, int line) { argument
302 orig_line = p->line;
306 vpx_memory_tracker_check_integrity(file, line);
344 vpx_memory_tracker_add((size_t)x, (unsigned int)size, file, line,
351 xvpx_free(void *p_address, char *file, int line) argument
[all...]
H A Dvpx_mem_tracker.c16 Stores a list of addreses, their size, and file and line they came from.
81 static void memory_tracker_check_integrity(char *file, unsigned int line);
83 char *file, unsigned int line,
246 char * file, unsigned int line)
250 line - the line in file addr was referenced from
251 Adds memory address addr, it's size, file and line it came from
255 char *file, unsigned int line,
257 memory_tracker_add(addr, size, file, line, padded);
304 vpx_memory_tracker_check_integrity(char* file, unsigned int line)
254 vpx_memory_tracker_add(size_t addr, unsigned int size, char *file, unsigned int line, int padded) argument
311 vpx_memory_tracker_check_integrity(char *file, unsigned int line) argument
478 memory_tracker_check_integrity(char *file, unsigned int line) argument
530 memory_tracker_add(size_t addr, unsigned int size, char *file, unsigned int line, int padded) argument
[all...]
/external/libxml2/
H A Derror.c149 * Displays the associated file and line informations for the current input
158 input->line);
161 "Entity: line %d: ", input->line);
177 xmlChar content[81]; /* space for 80 chars + line terminator */
188 /* search backwards for beginning-of-line (to max buff size) */
195 /* search forward for end-of-line (to max buff size) */
207 /* create blank line with problem pointer */
210 /* (leave buffer space for pointer + line terminator) */
247 int line local
453 __xmlRaiseError(xmlStructuredErrorFunc schannel, xmlGenericErrorFunc channel, void *data, void *ctx, void *nod, int domain, int code, xmlErrorLevel level, const char *file, int line, const char *str1, const char *str2, const char *str3, int int1, int col, const char *msg, ...) argument
[all...]
/external/libxml2/include/libxml/
H A Dparser.h64 int line; /* Current line */ member in struct:_xmlParserInput
91 /* Position & line # that text that created the node begins & ends on */
259 int linenumbers; /* set line number in element content */

Completed in 403 milliseconds

<<11121314151617181920>>