Searched refs:function (Results 1 - 25 of 1452) sorted by relevance

1234567891011>>

/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DThreadFunctionInvocation.h39 ThreadFunctionInvocation(ThreadFunction function, void* data) argument
40 : function(function)
45 ThreadFunction function; member in struct:WTF::ThreadFunctionInvocation
H A DRunLoop.cpp81 // One possible scenario when handling the function queue is as follows:
82 // - RunLoop::performWork() is invoked with 1 function on the queue
83 // - Handling that function results in 1 more function being enqueued
91 std::function<void()> function; local
101 function = m_functionQueue.takeFirst();
104 function();
116 function = m_functionQueue.takeFirst();
119 function();
123 dispatch(std::function<void ()> function) argument
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/Misc/
H A DOldWebAssertions.c29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) argument
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...) argument
/macosx-10.10.1/Security-57031.1.35/Security/utilities/SecurityTool/
H A Dsecurity_tool_commands.h29 #define SECURITY_COMMAND(name, function, parameters, description) int function(int argc, char * const *argv);
32 #define SECURITY_COMMAND_IOS(name, function, parameters, description) int function(int argc, char * const *argv);
34 #define SECURITY_COMMAND_IOS(name, function, parameters, description) extern int command_not_on_this_platform(int argc, char * const *argv);
38 #define SECURITY_COMMAND_MAC(name, function, parameters, description) int function(int argc, char * const *argv);
40 #define SECURITY_COMMAND_MAC(name, function, parameters, description) extern int command_not_on_this_platform(int argc, char * const *argv);
H A Dsecurity_tool_commands_table.h32 #define SECURITY_COMMAND(name, function, parameters, description) { name, function, parameters, description },
35 #define SECURITY_COMMAND_IOS(name, function, parameters, description) { name, function, parameters, description },
37 #define SECURITY_COMMAND_IOS(name, function, parameters, description) { name, command_not_on_this_platform, "", "Not available on this platform" },
41 #define SECURITY_COMMAND_MAC(name, function, parameters, description) { name, function, parameters, description },
43 #define SECURITY_COMMAND_MAC(name, function, parameters, description) { name, command_not_on_this_platform, "", "Not available on this platform" },
/macosx-10.10.1/WebKit2-7600.1.25/Platform/efl/
H A DWorkQueueEfl.cpp37 void WorkQueue::registerSocketEventHandler(int fileDescriptor, std::function<void ()> function) argument
42 m_dispatchQueue->setSocketEventHandler(fileDescriptor, WTF::move(function));
55 void WorkQueue::dispatch(std::function<void ()> function) argument
60 m_dispatchQueue->dispatch(WorkItem::create(this, WTF::move(function)));
63 void WorkQueue::dispatchAfter(std::chrono::nanoseconds duration, std::function<void ()> function) argument
68 m_dispatchQueue->dispatch(TimerWorkItem::create(this, WTF::move(function), duration));
H A DDispatchQueueWorkItemEfl.h37 static std::unique_ptr<WorkItem> create(PassRefPtr<WorkQueue> workQueue, std::function<void ()> function) argument
39 return std::unique_ptr<WorkItem>(new WorkItem(workQueue, WTF::move(function)));
44 WorkItem(PassRefPtr<WorkQueue> workQueue, std::function<void ()> function) argument
46 , m_function(WTF::move(function))
52 std::function<void ()> m_function;
57 static std::unique_ptr<TimerWorkItem> create(PassRefPtr<WorkQueue> workQueue, std::function<void ()> function, std::chrono::nanoseconds delayNanoSeconds) argument
60 return std::unique_ptr<TimerWorkItem>(new TimerWorkItem(workQueue, WTF::move(function), monotonicallyIncreasingTim
66 TimerWorkItem(PassRefPtr<WorkQueue> workQueue, std::function<void ()> function, double expirationTimeNanoSeconds) argument
[all...]
/macosx-10.10.1/apache-793/httpd/modules/lua/test/htdocs/
H A Dsimple.lua0 function handle(r)
/macosx-10.10.1/JavaScriptCore-7600.1.17/llvm/library/
H A DLLVMOverrides.cpp40 extern "C" void __assert_rtn(const char* function, const char* filename, int lineNumber, const char* expression);
48 extern "C" void __assert_rtn(const char* function, const char* filename, int lineNumber, const char* expression) argument
50 if (function)
51 g_llvmTrapCallback("Assertion failed: (%s), function %s, file %s, line %d.", expression, function, filename, lineNumber);
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dadvice.el48 ;; modifications can be achieved by treating the original function as a
51 ;; hook that you can attach to any function/macro/subr.
57 ;; - Full control over the arguments an advised function will receive,
62 ;; combined with the original documentation of the advised function at
69 ;; version of a function.
77 ;; completely redefine a function.
120 ;; when they are invoked via their function cell. This means that advice will
150 ;; generates an advised definition of the `documentation' function, and
155 ;; Advice or to some ill-advised function do one of the following:
158 ;; function give
[all...]
H A Dtrace.el53 ;; - Only functions/macros/subrs that are called via their function cell will
67 ;; (autoload 'trace-function "trace" "Trace a function" t)
68 ;; (autoload 'trace-function-background "trace" "Trace a function" t)
74 ;; - To trace a function say `M-x trace-function' which will ask you for the
75 ;; name of the function/subr/macro to trace, as well as for the buffer
77 ;; - If you want to trace a function that switches buffers or does other
78 ;; display oriented stuff use `M-x trace-function
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dbuiltin.c21 normal alias/function/builtin/filename lookup process. */
26 sh_builtin_func_t *function; local
38 function = builtin_address (command);
40 function = find_shell_builtin (command);
43 if (!function)
52 return ((*function) (list));
/macosx-10.10.1/WTF-7600.1.24/wtf/gobject/
H A DGMainLoopSource.h53 WTF_EXPORT_PRIVATE void schedule(const char* name, std::function<void()>, int priority = G_PRIORITY_DEFAULT, std::function<void()> destroyFunction = nullptr, GMainContext* = nullptr);
54 WTF_EXPORT_PRIVATE void schedule(const char* name, std::function<bool()>, int priority = G_PRIORITY_DEFAULT, std::function<void()> destroyFunction = nullptr, GMainContext* = nullptr);
55 WTF_EXPORT_PRIVATE void schedule(const char* name, std::function<bool(GIOCondition)>, GSocket*, GIOCondition, std::function<void()> destroyFunction = nullptr, GMainContext* = nullptr);
56 WTF_EXPORT_PRIVATE void scheduleAfterDelay(const char* name, std::function<void()>, std::chrono::milliseconds, int priority = G_PRIORITY_DEFAULT, std::function<void()> destroyFunction = nullptr, GMainContext* = nullptr);
57 WTF_EXPORT_PRIVATE void scheduleAfterDelay(const char* name, std::function<bool()>, std::chrono::milliseconds, int priority = G_PRIORITY_DEFAULT, std::function<voi
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/kadm5/
H A Diprop-commands.in50 function = "iprop_dump"
69 function = "iprop_truncate"
102 function = "iprop_replay"
121 function = "last_version"
129 function = "help"
/macosx-10.10.1/WebKit2-7600.1.25/Platform/mac/
H A DWorkQueueMac.cpp29 void WorkQueue::dispatch(std::function<void ()> function) argument
33 function();
38 void WorkQueue::dispatchAfter(std::chrono::nanoseconds duration, std::function<void ()> function) argument
42 function();
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/
H A Donce.c31 isc_once_do(isc_once_t *controller, void(*function)(void)) {
32 REQUIRE(controller != NULL && function != NULL);
38 function();
/macosx-10.10.1/ntp-92/lib/isc/win32/
H A Donce.c31 isc_once_do(isc_once_t *controller, void(*function)(void)) {
32 REQUIRE(controller != NULL && function != NULL);
38 function();
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dget_compat.h26 extern bool compat_mode(const char *function, const char *mode);
/macosx-10.10.1/WTF-7600.1.24/wtf/gtk/
H A DMainThreadGtk.cpp43 GMainLoopSource::createAndDeleteOnDestroy().schedule("[WebKit] dispatchFunctionsFromMainThread", std::function<void()>(dispatchFunctionsFromMainThread));
/macosx-10.10.1/apache-793/httpd/modules/lua/
H A Dlua_config.h27 const char *function,
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/vax/
H A Dentrymask.s8 .type label2,@function
/macosx-10.10.1/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_yield.c92 #error No yield function defined
/macosx-10.10.1/ruby-106/extras/dtrace_sample/
H A Dprint_calls.d2 /* Prints the file, line, class and function of every function entry and function return. */
4 ruby*:::function-entry
9 ruby*:::function-return
/macosx-10.10.1/zlib-55/zlib/contrib/pascal/
H A Dzlibpas.pas16 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
21 in_func = function(opaque: Pointer; var buf: PByte): Integer;
23 out_func = function(opaque: Pointer; buf: PByte; size: Integer): Integer;
83 function zlibVersion: PChar;
84 function deflateInit(var strm: z_stream; level: Integer): Integer;
85 function deflate(var strm: z_stream; flush: Integer): Integer;
86 function deflateEnd(var strm: z_stream): Integer;
87 function inflateInit(var strm: z_stream): Integer;
88 function inflate(var strm: z_stream; flush: Integer): Integer;
89 function inflateEn
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DInjectedScript.cpp63 Deprecated::ScriptFunctionCall function(injectedScriptObject(), ASCIILiteral("evaluate"), inspectorEnvironment()->functionCallHandler());
64 function.appendArgument(expression);
65 function.appendArgument(objectGroup);
66 function.appendArgument(includeCommandLineAPI);
67 function.appendArgument(returnByValue);
68 function.appendArgument(generatePreview);
69 makeEvalCall(errorString, function, result, wasThrown);
74 Deprecated::ScriptFunctionCall function(injectedScriptObject(), ASCIILiteral("callFunctionOn"), inspectorEnvironment()->functionCallHandler());
75 function.appendArgument(objectId);
76 function
[all...]

Completed in 221 milliseconds

1234567891011>>