HomeSort by relevance Sort by last modified time
    Searched full:delegate (Results 26 - 50 of 392) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/WebKit/mac/WebView/
WebUIDelegate.h 160 @discussion The newly created window is hidden, and the window operations delegate on the
162 @param sender The WebView sending the delegate method.
170 @param sender The WebView sending the delegate method.
181 @discussion The newly created window is hidden, and the window operations delegate on the
183 @param sender The WebView sending the delegate method.
191 @param sender The WebView sending the delegate method.
202 @param sender The WebView sending the delegate method.
213 @param The WebView sending the delegate method.
222 @param sender The WebView sending the delegate method.
231 @param sender The WebView sending the delegate method
    [all...]
WebFrameLoadDelegate.h 48 @abstract Notifies the delegate that the provisional load of a frame has started
58 @abstract Notifies the delegate that a server redirect occurred during the provisional load
66 @abstract Notifies the delegate that the provisional load has failed
77 @abstract Notifies the delegate that the load has changed from provisional to committed
92 @abstract Notifies the delegate that the page title for a frame has been received
102 @abstract Notifies the delegate that a page icon image for a frame has been received
111 @abstract Notifies the delegate that the committed load of a frame has completed
122 @abstract Notifies the delegate that the committed load of a frame has failed
132 @abstract Notifies the delegate that the scroll position in a frame has changed
141 @abstract Notifies the delegate that a frame will perform a client-side redirec
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
queueengine_unittest.py 113 def __init__(self, delegate):
114 QueueEngine.__init__(self, "fast-queue", delegate)
125 delegate = LoggingDelegate(self)
126 work_queue = QueueEngine("trivial-queue", delegate)
128 self.assertEquals(delegate._callbacks, LoggingDelegate.expected_callbacks)
133 delegate = ThrowErrorDelegate(self, 3)
134 work_queue = QueueEngine("error-queue", delegate)
141 self.assertEquals(delegate._callbacks, expected_callbacks)
144 delegate = ThrowErrorDelegate(self, QueueEngine.handled_error_code)
145 work_queue = QueueEngine("handled-error-queue", delegate)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/output/
ProxyOutputStream.java 37 * @param proxy the OutputStream to delegate to
45 * Invokes the delegate's <code>write(int)</code> method.
54 * Invokes the delegate's <code>write(byte[])</code> method.
63 * Invokes the delegate's <code>write(byte[])</code> method.
74 * Invokes the delegate's <code>flush()</code> method.
82 * Invokes the delegate's <code>close()</code> method.
ProxyWriter.java 39 * @param proxy the Writer to delegate to
47 * Invokes the delegate's <code>write(int)</code> method.
56 * Invokes the delegate's <code>write(char[])</code> method.
65 * Invokes the delegate's <code>write(char[], int, int)</code> method.
76 * Invokes the delegate's <code>write(String)</code> method.
85 * Invokes the delegate's <code>write(String)</code> method.
96 * Invokes the delegate's <code>flush()</code> method.
104 * Invokes the delegate's <code>close()</code> method.
  /external/guava/src/com/google/common/collect/
