Lines Matching defs:hint
340 /// Add a parameter hint for the given expression using `label`.
1159 /// Returns true if the given name should be added as a hint for `expr`.
1164 // If the argument is a reference of the same name, don't add it as a hint.
1216 lsp::InlayHint hint(lsp::InlayHintKind::Type,
1219 llvm::raw_string_ostream labelOS(hint.label);
1223 inlayHints.emplace_back(std::move(hint));
1252 // add a hint. This expression was materialized during parsing.
1296 lsp::InlayHint hint(lsp::InlayHintKind::Parameter,
1298 hint.label = (label + ":").str();
1299 hint.paddingRight = true;
1300 inlayHints.emplace_back(std::move(hint));
1591 for (auto &hint : llvm::drop_begin(inlayHints, currentNumHints))
1592 chunkIt->adjustLocForChunkOffset(hint.position);