HomeSort by relevance Sort by last modified time
    Searched full:_delegate (Results 1 - 25 of 25) sorted by null

  /external/clang/test/Rewriter/
func-in-impl.m 5 id _delegate;
20 if ([self->_delegate respondsToSelector:@selector(handlePortMessage:)]) {
30 // CHECK: if (((id (*)(id, SEL, ...))(void *)objc_msgSend)((id)((struct I_IMPL *)self)->_delegate, sel_registerName("respondsToSelector:"), sel_registerName("handlePortMessage:")))
  /external/clang/test/SemaObjC/
no-gc-weak-test.m 5 id _delegate;
11 @synthesize delegate = _delegate;
selector-3.m 42 id<MSPauseManagerDelegate> _delegate;
49 if ([_delegate respondsToSelector:@selector(pauseManagerDidPause:)])
interface-scope-2.m 47 id _delegate;
66 if (_delegate != delegate) {
69 if (_delegate != ((void *)0)) {
70 dvFlags->delegateRespondsToPrintInfoForBarView = [_delegate respondsToSelector:@selector(printInfoForBarView:)];
property-inherited.m 21 id _delegate;
  /external/webkit/Source/WebKit/mac/WebView/
WebVideoFullscreenHUDWindowController.mm 216 return _delegate;
221 _delegate = delegate;
454 if (HTMLMediaElement* mediaElement = [_delegate mediaElement])
463 if (HTMLMediaElement* mediaElement = [_delegate mediaElement])
473 return [_delegate mediaElement] ? [_delegate mediaElement]->currentTime() : 0;
478 if (![_delegate mediaElement])
481 [_delegate mediaElement]->setCurrentTime(currentTime, e);
487 return [_delegate mediaElement] ? [_delegate mediaElement]->duration() : 0
    [all...]
WebVideoFullscreenController.h 42 id <WebVideoFullscreenControllerDelegate> _delegate; // (assign) variable
WebVideoFullscreenHUDWindowController.h 36 id <WebVideoFullscreenHUDWindowControllerDelegate> _delegate; variable
WebVideoFullscreenController.mm 171 return _delegate;
176 _delegate = delegate;
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
queueengine.py 74 self._delegate = delegate
92 self._delegate.begin_work_queue()
93 while (self._delegate.should_continue_work_queue()):
96 work_item = self._delegate.next_work_item()
100 if not self._delegate.should_proceed_with_work_item(work_item):
108 if not self._delegate.process_work_item(work_item):
117 self._delegate.handle_unexpected_error(work_item, message)
133 self._delegate.stop_work_queue(message)
139 self._queue_log = self._output_tee.add_log(self._delegate.queue_log_path())
143 work_item_log_path = self._delegate.work_item_log_path(work_item
    [all...]
commitqueuetask.py 60 self._delegate = delegate
69 self._patch = self._delegate.refetch_patch(self._patch)
84 self._delegate.run_command(command)
85 self._delegate.command_passed(success_message, patch=self._patch)
89 self.failure_status_id = self._delegate.command_failed(failure_message, script_error=self._script_error, patch=self._patch)
149 self._expected_failures.shrink_expected_failures(self._delegate.layout_test_results(), success)
164 self._expected_failures.shrink_expected_failures(self._delegate.layout_test_results(), success)
181 self._delegate.report_flaky_tests(self._patch, flaky_test_results, results_archive)
194 first_results = self._delegate.layout_test_results()
195 first_results_archive = self._delegate.archive_last_layout_test_results(self._patch
    [all...]
  /external/clang/test/CodeGenObjC/
protocol-property-synth.m 4 id _delegate;
  /external/webkit/Tools/Scripts/webkitpy/common/thread/
messagepump.py 45 self._delegate = delegate
50 self._delegate.schedule(self.interval, self._callback)
55 self._delegate.message_available(message)
57 self._delegate.final_message_delivered()
  /external/webkit/Source/WebCore/inspector/front-end/
SourceFrame.js 35 this._delegate = delegate;
128 this._delegate.requestContent(callback);
238 return this._delegate.canEditScriptSource();
250 this._delegate.setScriptSourceIsBeingEdited(true);
314 if (this._delegate.debuggingSupported()) {
621 contextMenu.appendItem(WebInspector.UIString("Continue to Here"), this._delegate.continueToLine.bind(this._delegate, lineNumber));
623 var breakpoint = this._delegate.findBreakpoint(lineNumber);
626 contextMenu.appendItem(WebInspector.UIString("Add Breakpoint"), this._delegate.setBreakpoint.bind(this._delegate, lineNumber, "", true))
    [all...]
TextViewer.js 39 this._delegate = delegate;
74 this._delegate.readOnlyStateChanged(readOnly);
181 this._delegate.startEditing();
187 this._delegate.endEditing(oldRange, newRange);
240 if (!this._delegate.isContentEditable())
293 this._delegate.commitEditing(didCommitEditing.bind(this));
303 this._delegate.cancelEditing();
    [all...]
  /external/webkit/Source/WebKit/mac/WebInspector/
WebNodeHighlight.mm 99 if (_delegate && [_delegate respondsToSelector:@selector(didAttachWebNodeHighlight:)])
100 [_delegate didAttachWebNodeHighlight:self];
105 return _delegate;
115 if (_delegate && [_delegate respondsToSelector:@selector(willDetachWebNodeHighlight:)])
116 [_delegate willDetachWebNodeHighlight:self];
144 _delegate = delegate;
WebNodeHighlight.h 40 id _delegate; member in namespace:NSObject
  /external/webkit/Tools/Scripts/webkitpy/common/net/irc/
ircbot.py 53 self._delegate = delegate
59 self._delegate.irc_password()
61 self._delegate.irc_nickname(),
62 self._delegate.irc_nickname())
78 response = self._delegate.irc_message_received(nick, request[1])
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 37 * as the modified class with _Delegate added as a suffix).
49 loadAndCompareClasses(classes[i], classes[i] + "_Delegate");
61 String targetClassName = className.replace('$', '_') + "_Delegate";
  /external/chromium/net/tools/testserver/
xmppserver.py 124 self._delegate = delegate
150 self._delegate.FeedStanza(stanza)
387 self._delegate = delegate
413 self._delegate.OnXmppConnectionClosed(self)
433 self._delegate.OnXmppHandshakeDone(self)
442 self._delegate.ForwardNotification(self, stanza)
  /external/icu4c/i18n/
coll.cpp 606 CollatorFactory* _delegate; member in class:CFactory
612 , _delegate(delegate)
619 const UnicodeString * idlist = _delegate->getSupportedIDs(count, status);
636 delete _delegate;
662 return _delegate->createCollator(validLoc);
676 return _delegate->getDisplayName(loc, locale, result);
numfmt.cpp 768 NumberFormatFactory* _delegate; member in class:NFFactory
774 , _delegate(delegate)
781 delete _delegate;
793 UObject* result = _delegate->createFormat(loc, (UNumberFormatStyle)kind);
813 const UnicodeString * const idlist = _delegate->getSupportedIDs(count, status);
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter2.java 53 * class named <code>&lt;className&gt;_Delegate</code> with static methods matching
77 public static final String DELEGATE_SUFFIX = "_Delegate";
167 * The generated class name is the current class name with "_Delegate" appended to it.
  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 66 private Delegate _delegate; field in class:ServiceInfoImpl
    [all...]
JmDNSImpl.java 104 private volatile Delegate _delegate; field in class:JmDNSImpl
    [all...]

Completed in 586 milliseconds