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()
586 var_expr_storage += var_expr; in GetValueForVariableExpressionPath()
587 var_expr = var_expr_storage; in GetValueForVariableExpressionPath()
630 while (!var_expr.empty()) { in GetValueForVariableExpressionPath()
633 const char separator_type = var_expr[0]; in GetValueForVariableExpressionPath()
638 if (var_expr.size() >= 2 && var_expr[1] != '>') in GetValueForVariableExpressionPath()
681 var_expr = var_expr.drop_front(); // Remove the '-' in GetValueForVariableExpressionPath()
684 var_expr = var_expr.drop_front(); // Remove the '.' or '>' in GetValueForVariableExpressionPath()
685 separator_idx = var_expr.find_first_of(".-["); in GetValueForVariableExpressionPath()
686 ConstString child_name(var_expr.substr(0, var_expr.find_first_of(".-["))); in GetValueForVariableExpressionPath()
703 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
709 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
752 var_expr = var_expr.drop_front(child_name.GetLength()); in GetValueForVariableExpressionPath()
764 if (var_expr.size() <= 2) { in GetValueForVariableExpressionPath()
767 var_expr_path_strm.GetData(), var_expr.str().c_str()); in GetValueForVariableExpressionPath()
772 var_expr = var_expr.drop_front(); in GetValueForVariableExpressionPath()
776 size_t end_pos = var_expr.find_first_of(']'); in GetValueForVariableExpressionPath()
783 llvm::StringRef index_expr = var_expr.take_front(end_pos); in GetValueForVariableExpressionPath()
786 var_expr = var_expr.drop_front(end_pos + 1); in GetValueForVariableExpressionPath()
1065 var_expr.str().c_str()); in GetValueForVariableExpressionPath()