/external/llvm-project/lldb/source/Utility/ |
D | Status.cpp | 40 Status::Status() : m_code(0), m_type(eErrorTypeInvalid), m_string() {} in Status() 43 : m_code(err), m_type(type), m_string() {} in Status() 49 : m_code(EC.value()), in Status() 55 : m_code(0), m_type(eErrorTypeInvalid), m_string() { in Status() 74 m_code = ec.value(); in operator =() 95 std::error_code(m_code, std::generic_category())); in ToError() 139 if (const char *s = ::mach_error_string(m_code)) in AsCString() 145 m_string = llvm::sys::StrError(m_code); in AsCString() 150 m_string = RetrieveWin32ErrorString(m_code); in AsCString() 169 m_code = 0; in Clear() [all …]
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
D | CodeAttribute_info.java | 97 m_code = (code != null ? code : EMPTY_BYTE_ARRAY); in CodeAttribute_info() 98 m_codeSize = m_code.length; in CodeAttribute_info() 110 return m_code; in getCode() 171 … _clone.m_code = (m_codeSize == 0 ? EMPTY_BYTE_ARRAY : (byte []) m_code.clone ()); // does not trim in clone() 189 out.write (m_code, 0, m_codeSize); // TODO: THIS IS WRONG in writeInClassFormat() 198 m_code = code; in setCode() 219 m_code = new byte [(int) code_length]; in CodeAttribute_info() 220 bytes.readFully (m_code); in CodeAttribute_info() 252 private byte [] m_code; // never null [valid content extent is m_codeSize] field in CodeAttribute_info
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cShadingLanguage420PackTests.cpp | 1635 out_source.m_parts[i].m_length = static_cast<glw::GLint>(out_source.m_parts[i].m_code.length()); in initShaderSource() 1637 …out_source.m_parts[i].m_code.append("This should be ignored by compiler, as source length is provi… in initShaderSource() 1770 if (true == compute_shader.m_parts[0].m_code.empty()) in testCompute() 2054 if (true == compute_shader.m_parts[0].m_code.empty()) in testCompute() 2661 source.m_parts[0].m_code = shader_template_part_0; in prepareComputShaderSource() 2662 source.m_parts[1].m_code = shader_template_part_1; in prepareComputShaderSource() 2664 replaceAllCaseTokens(source.m_parts[0].m_code); in prepareComputShaderSource() 2665 replaceAllCaseTokens(source.m_parts[1].m_code); in prepareComputShaderSource() 2669 source.m_parts[0].m_code = shader_template_part_0; in prepareComputShaderSource() 2670 source.m_parts[0].m_code.append(shader_template_part_1); in prepareComputShaderSource() [all …]
|
D | gl4cShadingLanguage420PackTests.hpp | 221 std::string m_code; member
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFAbbreviationDeclaration.cpp | 21 : m_code(InvalidCode), m_tag(llvm::dwarf::DW_TAG_null), m_has_children(0), in DWARFAbbreviationDeclaration() 26 : m_code(InvalidCode), m_tag(tag), m_has_children(has_children), in DWARFAbbreviationDeclaration() 32 m_code = data.GetULEB128(offset_ptr); in extract() 33 if (m_code == 0) in extract() 72 return m_code != 0 && m_tag != llvm::dwarf::DW_TAG_null; in IsValid()
|
D | DWARFAbbreviationDeclaration.h | 25 dw_uleb128_t Code() const { return m_code; } in Code() 26 void SetCode(dw_uleb128_t code) { m_code = code; } in SetCode() 59 dw_uleb128_t m_code;
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ExceptionRecord.h | 28 m_code = record.ExceptionCode; in ExceptionRecord() 41 : m_code(record.ExceptionCode), m_continuable(record.ExceptionFlags == 0), in ExceptionRecord() 58 GetExceptionCode() const { return m_code; } in GetExceptionCode() 70 DWORD m_code;
|
/external/deqp/framework/common/ |
D | tcuTestCase.hpp | 190 …TestStatus (qpTestResult code, const std::string& description) : m_code(code), m_description(desc… in TestStatus() 192 bool isComplete (void) const { return m_code != QP_TEST_RESULT_LAST; } in isComplete() 193 qpTestResult getCode (void) const { DE_ASSERT(isComplete()); return m_code; } in getCode() 201 qpTestResult m_code; member in tcu::TestStatus
|
/external/llvm-project/lldb/source/Expression/ |
D | REPL.cpp | 220 m_code.AppendString(""); in IOHandlerInputComplete() 222 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete() 320 m_code.GetSize() + 1); in IOHandlerInputComplete() 440 const uint32_t new_default_line = m_code.GetSize() + 1; in IOHandlerInputComplete() 442 m_code.SplitIntoLines(code); in IOHandlerInputComplete() 452 std::string code(m_code.CopyList()); in IOHandlerInputComplete() 468 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete() 517 current_code.append(m_code.CopyList()); in IOHandlerComplete()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | Status.h | 199 ValueType m_code; ///< Status code as an integer value.
|
/external/llvm-project/lldb/include/lldb/Expression/ |
D | REPL.h | 149 StringList m_code; // All accumulated REPL statements are saved here variable
|
/external/llvm-project/lldb/examples/summaries/ |
D | lldb | 1 … -s "Type: ${var.m_type%E}, Code: ${var.m_code}, Message: ${var.m…
|