Searched refs:ExprId (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DStencil.h86 /// Constructs an idiomatic dereferencing of the expression bound to \p ExprId.
87 /// \p ExprId is wrapped in parentheses, if needed.
88 Stencil deref(llvm::StringRef ExprId);
90 /// If \p ExprId is of pointer type, constructs an idiomatic dereferencing of
91 /// the expression bound to \p ExprId, including wrapping it in parentheses, if
94 Stencil maybeDeref(llvm::StringRef ExprId);
97 /// expression bound to \p ExprId. \p ExprId is wrapped in parentheses, if
99 Stencil addressOf(llvm::StringRef ExprId);
101 /// If \p ExprId i
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DStencil.cpp320 Stencil transformer::deref(llvm::StringRef ExprId) { argument
322 UnaryNodeOperator::Deref, ExprId);
325 Stencil transformer::maybeDeref(llvm::StringRef ExprId) { argument
327 UnaryNodeOperator::MaybeDeref, ExprId);
330 Stencil transformer::addressOf(llvm::StringRef ExprId) { argument
332 UnaryNodeOperator::AddressOf, ExprId);
335 Stencil transformer::maybeAddressOf(llvm::StringRef ExprId) { argument
337 UnaryNodeOperator::MaybeAddressOf, ExprId);

Completed in 56 milliseconds