OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:user_function
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/Index/
retain-comments-from-system-headers.c
6
*
user_function
9
int
user_function
(int a);
20
// CHECK: retain-comments-from-system-headers.c:9:5: FunctionDecl=
user_function
:9:5 RawComment=[/**\n *
user_function
\n * \param a Aaa.\n */] RawCommentRange=[5:1 - 8:4] BriefComment=[
user_function
]
23
// CHECK-RETAIN: retain-comments-from-system-headers.c:9:5: FunctionDecl=
user_function
:9:5 RawComment=[/**\n *
user_function
\n * \param a Aaa.\n */] RawCommentRange=[5:1 - 8:4] BriefComment=[
user_function
]
/external/python/cpython3/Lib/
reprlib.py
15
def decorating_function(
user_function
):
24
result =
user_function
(self)
30
wrapper.__module__ = getattr(
user_function
, '__module__')
31
wrapper.__doc__ = getattr(
user_function
, '__doc__')
32
wrapper.__name__ = getattr(
user_function
, '__name__')
33
wrapper.__qualname__ = getattr(
user_function
, '__qualname__')
34
wrapper.__annotations__ = getattr(
user_function
, '__annotations__', {})
functools.py
479
def decorating_function(
user_function
):
480
wrapper = _lru_cache_wrapper(
user_function
, maxsize, typed, _CacheInfo)
481
return update_wrapper(wrapper,
user_function
)
485
def _lru_cache_wrapper(
user_function
, maxsize, typed, _CacheInfo):
505
result =
user_function
(*args, **kwds)
519
result =
user_function
(*args, **kwds)
543
result =
user_function
(*args, **kwds)
/external/llvm/test/Bindings/OCaml/
core.ml
604
let fn = define_function "
user_function
" ty m in
[
all
...]
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
vmcore.ml
522
let fn = define_function "
user_function
" ty m in
[
all
...]
Completed in 357 milliseconds