Home
last modified time | relevance | path

Searched refs:delegate (Results 1 – 25 of 83) sorted by relevance

1234

/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dclass-conforming-protocol-2.m10 - (id <IBStringsTableWindowDelegate>) delegate; // expected-note {{previous definition is here}} method
18 - (void)setDelegate:(id <IBStringsTableWindowDelegate>)delegate { // expected-warning {{conflicting…
20 - (id <NSWindowDelegate>)delegate { // expected-warning {{conflicting return type in implementation… method
H A Dmultiple-property-deprecated-decl.m9 @property (assign) id <NSFileManagerDelegate> delegate; property
13 …(assign) id delegate __attribute__((availability(macosx,introduced=10.0 ,deprecated=10.11,message=…
18 return [p delegate];
H A Dmethod-in-class-extension-impl.m8 - (id <ViewDelegate>)delegate; method
15 - (id)delegate;
19 - (id)delegate {return 0; } method
H A Dno-gc-weak-test.m7 …atomic,readwrite,assign) id __weak delegate; // expected-error {{unsafe_unretained proper… property
11 @synthesize delegate = _delegate;
H A Dresolve-method-in-global-pool.m48 @property (assign) id <NSKeyedArchiverDelegate> delegate; property
52 @property (assign) id delegate; property
62 return [NSApp delegate];
H A Dcompatible-protocol-qualified-types.m47 …id)setDelegate:(id <NSTextStorageDelegate>)delegate; // expected-note{{passing argument to paramet…
48 - (id <NSTextStorageDelegate>)delegate; method
H A Dproperty-lookup-in-id.m28 …fsEventStream = [NSApp delegate].fsEventStream; // expected-warning {{instance method '-delegate' …
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Dvoid_to_obj.mm16 void* delegate; field
23 - (I*) Meth { return static_cast<I*>(delegate); }
24 - (I*) Meth1 { return reinterpret_cast<I*>(delegate); }
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.h292 CxxModuleScope(ASTImporterDelegate &delegate, clang::ASTContext *dst_ctx) in CxxModuleScope()
293 : m_delegate(delegate) { in CxxModuleScope()
296 if (!delegate.m_std_handler) { in CxxModuleScope()
297 m_handler = CxxModuleHandler(delegate, dst_ctx); in CxxModuleScope()
299 delegate.m_std_handler = &m_handler; in CxxModuleScope()
442 ImporterDelegateSP delegate = in GetDelegate() local
444 delegates[src_ctx] = delegate; in GetDelegate()
445 return delegate; in GetDelegate()
/llvm-project-15.0.7/libc/docs/
H A Dlayering.rst10 delegate parts of the functionality to the system-libc. The delegation happens
21 functions. For example, one cannot delegate just the `fopen` function to the
22 system-libc. One will have to delegate all `FILE` related functions to the
/llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/
H A DGDBRemoteClientBaseTest.cpp62 MockDelegate delegate; member in __anon7c812b550111::GDBRemoteClientBaseTest
66 return client.SendContinuePacketAndWaitForResponse(delegate, LinuxSignals(), in SendCPacket()
291 EXPECT_EQ("ABCD", delegate.output); in TEST_F()
292 EXPECT_EQ("profile", delegate.misc_data); in TEST_F()
293 EXPECT_EQ(1u, delegate.stop_reply_called); in TEST_F()
316 ASSERT_EQ(1ul, delegate.structured_data_packets.size()); in TEST_F()
320 ASSERT_EQ(json_packet, delegate.structured_data_packets[0]); in TEST_F()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dprotocol-property-synth.m10 @property(assign) id delegate; property
30 @synthesize delegate = _Subdelegate;
/llvm-project-15.0.7/clang/tools/clang-fuzzer/corpus_examples/objc/
H A DBasicClass.m11 @property(nonatomic, assign) id delegate; property
20 @synthesize delegate = _delegate;
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp40 ContinueDelegate &delegate, const UnixSignals &signals, in SendContinuePacketAndWaitForResponse() argument
116 delegate.HandleAsyncStdout(inferior_stdout); in SendContinuePacketAndWaitForResponse()
120 delegate.HandleAsyncMisc( in SendContinuePacketAndWaitForResponse()
124 delegate.HandleAsyncStructuredDataPacket(response.GetStringRef()); in SendContinuePacketAndWaitForResponse()
143 delegate.HandleStopReply(); in SendContinuePacketAndWaitForResponse()
/llvm-project-15.0.7/clang/test/ARCMT/
H A Dobjcmt-property.m65 // Properties that contain the name "delegate" or "dataSource",
74 - (id)delegate; method
77 - (void)setXxxdelegateYYY:(id)delegate;
129 - (void)setXxxdelegateYYY:(id)delegate;
180 - (void)setXxxdelegateYYY:(id)delegate DEPRECATED;
H A Dobjcmt-atomic-property.m65 // Properties that contain the name "delegate" or "dataSource",
74 - (void)setXxxdelegateYYY:(id)delegate;
126 - (void)setXxxdelegateYYY:(id)delegate;
177 - (void)setXxxdelegateYYY:(id)delegate DEPRECATED;
H A Dobjcmt-ns-nonatomic-iosonly.m72 // Properties that contain the name "delegate" or "dataSource",
81 - (void)setXxxdelegateYYY:(id)delegate;
133 - (void)setXxxdelegateYYY:(id)delegate;
184 - (void)setXxxdelegateYYY:(id)delegate DEPRECATED;
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Dcfg-stackify-eh.ll403 ; --- try-delegate ends (call unwind mismatch)
460 ; --- try-delegate ends (call unwind mismatch)
505 ; --- try-delegate ends (call unwind mismatch)
510 ; --- try-delegate ends (call unwind mismatch)
568 ; --- try-delegate ends (call unwind mismatch)
655 ; --- try-delegate ends (call unwind mismatch)
662 ; --- try-delegate ends (call unwind mismatch)
1108 ; CHECK: delegate 1
1147 ; delegate
1215 ; delegate
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Ddelegates.m115 - (id)initWithDelegate:(id)delegate;
116 - (id)initWithNumber:(int)num delegate:(id)delegate;
126 (void)[[ObjectThatRequiresDelegate alloc] initWithNumber:0 delegate:self];
H A DDeallocUseAfterFreeErrors.m50 - (instancetype)initWithDelegate:(NSObject *)delegate {
54 _delegate = delegate;
134 @property (assign) NSObject *delegate; property
138 - (instancetype)initWithDelegate:(NSObject *)delegate {
142 self.delegate = delegate;
147 self.delegate = nil; // expected-warning {{Use of 'self' after it has been deallocated}}
/llvm-project-15.0.7/llvm/test/MC/WebAssembly/
H A Dannotations.s29 delegate 1
57 # CHECK-NEXT: delegate 1 # label/catch6: down to catch4
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessDebugger.h69 DebugDelegateSP delegate);
72 DebugDelegateSP delegate);
/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp2335 return delegate; in AddTextField()
2343 return delegate; in AddFileField()
2352 return delegate; in AddDirectoryField()
2360 return delegate; in AddArchField()
2368 return delegate; in AddIntegerField()
2374 return delegate; in AddBooleanField()
2382 return delegate; in AddLazyBooleanField()
2390 return delegate; in AddChoicesField()
2397 return delegate; in AddPlatformPluginField()
2403 return delegate; in AddProcessPluginField()
[all …]
H A DIOHandler.cpp234 IOHandlerDelegate &delegate, repro::DataRecorder *data_recorder) in IOHandlerEditline() argument
242 line_number_start, delegate, data_recorder) {} in IOHandlerEditline()
251 IOHandlerDelegate &delegate, repro::DataRecorder *data_recorder) in IOHandlerEditline() argument
257 m_delegate(delegate), m_prompt(), m_continuation_prompt(), in IOHandlerEditline()
292 const char *indent_chars = delegate.IOHandlerGetFixIndentationCharacters(); in IOHandlerEditline()
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DMaterializer.h79 PersistentVariableDelegate *delegate, Status &err);
105 PersistentVariableDelegate *delegate, Status &err);

1234