Lines Matching refs:var_expr
496 llvm::StringRef var_expr, DynamicValueType use_dynamic, uint32_t options, in GetValueForVariableExpressionPath() argument
498 llvm::StringRef original_var_expr = var_expr; in GetValueForVariableExpressionPath()
503 if (var_expr.empty()) { in GetValueForVariableExpressionPath()
505 var_expr.str().c_str()); in GetValueForVariableExpressionPath()
532 if (var_expr[0] == '*') { in GetValueForVariableExpressionPath()
534 var_expr = var_expr.drop_front(); // Skip the '*' in GetValueForVariableExpressionPath()
535 } else if (var_expr[0] == '&') { in GetValueForVariableExpressionPath()
537 var_expr = var_expr.drop_front(); // Skip the '&' in GetValueForVariableExpressionPath()
540 size_t separator_idx = var_expr.find_first_of(".-[=+~|&^%#@!/?,<>{}"); in GetValueForVariableExpressionPath()
543 ConstString name_const_string(var_expr.substr(0, separator_idx)); in GetValueForVariableExpressionPath()
550 var_expr = var_expr.drop_front(name_const_string.GetLength()); in GetValueForVariableExpressionPath()
573 var_expr_storage += var_expr; in GetValueForVariableExpressionPath()
574 var_expr = var_expr_storage; in GetValueForVariableExpressionPath()
617 while (!var_expr.empty()) { in GetValueForVariableExpressionPath()
620 const char separator_type = var_expr[0]; in GetValueForVariableExpressionPath()
625 if (var_expr.size() >= 2 && var_expr[1] != '>') in GetValueForVariableExpressionPath()
668 var_expr = var_expr.drop_front(); // Remove the '-' in GetValueForVariableExpressionPath()
671 var_expr = var_expr.drop_front(); // Remove the '.' or '>' in GetValueForVariableExpressionPath()
672 separator_idx = var_expr.find_first_of(".-["); in GetValueForVariableExpressionPath()
673 ConstString child_name(var_expr.substr(0, var_expr.find_first_of(".-["))); in GetValueForVariableExpressionPath()
690 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
696 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
739 var_expr = var_expr.drop_front(child_name.GetLength()); in GetValueForVariableExpressionPath()
751 if (var_expr.size() <= 2) { in GetValueForVariableExpressionPath()
754 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
759 var_expr = var_expr.drop_front(); in GetValueForVariableExpressionPath()
763 size_t end_pos = var_expr.find_first_of(']'); in GetValueForVariableExpressionPath()
770 llvm::StringRef index_expr = var_expr.take_front(end_pos); in GetValueForVariableExpressionPath()
773 var_expr = var_expr.drop_front(end_pos + 1); in GetValueForVariableExpressionPath()
1052 var_expr.str().c_str()); in GetValueForVariableExpressionPath()