Searched refs:var_expr (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrame.cpp | 509 llvm::StringRef var_expr, DynamicValueType use_dynamic, uint32_t options, in GetValueForVariableExpressionPath() argument 511 llvm::StringRef original_var_expr = var_expr; in GetValueForVariableExpressionPath() 516 if (var_expr.empty()) { in GetValueForVariableExpressionPath() 518 var_expr.str().c_str()); in GetValueForVariableExpressionPath() 545 if (var_expr[0] == '*') { in GetValueForVariableExpressionPath() 547 var_expr = var_expr.drop_front(); // Skip the '*' in GetValueForVariableExpressionPath() 548 } else if (var_expr[0] == '&') { in GetValueForVariableExpressionPath() 550 var_expr = var_expr.drop_front(); // Skip the '&' in GetValueForVariableExpressionPath() 553 size_t separator_idx = var_expr.find_first_of(".-[=+~|&^%#@!/?,<>{}"); in GetValueForVariableExpressionPath() 556 ConstString name_const_string(var_expr.substr(0, separator_idx)); in GetValueForVariableExpressionPath() [all …]
|
/freebsd/contrib/byacc/test/ |
H A D | btyacc_demo.y | 178 | ID { $$ = var_expr($e, $1); } 223 extern Expr * var_expr(Scope *scope, char *id);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | StackFrame.h | 312 llvm::StringRef var_expr, lldb::DynamicValueType use_dynamic,
|
/freebsd/contrib/byacc/test/btyacc/ |
H A D | btyacc_demo.tab.c | 662 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()
|