Lines Matching refs:var_expr
495 llvm::StringRef var_expr, DynamicValueType use_dynamic, uint32_t options, in GetValueForVariableExpressionPath() argument
497 llvm::StringRef original_var_expr = var_expr; in GetValueForVariableExpressionPath()
502 if (var_expr.empty()) { in GetValueForVariableExpressionPath()
504 var_expr.str().c_str()); in GetValueForVariableExpressionPath()
531 if (var_expr[0] == '*') { in GetValueForVariableExpressionPath()
533 var_expr = var_expr.drop_front(); // Skip the '*' in GetValueForVariableExpressionPath()
534 } else if (var_expr[0] == '&') { in GetValueForVariableExpressionPath()
536 var_expr = var_expr.drop_front(); // Skip the '&' in GetValueForVariableExpressionPath()
539 size_t separator_idx = var_expr.find_first_of(".-[=+~|&^%#@!/?,<>{}"); in GetValueForVariableExpressionPath()
542 ConstString name_const_string(var_expr.substr(0, separator_idx)); in GetValueForVariableExpressionPath()
549 var_expr = var_expr.drop_front(name_const_string.GetLength()); in GetValueForVariableExpressionPath()
566 var_expr_storage += var_expr; in GetValueForVariableExpressionPath()
567 var_expr = var_expr_storage; in GetValueForVariableExpressionPath()
610 while (!var_expr.empty()) { in GetValueForVariableExpressionPath()
613 const char separator_type = var_expr[0]; 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()
665 separator_idx = var_expr.find_first_of(".-["); in GetValueForVariableExpressionPath()
666 ConstString child_name(var_expr.substr(0, var_expr.find_first_of(".-["))); in GetValueForVariableExpressionPath()
683 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
689 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
732 var_expr = var_expr.drop_front(child_name.GetLength()); in GetValueForVariableExpressionPath()
744 if (var_expr.size() <= 2) { in GetValueForVariableExpressionPath()
747 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
752 var_expr = var_expr.drop_front(); in GetValueForVariableExpressionPath()
756 size_t end_pos = var_expr.find_first_of(']'); in GetValueForVariableExpressionPath()
763 llvm::StringRef index_expr = var_expr.take_front(end_pos); in GetValueForVariableExpressionPath()
766 var_expr = var_expr.drop_front(end_pos + 1); in GetValueForVariableExpressionPath()
1045 var_expr.str().c_str()); in GetValueForVariableExpressionPath()