Home
last modified time | relevance | path

Searched refs:m_line (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/lldb/source/Symbol/
DDeclaration.cpp21 if (m_line > 0) in Dump()
22 s->Printf(":%u", m_line); in Dump()
28 if (m_line > 0) { in Dump()
29 s->Printf(", line = %u", m_line); in Dump()
49 if (m_line > 0) in DumpStopContext()
50 s->Printf(":%u", m_line); in DumpStopContext()
56 } else if (m_line > 0) { in DumpStopContext()
57 s->Printf(" line %u", m_line); in DumpStopContext()
73 if (a.m_line < b.m_line) in Compare()
75 else if (a.m_line > b.m_line) in Compare()
[all …]
DDebugMacros.cpp17 : m_type(type), m_line(line), m_debug_line_file_idx(debug_line_file_idx), in DebugMacroEntry()
22 : m_type(type), m_line(0), m_debug_line_file_idx(0), in DebugMacroEntry()
/external/deqp/framework/randomshaders/
DrsgPrettyPrinter.cpp142 bool prevIsIdentifierChar = m_line.length() > 0 && isIdentifierChar(m_line[m_line.length()-1]); in processToken()
148 m_line += " "; in processToken()
149 m_line += token.getIdentifier(); in processToken()
157 m_line += f; in processToken()
162 m_line += de::toString(token.getInt()); in processToken()
166 m_line += (token.getBool() ? "true" : "false"); in processToken()
183 m_str << m_line + "\n"; in processToken()
184 m_line = ""; in processToken()
191 m_line += " "; in processToken()
192 m_line += tokenStr; in processToken()
DrsgPrettyPrinter.hpp48 std::string m_line; member in rsg::PrettyPrinter
/external/llvm-project/lldb/include/lldb/Symbol/
DDeclaration.h28 : m_file(), m_line(0) in Declaration()
50 : m_file(file_spec), m_line(line) in m_file()
60 : m_file(), m_line(0) in Declaration()
76 m_line = 0; in Clear()
151 uint32_t GetLine() const { return m_line; } in GetLine()
153 bool IsValid() const { return m_file && m_line != 0; } in IsValid()
187 void SetLine(uint32_t line) { m_line = line; } in SetLine()
193 uint32_t m_line; ///< Non-zero values indicates a valid line number, variable
DDebugMacros.h48 uint64_t GetLineNumber() const { return m_line; } in GetLineNumber()
65 uint32_t m_line : 29; variable
/external/llvm-project/lldb/tools/debugserver/source/
DPThreadMutex.cpp21 : m_pMutex(m.Mutex()), m_function(function), m_file(file), m_line(line), in Locker()
29 m_line(line), m_lock_time(0) { in Locker()
35 : m_pMutex(mutex), m_function(function), m_file(file), m_line(line), in Locker()
48 m_pMutex, m_function, m_file, m_line); in Lock()
53 m_file, m_line); in Lock()
62 m_line); in Unlock()
DPThreadMutex.h75 int m_line; variable
/external/antlr/runtime/Cpp/include/
Dantlr3commontoken.inl9 m_line = 0;
23 m_line = 0;
37 m_line = 0;
52 m_line = ctoken.m_line;
66 m_line = ctoken.m_line;
89 (m_line == ctoken.m_line) &&
191 return m_line;
197 m_line = line;
Dantlr3input.inl145 return m_line;
215 m_line = line;
272 ++m_line;
285 m_line = 1; /* starts at line 1 */
350 return m_line;
381 m_line = 0;
395 return m_line;
419 m_line = line;
Dantlr3input.hpp86 ANTLR_UINT32 m_line; member in InputStream
292 ANTLR_UINT32 m_line; member in LexState
Dantlr3commontoken.hpp107 ANTLR_UINT32 m_line; member in CommonToken
Dantlr3exception.hpp118 ANTLR_UINT32 m_line; member in ANTLR_ExceptionBase
Dantlr3exception.inl14 m_line = 0;
69 return m_line;
144 m_line = line;
/external/catch2/examples/
D301-Gen-MapTypeConversion.cpp15 std::string m_line; member in LineGenerator
28 return !!std::getline(m_stream, m_line); in next()
33 return m_line; in get()