===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-roxygen2-7.1.1/tests/testthat/roxygen-block-3-A.Rd-15-## ------------------------------------------------
r-cran-roxygen2-7.1.1/tests/testthat/roxygen-block-3-A.Rd:16:## Method `A$meth1`
r-cran-roxygen2-7.1.1/tests/testthat/roxygen-block-3-A.Rd-17-## ------------------------------------------------
##############################################
r-cran-roxygen2-7.1.1/tests/testthat/roxygen-block-3-A.Rd-21-## ------------------------------------------------
r-cran-roxygen2-7.1.1/tests/testthat/roxygen-block-3-A.Rd:22:## Method `A$meth2`
r-cran-roxygen2-7.1.1/tests/testthat/roxygen-block-3-A.Rd-23-## ------------------------------------------------
##############################################
r-cran-roxygen2-7.1.1/vignettes/extending.Rmd-119-The name of the class will be `roxy_tag_{tag}`, which in this case is `roxy_tag_tip`. 
r-cran-roxygen2-7.1.1/vignettes/extending.Rmd:120:This function takes a `roxy_tag` as input, and it's job is to set `x$val` to a convenient parsed value that will be used later by the roclet.
r-cran-roxygen2-7.1.1/vignettes/extending.Rmd-121-Here we want to process the text using markdown so we can just use `tag_markdown()`:
##############################################
r-cran-roxygen2-7.1.1/vignettes/extending.Rmd-170-Each tag generates an `rd_section` which is then combined with any previous section using `merge()`.
r-cran-roxygen2-7.1.1/vignettes/extending.Rmd:171:The default `merge.rd_section()` just concatenates the values together (`rd_section(x$type, c(x$value, y$value))`); you can override this method if you need more sophisticated behaviour.
r-cran-roxygen2-7.1.1/vignettes/extending.Rmd-172-
##############################################
r-cran-roxygen2-7.1.1/R/markdown-link.R-98-    contents <- xml_contents(contents)
r-cran-roxygen2-7.1.1/R/markdown-link.R:99:    destination <- sub("`$", "", sub("^`", "", destination))
r-cran-roxygen2-7.1.1/R/markdown-link.R-100-  }
##############################################
r-cran-roxygen2-7.1.1/R/object-from-call.R-149-  name <- as.character(call$f)
r-cran-roxygen2-7.1.1/R/object-from-call.R:150:  value <- methods::getMethod(name, eval(call$signature), where = env)
r-cran-roxygen2-7.1.1/R/object-from-call.R-151-  value@.Data <- extract_method_fun(value@.Data)
##############################################
r-cran-roxygen2-7.1.1/R/field.R-10-#' may also need to provide a `merge.rd_section_{type}` method if two
r-cran-roxygen2-7.1.1/R/field.R:11:#' sections can not be combined with `rd_section(x$type, c(x$value, y$value))`.
r-cran-roxygen2-7.1.1/R/field.R-12-#' See `vignette("extending")` for more details.
##############################################
r-cran-roxygen2-7.1.1/R/object-package.R-14-package_authors <- function(desc) {
r-cran-roxygen2-7.1.1/R/object-package.R:15:  authors <- tryCatch(eval(parse(text = desc$`Authors@R` %||% "")),
r-cran-roxygen2-7.1.1/R/object-package.R-16-    error = function(e) {
##############################################
r-cran-roxygen2-7.1.1/R/tag-parser.R-8-#' To create a new `@mytag` define `roxy_tag_parse.roxy_tag_mytag()`. It should
r-cran-roxygen2-7.1.1/R/tag-parser.R:9:#' either call one of the functions here, or directly set `x$val`.
r-cran-roxygen2-7.1.1/R/tag-parser.R-10-#'
##############################################
r-cran-roxygen2-7.1.1/R/topic.R-146-  #' Ensures that each type of name (as given by its name), only appears
r-cran-roxygen2-7.1.1/R/topic.R:147:  #' once in `self$sections`. This method if for internal use only.
r-cran-roxygen2-7.1.1/R/topic.R-148-  #' @param section [rd_section] object to add.
##############################################
r-cran-roxygen2-7.1.1/R/object-rc.R-41-get_method <- function(obj, method_name) {
r-cran-roxygen2-7.1.1/R/object-rc.R:42:  eval(call("$", quote(obj), as.name(method_name)))
r-cran-roxygen2-7.1.1/R/object-rc.R-43-}
##############################################
r-cran-roxygen2-7.1.1/NEWS.md-1137-
r-cran-roxygen2-7.1.1/NEWS.md:1138:* `x$y <- function() {...}` no longer causes error
r-cran-roxygen2-7.1.1/NEWS.md-1139-
##############################################
r-cran-roxygen2-7.1.1/inst/doc/extending.Rmd-119-The name of the class will be `roxy_tag_{tag}`, which in this case is `roxy_tag_tip`. 
r-cran-roxygen2-7.1.1/inst/doc/extending.Rmd:120:This function takes a `roxy_tag` as input, and it's job is to set `x$val` to a convenient parsed value that will be used later by the roclet.
r-cran-roxygen2-7.1.1/inst/doc/extending.Rmd-121-Here we want to process the text using markdown so we can just use `tag_markdown()`:
##############################################
r-cran-roxygen2-7.1.1/inst/doc/extending.Rmd-170-Each tag generates an `rd_section` which is then combined with any previous section using `merge()`.
r-cran-roxygen2-7.1.1/inst/doc/extending.Rmd:171:The default `merge.rd_section()` just concatenates the values together (`rd_section(x$type, c(x$value, y$value))`); you can override this method if you need more sophisticated behaviour.
r-cran-roxygen2-7.1.1/inst/doc/extending.Rmd-172-
##############################################
r-cran-roxygen2-7.1.1/debian/tests/run-unit-test-6-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-roxygen2-7.1.1/debian/tests/run-unit-test:7:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-roxygen2-7.1.1/debian/tests/run-unit-test-8-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM