Home
last modified time | relevance | path

Searched refs:var_expr (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp502 if (var_expr.empty()) { in GetValueForVariableExpressionPath()
533 var_expr = var_expr.drop_front(); // Skip the '*' in GetValueForVariableExpressionPath()
536 var_expr = var_expr.drop_front(); // Skip the '&' in GetValueForVariableExpressionPath()
549 var_expr = var_expr.drop_front(name_const_string.GetLength()); in GetValueForVariableExpressionPath()
618 if (var_expr.size() >= 2 && var_expr[1] != '>') in GetValueForVariableExpressionPath()
661 var_expr = var_expr.drop_front(); // Remove the '-' in GetValueForVariableExpressionPath()
664 var_expr = var_expr.drop_front(); // Remove the '.' or '>' in GetValueForVariableExpressionPath()
666 ConstString child_name(var_expr.substr(0, var_expr.find_first_of(".-["))); in GetValueForVariableExpressionPath()
732 var_expr = var_expr.drop_front(child_name.GetLength()); in GetValueForVariableExpressionPath()
752 var_expr = var_expr.drop_front(); in GetValueForVariableExpressionPath()
[all …]
/freebsd-13.1/contrib/byacc/test/
H A Dbtyacc_demo.y178 | ID { $$ = var_expr($e, $1); }
223 extern Expr * var_expr(Scope *scope, char *id);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrame.h305 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
/freebsd-13.1/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.c662 extern Expr * var_expr(Scope *scope, char *id);
2049 { yyval.expr = var_expr(yystack.l_mark[-1].scope, yystack.l_mark[0].id); } in YYPARSE_DECL()