Searched refs:delegate (Results 1 - 24 of 24) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DClangASTImporter.h209 CxxModuleScope(ASTImporterDelegate &delegate, clang::ASTContext *dst_ctx) argument
210 : m_delegate(delegate) {
211 // If the delegate doesn't have a CxxModuleHandler yet, create one
213 if (!delegate.m_std_handler) {
214 m_handler = CxxModuleHandler(delegate, dst_ctx);
216 delegate.m_std_handler = &m_handler;
308 ImporterDelegateSP delegate = local
310 delegates[src_ctx] = delegate;
311 return delegate;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp37 ContinueDelegate &delegate, const UnixSignals &signals,
91 delegate.HandleAsyncStdout(inferior_stdout);
95 delegate.HandleAsyncMisc(
99 delegate.HandleAsyncStructuredDataPacket(response.GetStringRef());
118 delegate.HandleStopReply();
36 SendContinuePacketAndWaitForResponse( ContinueDelegate &delegate, const UnixSignals &signals, llvm::StringRef payload, StringExtractorGDBRemote &response) argument
H A DGDBRemoteClientBase.h41 ContinueDelegate &delegate, const UnixSignals &signals,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h140 Delegate *delegate = nullptr,
143 VRM(vrm), TII(*MF.getSubtarget().getInstrInfo()), TheDelegate(delegate),
235 /// eraseVirtReg - Notify the delegate that Reg is no longer in use, and try
H A DMachineFunction.h430 /// Reset the currently registered delegate - otherwise assert.
431 void resetDelegate(Delegate *delegate) {
432 assert(TheDelegate == delegate &&
433 "Only the current delegate can perform reset!");
437 /// Set the delegate. resetDelegate must be called before attempting
439 void setDelegate(Delegate *delegate) {
440 assert(delegate && !TheDelegate &&
441 "Attempted to set delegate to null, or to change it without "
444 TheDelegate = delegate;
H A DMachineRegisterInfo.h157 void resetDelegate(Delegate *delegate) { argument
158 // Ensure another delegate does not take over unless the current
159 // delegate first unattaches itself. If we ever need to multicast
161 assert(TheDelegate == delegate &&
162 "Only the current delegate can perform reset!");
166 void setDelegate(Delegate *delegate) { argument
167 assert(delegate && !TheDelegate &&
168 "Attempted to set delegate to null, or to change it without "
171 TheDelegate = delegate;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h81 PersistentVariableDelegate *delegate, Status &err);
85 PersistentVariableDelegate *delegate, Status &err);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp217 IOHandlerDelegate &delegate, repro::DataRecorder *data_recorder)
225 line_number_start, delegate, data_recorder) {}
234 IOHandlerDelegate &delegate, repro::DataRecorder *data_recorder)
240 m_delegate(delegate), m_prompt(), m_continuation_prompt(),
259 // See if the delegate supports fixing indentation
260 const char *indent_chars = delegate.IOHandlerGetFixIndentationCharacters();
262 // The delegate does support indentation, hook it up so when any
263 // indentation character is typed, the delegate gets a chance to fix it
212 IOHandlerEditline( Debugger &debugger, IOHandler::Type type, const char *editline_name, llvm::StringRef prompt, llvm::StringRef continuation_prompt, bool multi_line, bool color_prompts, uint32_t line_number_start, IOHandlerDelegate &delegate, repro::DataRecorder *data_recorder) argument
227 IOHandlerEditline( Debugger &debugger, IOHandler::Type type, const lldb::FileSP &input_sp, const lldb::StreamFileSP &output_sp, const lldb::StreamFileSP &error_sp, uint32_t flags, const char *editline_name, llvm::StringRef prompt, llvm::StringRef continuation_prompt, bool multi_line, bool color_prompts, uint32_t line_number_start, IOHandlerDelegate &delegate, repro::DataRecorder *data_recorder) argument
H A DIOHandlerCursesGUI.cpp804 // delegate, and if not, try our parent menu
1446 TreeItem(TreeItem *parent, TreeDelegate &delegate, bool might_have_children) argument
1447 : m_parent(parent), m_delegate(delegate), m_user_data(nullptr),
3914 // This is both a window and a menu delegate
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h97 NativeProcessNetBSD(::pid_t pid, int terminal_fd, NativeDelegate &delegate,
H A DNativeProcessNetBSD.cpp150 NativeDelegate &delegate,
153 : NativeProcessELF(pid, terminal_fd, delegate), m_arch(arch) {
187 // Notify delegate that our process has exited.
259 // Let our delegate know we have just exec'd.
149 NativeProcessNetBSD(::pid_t pid, int terminal_fd, NativeDelegate &delegate, const ArchSpec &arch, MainLoop &mainloop) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp51 Materializer::PersistentVariableDelegate *delegate)
53 m_delegate(delegate) {
400 PersistentVariableDelegate *delegate, Status &err) {
402 iter->reset(new EntityPersistentVariable(persistent_variable_sp, delegate));
765 Materializer::PersistentVariableDelegate *delegate)
769 m_temporary_allocation_size(0), m_delegate(delegate) {
1032 PersistentVariableDelegate *delegate,
1036 keep_in_memory, delegate));
50 EntityPersistentVariable(lldb::ExpressionVariableSP &persistent_variable_sp, Materializer::PersistentVariableDelegate *delegate) argument
398 AddPersistentVariable( lldb::ExpressionVariableSP &persistent_variable_sp, PersistentVariableDelegate *delegate, Status &err) argument
763 EntityResultVariable(const CompilerType &type, bool is_program_reference, bool keep_in_memory, Materializer::PersistentVariableDelegate *delegate) argument
1029 AddResultVariable(const CompilerType &type, bool is_program_reference, bool keep_in_memory, PersistentVariableDelegate *delegate, Status &err) argument
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp74 NativeProcessProtocol::NativeDelegate &delegate,
79 Attach(lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &delegate,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h184 /// A delegate class for use with IOHandler subclasses.
186 /// The IOHandler delegate is designed to be mixed into classes so
188 /// object that inherits from this delegate class when a token is
241 /// received. It is up to the delegate to determine when a line
333 IOHandlerDelegate &delegate,
346 IOHandlerDelegate &delegate,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h433 IOHandlerDelegate &delegate,
437 IOHandlerDelegate &delegate,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp896 Materializer::PersistentVariableDelegate &delegate,
900 keep_result_in_memory, &delegate, exe_ctx.GetTargetSP(),
894 ResetDeclMap( ExecutionContext &exe_ctx, Materializer::PersistentVariableDelegate &delegate, bool keep_result_in_memory, ValueObject *ctx_obj) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp27 NativeDelegate &delegate)
29 bool registered = RegisterNativeDelegate(delegate);
319 // We removed the delegate if the count of delegates shrank after removing
26 NativeProcessProtocol(lldb::pid_t pid, int terminal_fd, NativeDelegate &delegate) argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h220 /// Register a native delegate.
233 /// true if the delegate was registered successfully;
234 /// false if the delegate was already registered.
239 /// Unregister a native delegate previously registered.
265 /// The delegate that will receive messages regarding the
287 /// The delegate that will receive messages regarding the
431 NativeDelegate &delegate);
463 /// Notify the delegate that an exec occurred.
465 /// Provide a mechanism for a delegate to clear out any exec-
/freebsd-11-stable/contrib/libxo/xohtml/external/
H A Djquery.qtip.js662 .delegate('.qtip-close', 'mousedown keydown mouseup keyup mouseout', function(event) {
665 .delegate('.qtip-close', 'mouseover mouseout', function(event){
1325 // Apply common event handlers using delegate (avoids excessive .bind calls!)
1327 function delegate(selector, events, method) {
1328 $(document.body).delegate(selector,
1338 delegate(SELECTOR, ['mouseenter', 'mouseleave'], function(event) {
1367 delegate('['+ATTR_ID+']', INACTIVE_EVENTS, inactiveMethod);
H A Djquery.js3833 delegate: function( selector, types, data, fn ) {
/freebsd-11-stable/sys/fs/nfsserver/
H A Dnfs_nfsdstate.c2591 int error = 0, haslock = 0, ret, delegate = 1, writedeleg = 1; local
2754 delegate = 0;
2779 delegate = 0;
2842 delegate = 0;
2848 delegate = 2;
3007 if (delegate == 2 || nfsrv_issuedelegs == 0 ||
3099 else if (delegate == 0 || writedeleg == 0 ||
3163 else if (delegate == 0 || (writedeleg == 0 &&
3230 if (delegate && nfsrv_issuedelegs &&
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2842 const char *prompt, IOHandlerDelegate &delegate, void *baton) {
2852 delegate, // IOHandlerDelegate
2862 const char *prompt, IOHandlerDelegate &delegate, void *baton) {
2872 delegate, // IOHandlerDelegate
2841 GetLLDBCommandsFromIOHandler( const char *prompt, IOHandlerDelegate &delegate, void *baton) argument
2861 GetPythonCommandsFromIOHandler( const char *prompt, IOHandlerDelegate &delegate, void *baton) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h462 /// back to the JITDylib via the delegate method.
522 MaterializationResponsibility delegate(const SymbolNameSet &Symbols,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp516 MaterializationResponsibility::delegate(const SymbolNameSet &Symbols, function in class:llvm::orc::MaterializationResponsibility
669 R.delegate(ResponsibilitySymbols), std::move(QueryAliases));

Completed in 256 milliseconds