Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp516 if (var_expr.empty()) { in GetValueForVariableExpressionPath()
547 var_expr = var_expr.drop_front(); // Skip the '*' in GetValueForVariableExpressionPath()
550 var_expr = var_expr.drop_front(); // Skip the '&' in GetValueForVariableExpressionPath()
563 var_expr = var_expr.drop_front(name_const_string.GetLength()); in GetValueForVariableExpressionPath()
633 if (var_expr.size() >= 2 && var_expr[1] != '>') in GetValueForVariableExpressionPath()
676 var_expr = var_expr.drop_front(); // Remove the '-' in GetValueForVariableExpressionPath()
679 var_expr = var_expr.drop_front(); // Remove the '.' or '>' in GetValueForVariableExpressionPath()
681 ConstString child_name(var_expr.substr(0, var_expr.find_first_of(".-["))); in GetValueForVariableExpressionPath()
747 var_expr = var_expr.drop_front(child_name.GetLength()); in GetValueForVariableExpressionPath()
767 var_expr = var_expr.drop_front(); in GetValueForVariableExpressionPath()
[all …]
/freebsd-14.2/contrib/byacc/test/
H A Dbtyacc_demo.y178 | ID { $$ = var_expr($e, $1); }
223 extern Expr * var_expr(Scope *scope, char *id);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrame.h311 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
/freebsd-14.2/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.c662 extern Expr * var_expr(Scope *scope, char *id);
2090 { yyval.expr = var_expr(yystack.l_mark[-1].scope, yystack.l_mark[0].id); } in YYPARSE_DECL()