Home
last modified time | relevance | path

Searched refs:ExpressionSourceCode (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DExpressionSourceCode.h21 class ExpressionSourceCode {
25 static ExpressionSourceCode *CreateWrapped(const char *prefix, in CreateWrapped()
27 return new ExpressionSourceCode("$__lldb_expr", prefix, body, true); in CreateWrapped()
30 static ExpressionSourceCode *CreateUnwrapped(const char *name, in CreateUnwrapped()
32 return new ExpressionSourceCode(name, "", body, false); in CreateUnwrapped()
50 ExpressionSourceCode(const char *name, const char *prefix, const char *body, in ExpressionSourceCode() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionSourceCode.cpp28 const char *ExpressionSourceCode::g_expression_prefix = R"(
179 bool ExpressionSourceCode::GetText(std::string &text, in GetText()
356 bool ExpressionSourceCode::GetOriginalBodyBounds( in GetOriginalBodyBounds()
H A DUtilityFunction.cpp46 m_function_text(ExpressionSourceCode::g_expression_prefix), in UtilityFunction()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp388 std::unique_ptr<ExpressionSourceCode> source_code( in UpdateLanguageForExpr()
389 ExpressionSourceCode::CreateWrapped(prefix.c_str(), in UpdateLanguageForExpr()
512 if (ExpressionSourceCode::GetOriginalBodyBounds( in Parse()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile197 SRCS+= Expression/ExpressionSourceCode.cpp