Home
last modified time | relevance | path

Searched refs:temp_expression (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp2310 llvm::StringRef temp_expression = remainder; in GetValueForExpressionPath_Impl() local
2321 if (temp_expression.empty()) { in GetValueForExpressionPath_Impl()
2326 switch (temp_expression.front()) { in GetValueForExpressionPath_Impl()
2328 temp_expression = temp_expression.drop_front(); in GetValueForExpressionPath_Impl()
2350 if (!temp_expression.starts_with(">")) { in GetValueForExpressionPath_Impl()
2361 temp_expression.front() == '.' && in GetValueForExpressionPath_Impl()
2372 temp_expression = temp_expression.drop_front(); // skip . or > in GetValueForExpressionPath_Impl()
2374 size_t next_sep_pos = temp_expression.find_first_of("-.[", 1); in GetValueForExpressionPath_Impl()
2377 llvm::StringRef child_name = temp_expression; in GetValueForExpressionPath_Impl()
2396 llvm::StringRef next_separator = temp_expression.substr(next_sep_pos); in GetValueForExpressionPath_Impl()
[all …]