Home
last modified time | relevance | path

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

/dports/www/R-cran-shiny/shiny/man/
H A DexprToFunction.Rd18 …ded]'}}}{\strong{[Superseded]}} Please use \code{\link[=installExprFunction]{installExprFunction()…
23 Similar to \code{\link[=installExprFunction]{installExprFunction()}} but doesn't register debug hoo…
26 \code{\link[=installExprFunction]{installExprFunction()}} for the modern approach to converting an …
H A DcreateRenderFunction.Rd6 \alias{installExprFunction}
21 installExprFunction(
114 parameters may want to continue using \code{installExprFunction()} for better
130 \item \code{installExprFunction}: converts a user's reactive \code{expr} into a
149 # For better legacy support, consider using installExprFunction() over quoToFunction()
151 func <- installExprFunction(expr, "func", env, quoted)
178 # Supplying quoted code without rlang::quo() requires installExprFunction()
/dports/www/R-cran-shiny/shiny/R/
H A Dshinywrappers.R472 func <- installExprFunction(expr, "func", env, quoted, label = "renderImage")
605 func <- installExprFunction(expr, "func", env, quoted, label = "renderPrint")
690 func <- installExprFunction(expr, "func", env, quoted, label = "renderText")
746 func <- installExprFunction(expr, "func", env, quoted, label = "renderUI")
903 func <- installExprFunction(expr, "func", env, quoted, label = "renderDataTable")
H A Dutils-lang.R173 installExprFunction <- function(expr, name, eval.env = parent.frame(2), function
H A Drender-table.R75 func <- installExprFunction(expr, "func", env, quoted, label = "renderTable")
H A Dreactives.R1004 func <- installExprFunction(x, "func", env, quoted, wrappedWithLabel = FALSE)
1422 func <- installExprFunction(x, "func", env, quoted)
H A Drender-plot.R66 func <- installExprFunction(
/dports/www/R-cran-shiny/shiny/tests/testthat/
H A Dtest-render-functions.R109 installExprFunction(exprF, "func", envF, quotedF)
119 installExprFunction(exprF, "func", envF, quoted = TRUE)
129 installExprFunction(exprF, "func", envF, quoted = TRUE)
H A Dtest-bind-cache.R1011 installExprFunction(expr, "func")
1054 installExprFunction(expr, "func")
1066 installExprFunction(expr, "func")
1125 installExprFunction(expr, "func")
H A Dtest-reactivity.r904 shiny:::installExprFunction(anExpression, "myFunc", envirToUse, quoted = isQuoted)
/dports/www/R-cran-htmlwidgets/htmlwidgets/R/
H A Dhtmlwidgets.R517 shiny::installExprFunction(expr, "func", env, quoted)
/dports/www/R-cran-shiny/shiny/
H A DNAMESPACE152 export(installExprFunction)
H A DNEWS.md31 * `installExprFunction()` and `exprToFunction()` are now able to handle quosures when `quoted = TRU…
1453 …used to debug Shiny apps. Internally, the registration is done via installExprFunction(), which is…