Home
last modified time | relevance | path

Searched refs:is_call (Results 1 – 25 of 740) sorted by relevance

12345678910>>...30

/dports/devel/R-cran-rlang/rlang/man/
H A Dis_call.Rd3 \name{is_call}
4 \alias{is_call}
7 is_call(x, name = NULL, n = NULL, ns = NULL)
47 is_call(quote(foo(bar)))
50 is_call(quote(foo(bar)), "foo")
51 is_call(quote(foo(bar)), "bar")
52 is_call(quote(foo(bar)), quote(foo))
55 is_call(quote(foo(bar)), "foo", 1)
56 is_call(quote(foo(bar)), "foo", 2)
61 is_call(ns_expr, "list")
[all …]
H A Dis_lang.Rd25 \code{is_call()} returns \code{TRUE} if at least one name matches.}
32 \code{""} and \code{x} is a namespaced call, \code{is_call()} returns
33 \code{FALSE}. If any other string, \code{is_call()} checks that \code{x} is
37 has to match at least one of them, otherwise \code{is_call()} returns
45 These functions are deprecated, please use \code{\link[=is_call]{is_call()}} and its \code{n}
/dports/graphics/R-cran-ggplot2/ggplot2/R/
H A Daes-evaluation.r105 if (is_call(get_expr(x), "after_stat")) {
128 is_call(get_expr(x), "after_scale")
131 is_call(get_expr(x), "stage")
152 if (strip_pronoun && is_call(expr, "$") && is_symbol(expr[[2]], ".data")) {
154 } else if (strip_pronoun && is_call(expr, "[[") && is_symbol(expr[[2]], ".data")) {
159 } else if (is_call(expr, "stat")) {
178 if (is_call(uq_expr, c("after_stat", "after_scale"))) {
180 } else if (is_call(uq_expr, "stage")) {
H A Daes.r379 if (is_call(x, "[[") || is_call(x, "$")) {
390 if (is_call(x, "[[")) {
393 } else if (is_call(x, "$")) {
/dports/devel/R-cran-rlang/rlang/tests/testthat/
H A Dtest-call.R156 expect_true(is_call(quote(foo(bar)), "foo"))
157 expect_false(is_call(quote(foo(bar)), "bar"))
162 expect_true(is_call(quote(+3), n = 1))
163 expect_true(is_call(quote(3 + 3), n = 2))
167 expect_false(is_call(1))
168 expect_false(is_call(NULL))
173 expect_false(is_call(quo()))
247 expect_true(is_call(expr, ns = NULL))
248 expect_false(is_call(expr, ns = ""))
249 expect_false(is_call(expr, ns = "baz"))
[all …]
H A Dtest-cnd-entrace.R52 is_call(calls[[1]], "f"),
53 is_call(calls[[2]], "g"),
54 is_call(calls[[3]], "h")
59 is_call(calls[[1]], "f"),
60 is_call(calls[[2]], "g"),
61 is_call(calls[[3]], "h"),
62 is_call(calls[[4]], "signaller"),
63 is_call(calls[[5]], native)
/dports/devel/R-cran-rlang/rlang/R/
H A Dcall.R243 is_call <- function(x, name = NULL, n = NULL, ns = NULL) { function
299 rlang::is_call(x, ...)
364 if (!is_call(call)) {
540 if (!is_call(expr)) {
642 if (!is_call(expr)) {
694 if (!is_call(expr)) {
746 if (!is_call(call)) {
763 if (!is_call(call)) {
768 if (is_call(head, c("::", ":::"))) {
803 if (!is_call(call)) {
[all …]
H A Dexpr.R195 if (is_call(expr)) {
251 if (is_call(expr, function_sym)) {
254 } else if (is_call(expr, brace_sym)) {
256 } else if (is_call(expr)) {
H A Dcnd-abort.R240 if (is_call(wch_calls[[1]], "signal_abort") &&
241 is_call(wch_calls[[2]], "signalCondition") &&
242 is_call(wch_calls[[3]]) && is_function(wch_calls[[3]][[1]])) {
252 try_catch_n <- detect_index(try_catch_calls, is_call, "tryCatch", .right = TRUE)
H A Deval-tidy.R511 is_call(x, c("[[", "$"), n = 2L) && identical(node_cadr(x), dot_data_sym)
514 if (is_call(x, "$")) {
523 if (is_call(x, "[[")) {
/dports/math/R-cran-dplyr/dplyr/R/
H A Dcolwise-funs.R60 where <- !have_name(funs) & map_lgl(funs, function(x) is_bare_formula(x) && is_call(f_rhs(x)))
74 if (is_call(expr, c("function", "~"))) {
79 if (is_call(expr) && !is_call(expr, c("::", ":::"))) {
/dports/devel/R-cran-vctrs/vctrs/tests/testthat/
H A Dhelper-expectations.R42 } else if (is_call(car)) {
52 is_call(expr, "!") && is_call(node_cadr(expr), "!")
55 is_double_bang(expr) && is_call(node_cadr(node_cadr(expr)), "!")
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/_pydevd_bundle/
H A Dpydevd_frame.py596 is_call = False
602 is_call = False
679 is_call = False
686 is_call = False
708 is_call = True
724 is_call = False
791 return None if is_call else NO_FTRACE
846 return None if is_call else NO_FTRACE
1065 return None if is_call else NO_FTRACE
1163 return None if is_call else NO_FTRACE
[all …]
/dports/devel/R-cran-testthat/testthat/R/
H A Dquasi-label.R64 } else if (is_call(x)) {
67 if (is_call(x, "function")) {
95 if (!is_call(x, n = 2)) {
/dports/math/R-cran-lazyeval/lazyeval/man/
H A Dis_lang.Rd6 \alias{is_call}
15 is_call(x)
40 is_call(q3)
/dports/net-mgmt/centreon-clib/centreon-clib-21.04.4/test/
H A Dhandle_manager_multiplex.cc51 bool is_call() const throw() { return (_is_call); } in is_call() function in listener
121 return (l.is_call()); in basic_multiplex_write()
138 return (l.is_call()); in basic_multiplex_close()
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydevd_bundle/
H A Dpydevd_frame.py579 is_call = False
585 is_call = False
662 is_call = False
669 is_call = False
691 is_call = True
705 is_call = False
761 return None if is_call else NO_FTRACE
816 return None if is_call else NO_FTRACE
1038 return None if is_call else NO_FTRACE
1070 return None if is_call else NO_FTRACE
[all …]
/dports/devel/R-cran-lifecycle/lifecycle/R/
H A Dspec.R30 if (!is_call(call)) {
47 if (is_call(head, "::")) {
60 if (!is_symbol(fn) && !is_call(fn, "$")) {
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/_pydevd_bundle/
H A Dpydevd_frame.py520 is_call = False
524 is_call = event == 'call'
525 if not is_line and not is_return and not is_call:
532 if is_call:
567 elif is_call:
604 if not is_call: frame.f_trace = NO_FTRACE
650 if not is_call: frame.f_trace = NO_FTRACE
898 if not is_call: frame.f_trace = NO_FTRACE
909 if not is_call: frame.f_trace = NO_FTRACE
928 if not is_call: frame.f_trace = NO_FTRACE
[all …]
/dports/math/R-cran-lazyeval/lazyeval/R/
H A Dlanguage.R24 is_call(x) || is_pairlist(x) || is_atomic(x) || is_name(x) || is.null(x)
35 is_call <- function(x) { function
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/cpu/arm/
H A DnativeInst_arm_32.hpp112 bool is_call() const { return is_bl() || is_fat_call(); } in is_call() function in RawNativeInstruction
329 …assert(RawNativeInstruction::is_call() || (!VM_Version::supports_movw() && RawNativeInstruction::i… in verify()
340 assert(rawNativeInstruction_at(address)->is_call(), "must be"); in rawNativeCall_at()
427 assert(nativeInstruction_at(address)->is_call() || in nativeCall_at()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/cpu/arm/
H A DnativeInst_arm_32.hpp112 bool is_call() const { return is_bl() || is_fat_call(); } in is_call() function in RawNativeInstruction
329 …assert(RawNativeInstruction::is_call() || (!VM_Version::supports_movw() && RawNativeInstruction::i… in verify()
340 assert(rawNativeInstruction_at(address)->is_call(), "must be"); in rawNativeCall_at()
427 assert(nativeInstruction_at(address)->is_call() || in nativeCall_at()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/cpu/arm/
H A DnativeInst_arm_32.hpp113 bool is_call() const { return is_bl() || is_fat_call(); } in is_call() function in RawNativeInstruction
330 …assert(RawNativeInstruction::is_call() || (!VM_Version::supports_movw() && RawNativeInstruction::i… in verify()
341 assert(rawNativeInstruction_at(address)->is_call(), "must be"); in rawNativeCall_at()
428 assert(nativeInstruction_at(address)->is_call() || in nativeCall_at()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/cpu/arm/
H A DnativeInst_arm_32.hpp112 bool is_call() const { return is_bl() || is_fat_call(); } in is_call() function in RawNativeInstruction
329 …assert(RawNativeInstruction::is_call() || (!VM_Version::supports_movw() && RawNativeInstruction::i… in verify()
340 assert(rawNativeInstruction_at(address)->is_call(), "must be"); in rawNativeCall_at()
422 assert(nativeInstruction_at(address)->is_call() || in nativeCall_at()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/cpu/arm/
H A DnativeInst_arm_32.hpp114 bool is_call() const { return is_bl() || is_fat_call(); } in is_call() function in RawNativeInstruction
328 …assert(RawNativeInstruction::is_call() || (!VM_Version::supports_movw() && RawNativeInstruction::i… in verify()
339 assert(rawNativeInstruction_at(address)->is_call(), "must be"); in rawNativeCall_at()
426 assert(nativeInstruction_at(address)->is_call() || in nativeCall_at()

12345678910>>...30