ConstrainedMap.java 36 final Map<K, V> delegate; field in class:ConstrainedMap
41 Map<K, V> delegate, MapConstraint<? super K, ? super V> constraint) {
42 this.delegate = checkNotNull(delegate);
46 @Override protected Map<K, V> delegate() { method in class:ConstrainedMap
47 return delegate;
51 entrySet = constrainedEntrySet(delegate.entrySet(), constraint);
57 return delegate.put(key, value);
71 @Override protected Entry<K, V> delegate() {
97 @Override protected Collection<Entry<K, V>> delegate() {
    [all...]
AbstractBiMap.java 49 private transient Map<K, V> delegate; field in class:AbstractBiMap
59 delegate = backward;
63 @Override protected Map<K, V> delegate() { method in class:AbstractBiMap
64 return delegate;
68 * Specifies the delegate maps going in each direction. Called by the
72 checkState(delegate == null);
77 delegate = forward;
111 V oldValue = delegate.put(key, value);
121 inverse.delegate.put(newValue, key);
129 V oldValue = delegate.remove(key)
165 @Override protected Set<K> delegate() { method in class:AbstractBiMap.KeySet
225 @Override protected Set<V> delegate() { method in class:ValueSet
    [all...]
ForwardingSet.java 39 @Override protected abstract Set<E> delegate(); method in class:ForwardingSet
42 return object == this || delegate().equals(object);
46 return delegate().hashCode();
ForwardingObject.java 26 * The {@link #delegate()} method must be overridden to return the instance
45 * <p>The {@code toString} method is forwarded to the delegate. Although this
59 * Returns the backing delegate instance that methods are forwarded to.
62 * ForwardingSet#delegate}. Concrete subclasses override this method to supply
65 protected abstract Object delegate(); method in class:ForwardingObject
68 * Returns the string representation generated by the delegate's
72 return delegate().toString();
Multimaps.java 436 * @param delegate the multimap for which an unmodifiable view is to be
441 Multimap<K, V> delegate) {
442 return new UnmodifiableMultimap<K, V>(delegate);
447 final Multimap<K, V> delegate; field in class:Multimaps.UnmodifiableMultimap
454 UnmodifiableMultimap(final Multimap<K, V> delegate) {
455 this.delegate = delegate;
458 @Override protected Multimap<K, V> delegate() { method in class:Multimaps.UnmodifiableMultimap
459 return delegate;
470 = Collections.unmodifiableMap(delegate.asMap())
578 final Collection<Collection<V>> delegate; field in class:Multimaps.UnmodifiableAsMapValues
582 @Override protected Collection<Collection<V>> delegate() { method in class:Multimaps.UnmodifiableAsMapValues
    [all...]
Multisets.java 65 final Multiset<? extends E> delegate; field in class:Multisets.UnmodifiableMultiset
67 UnmodifiableMultiset(Multiset<? extends E> delegate) {
68 this.delegate = delegate;
72 @Override protected Multiset<E> delegate() { method in class:Multisets.UnmodifiableMultiset
74 return (Multiset) delegate;
82 ? elementSet = Collections.<E>unmodifiableSet(delegate.elementSet())
94 ? entrySet = (Set) Collections.unmodifiableSet(delegate.entrySet())
101 return (Iterator) Iterators.unmodifiableIterator(delegate.iterator());
191 final Set<E> delegate;
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EditingDelegate.mm 78 printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", [[range dump] UTF8String]);
85 printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", [[range dump] UTF8String]);
98 printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", [[node dumpPath] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
111 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n", [[text description] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
118 printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", [[range dump] UTF8String]);
139 printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n", [[currentRange dump] UTF8String], [[proposedRange dump] UTF8String], affinitystring[selectionAffinity], boolstring[flag]);
146 printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n", [[style description] UTF8String], [[range dump] UTF8String]);
153 printf("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n", [[currentStyle description] UTF8String], [[proposedStyle description] UTF8String]);
160 printf("EDITING DELEGATE: webViewDidBeginEditing:%s\n", [[notification name] UTF8String]);
166 printf("EDITING DELEGATE: webViewDidChange:%s\n", [[notification name] UTF8String])
    [all...]
  /external/webkit/LayoutTests/storage/
quota-tracking-expected.txt 1 UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{file, , 0} database:QuotaManagementDatabase2
3 The test clears all databases, sets the quota for the origin to 32k, then tries to insert 17k of data into two databases. If things go as planned, the UI Delegate will be informed of the exceeded quota and should increase the quota for this origin. Inserting 17k of data the third time should succeed again.
  /external/webkit/WebKit/mac/Misc/
WebDownloadInternal.h 35 delegate:(id)delegate
39 delegate:(id)delegate
  /external/webkit/WebCore/platform/network/mac/
ResourceHandleMac.mm 169 id delegate;
174 [d->m_proxy.get() setDelegate:ResourceHandle::delegate()];
177 delegate = d->m_proxy.get();
179 delegate = ResourceHandle::delegate();
186 // Credentials for ftp can only be passed in URL, the connection:didReceiveAuthenticationChallenge: delegate call won't be made.
230 connection = [[NSURLConnection alloc] initWithRequest:d->m_request.nsURLRequest() delegate:delegate];
232 connection = [[NSURLConnection alloc] initWithRequest:d->m_request.nsURLRequest() delegate:delegate startImmediately:NO]
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebUIDelegate.idl 193 @discussion The newly created window is hidden, and the window operations delegate on the
195 @param sender The WebView sending the delegate method.
204 @param sender The WebView sending the delegate method.
216 @param sender The WebView sending the delegate method.
228 @param The WebView sending the delegate method.
238 @param sender The WebView sending the delegate method.
248 @param sender The WebView sending the delegate method.
261 @param sender The WebView sending the delegate method.
275 @param sender The WebView sending the delegate method.
284 @param sender The WebView sending the delegate method
    [all...]
  /external/guava/src/com/google/common/util/concurrent/
AbstractExecutionThreadService.java 37 private final Service delegate = new AbstractService() { field in class:AbstractExecutionThreadService
127 return delegate.start();
131 return delegate.startAndWait();
135 return delegate.isRunning();
139 return delegate.state();
143 return delegate.stop();
147 return delegate.stopAndWait();
AbstractIdleService.java 39 private final Service delegate = new AbstractService() { field in class:AbstractIdleService
102 return delegate.start();
106 return delegate.startAndWait();
110 return delegate.isRunning();
114 return delegate.state();
118 return delegate.stop();
122 return delegate.stopAndWait();
  /external/webkit/WebKitTools/DumpRenderTree/win/
EditingDelegate.cpp 132 _tprintf(TEXT("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n"), dump(range));
149 _tprintf(TEXT("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n"), dump(range));
168 _tprintf(TEXT("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n"), dumpPath(node), dump(range), insertactionstring[action]);
192 _tprintf(TEXT("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n"), text ? text : TEXT(""), dump(range), insertactionstring[action]);
209 _tprintf(TEXT("EDITING DELEGATE: shouldDeleteDOMRange:%s\n"), dump(range));
238 _tprintf(TEXT("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n"), dump(currentRange), dump(proposedRange), affinitystring[selectionAffinity], boolstring[stillSelecting]);
256 _tprintf(TEXT("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n"), TEXT("'style description'")/*[[style description] UTF8String]*/, dump(range));
274 _tprintf(TEXT("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n"), TEXT("'currentStyle description'"), TEXT("'proposedStyle description'"));
291 _tprintf(TEXT("EDITING DELEGATE: doPlatformCommand:%s\n"), command ? command : TEXT(""));
303 _tprintf(TEXT("EDITING DELEGATE: webViewDidBeginEditing:%s\n"), name ? name : TEXT(""))
    [all...]
  /external/webkit/WebKit/chromium/src/
DevToolsRPC.h 63 // DevToolsRPC::Delegate* transport;
244 delegate->Method(); \
250 delegate->Method(RpcTypeTrait<T1>::parse(args[0])); \
256 delegate->Method( \
265 delegate->Method( \
275 delegate->Method( \
286 delegate->Method( \
301 // the serialized message into its delegate.
325 explicit Class##Stub(Delegate* delegate) : DevToolsRPC(delegate) { }
    [all...]
  /frameworks/base/core/java/android/view/
TouchDelegate.java 26 * actual view bounds. The view whose touch area is changed is called the delegate view. This
27 * class should be used by an ancestor of the delegate. To use a TouchDelegate, first create an
28 * instance that specifies the bounds that should be mapped to the delegate and the delegate
43 * Bounds in local coordinates of the containing view that should be mapped to the delegate
50 * should be considered to be be within the delegate view.
55 * True if the delegate had been targeted on a down event (intersected mBounds).
87 * the delegate view
100 * Will forward touch events to the delegate view if the event is within the bounds
104 * @return True if the event was forwarded to the delegate, false otherwise
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyReader.java 40 * @param proxy the Reader to delegate to
48 * Invokes the delegate's <code>read()</code> method.
57 * Invokes the delegate's <code>read(char[])</code> method.
67 * Invokes the delegate's <code>read(char[], int, int)</code> method.
79 * Invokes the delegate's <code>skip(long)</code> method.
89 * Invokes the delegate's <code>ready()</code> method.
98 * Invokes the delegate's <code>close()</code> method.
106 * Invokes the delegate's <code>mark(int)</code> method.
115 * Invokes the delegate's <code>reset()</code> method.
123 * Invokes the delegate's <code>markSupported()</code> method.
    [all...]
  /external/emma/core/java12/com/vladium/util/
IProperties.java 141 // first, try to delegate horizontally:
150 // next, try to delegate vertically:
182 for (PropertiesImpl delegate = m_delegate; delegate != null; delegate = delegate.m_delegate)
187 _delegateClone = (PropertiesImpl) delegate.clone ();
198 _delegateClone.m_valueMap = (HashMap) delegate.m_valueMap.clone ();
199 _delegateClone.m_unmappedKeySet = null; // ensure that the last delegate will have this field reset
331 for (PropertiesImpl delegate = m_delegate; delegate != null; delegate = delegate.m_delegate
    [all...]
  /external/easymock/src/org/easymock/internal/
ObjectMethodsFilter.java 34 private final MockInvocationHandler delegate; field in class:ObjectMethodsFilter
38 public ObjectMethodsFilter(Class<?> toMock, MockInvocationHandler delegate,
57 this.delegate = delegate;
72 return delegate.invoke(proxy, method, args);
87 return delegate;
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
DelegateFileFilter.java 40 * Constructs a delegate file filter around an existing FilenameFilter.
53 * Constructs a delegate file filter around an existing FileFilter.
100 String delegate = (fileFilter != null ? fileFilter.toString() : filenameFilter.toString()); local
101 return super.toString() + "(" + delegate + ")";

Completed in 803 milliseconds

12 3 4 5 6 7 8 91011>>