Lines Matching refs:var_expr

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()
563 var_expr = var_expr.drop_front(name_const_string.GetLength()); in GetValueForVariableExpressionPath()
582 var_expr_storage += var_expr; in GetValueForVariableExpressionPath()
583 var_expr = var_expr_storage; in GetValueForVariableExpressionPath()
625 while (!var_expr.empty()) { in GetValueForVariableExpressionPath()
628 const char separator_type = var_expr[0]; 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()
680 separator_idx = var_expr.find_first_of(".-["); in GetValueForVariableExpressionPath()
681 ConstString child_name(var_expr.substr(0, var_expr.find_first_of(".-["))); in GetValueForVariableExpressionPath()
698 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
704 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
747 var_expr = var_expr.drop_front(child_name.GetLength()); in GetValueForVariableExpressionPath()
759 if (var_expr.size() <= 2) { in GetValueForVariableExpressionPath()
762 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
767 var_expr = var_expr.drop_front(); in GetValueForVariableExpressionPath()
771 size_t end_pos = var_expr.find_first_of(']'); in GetValueForVariableExpressionPath()
778 llvm::StringRef index_expr = var_expr.take_front(end_pos); in GetValueForVariableExpressionPath()
781 var_expr = var_expr.drop_front(end_pos + 1); in GetValueForVariableExpressionPath()
1058 var_expr.str().c_str()); in GetValueForVariableExpressionPath()