/external/webkit/Source/WebCore/platform/graphics/avfoundation/ |
MediaPlayerPrivateAVFoundationObjC.mm | 103 -(void)seekCompleted:(BOOL)finished; 413 [m_avPlayerItem.get() seekToTime:CMTimeMakeWithSeconds(time, 600) toleranceBefore:kCMTimeZero toleranceAfter:kCMTimeZero completionHandler:^(BOOL finished) { 414 [observer seekCompleted:finished]; 769 - (void)seekCompleted:(BOOL)finished 774 m_callback->scheduleMainThreadNotification(MediaPlayerPrivateAVFoundation::Notification::SeekCompleted, static_cast<bool>(finished));
|
/frameworks/base/cmds/pm/src/com/android/commands/pm/ |
Pm.java | 653 boolean finished; field in class:Pm.PackageInstallObserver 658 finished = true; 804 while (!obs.finished) { 882 boolean finished; field in class:Pm.PackageDeleteObserver 887 finished = true; 922 while (!obs.finished) { 937 boolean finished; field in class:Pm.ClearDataObserver [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_management_browsertest.cc | 211 bool finished() { return finished_; } function in class:NotificationListener 299 ASSERT_TRUE(notification_listener.finished()); 314 ASSERT_TRUE(notification_listener.finished());
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
MediaPlayerPrivatePhonon.cpp | 114 connect(m_mediaObject, SIGNAL(finished()), this, SLOT(finished())); 517 void MediaPlayerPrivatePhonon::finished() function in class:WebCore::MediaPlayerPrivatePhonon
|
/development/testrunner/ |
am_instrument_parser.py | 132 finished" status report.
|
/external/chromium/chrome/browser/download/ |
save_package.h | 82 // Saving page finished successfully. 126 bool finished() const { return finished_; } function in class:SavePackage
|
/external/chromium/chrome/browser/ui/webui/chromeos/ |
imageburner_ui.h | 133 void SetDownloadFinished(bool finished);
|
/external/dbus/dbus/ |
dbus-marshal-recursive.h | 43 dbus_uint32_t finished : 1; /**< marks we're at end iterator for cases member in struct:DBusTypeReader
|
/external/webkit/Source/JavaScriptCore/wtf/qt/ |
ThreadingQt.cpp | 169 QObject::connect(thread, SIGNAL(finished()), ThreadMonitor::instance(), SLOT(threadFinished()));
|
/external/webkit/Source/WebCore/html/parser/ |
HTMLTreeBuilder.h | 83 void finished();
|
/external/webkit/Source/WebCore/storage/ |
IDBTransaction.cpp | 69 bool IDBTransaction::finished() const function in class:WebCore::IDBTransaction
|
/external/webkit/Source/WebCore/inspector/front-end/ |
ResourceTreeModel.js | 278 frameResource.finished = true; 294 resource.finished = true;
|
SourceFile.js | 46 this._resource.addEventListener("finished", this.reload.bind(this)); 121 if (this._resource && this._resource.finished) 233 return this._resource && !this._resource.finished;
|
Resource.js | 276 get finished() 281 set finished(x) 290 this.dispatchEventToListeners("finished"); 739 // to prevent caller blocking until resource is marked as finished. 749 if (this.finished)
|
NetworkManager.js | 319 resource.finished = true;
|
/frameworks/base/core/java/android/widget/ |
Scroller.java | 154 * Returns whether the scroller has finished scrolling. 156 * @return True if the scroller has finished scrolling, false otherwise. 163 * Force the finished field to a particular value. 165 * @param finished The new finished value. 167 public final void forceFinished(boolean finished) { 168 mFinished = finished; 246 * the animation is not yet finished. loc will be altered to provide the
|
OverScroller.java | 130 * Returns whether the scroller has finished scrolling. 132 * @return True if the scroller has finished scrolling, false otherwise. 139 * Force the finished field to a particular value. Contrary to 140 * {@link #abortAnimation()}, forcing the animation to finished 144 * @param finished The new finished value. 146 public final void forceFinished(boolean finished) { 147 mScrollerX.mFinished = mScrollerY.mFinished = finished; 287 * animation is not yet finished. [all...] |
/frameworks/base/libs/utils/ |
BackupHelpers.cpp | [all...] |
/libcore/luni/src/main/java/java/util/zip/ |
ZipInputStream.java | 298 if (inf.finished() || currentEntry == null) { 337 if (read == 0 && inf.finished()) {
|
/external/wpa_supplicant_8/src/eapol_auth/ |
eapol_auth_sm.c | 227 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 0, 284 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 0, 310 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 1, 1126 eapol->cb.finished = cb->finished;
|
/external/webkit/Source/WebCore/platform/network/qt/ |
QNetworkReplyHandler.cpp | 219 connect(m_reply, SIGNAL(finished()), this, SLOT(receiveMetaData())); 284 connect(m_sniffer.get(), SIGNAL(finished()), this, SLOT(receiveSniffedMIMEType())); 312 // If not finished, connect to the slots that will be used from this point on. 314 connect(m_reply, SIGNAL(finished()), this, SLOT(didReceiveFinished())); 326 // Disconnecting will make sure that nothing will happen after emitting the finished signal. 647 // If supported, a synchronous request will be finished at this point, no need to hook up the signals.
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
QtMaemoWebPopup.cpp | 88 connect(result, SIGNAL(finished(int)), this, SLOT(popupClosed()));
|
/external/webkit/Source/WebKit/qt/examples/platformplugin/ |
WebPlugin.cpp | 85 connect(result, SIGNAL(finished(int)), this, SLOT(popupClosed()));
|
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
DeflaterOutputStreamTest.java | 76 while (!(deflate.finished())) {
|
/frameworks/base/core/java/android/app/ |
ApplicationThreadNative.java | 75 boolean finished = data.readInt() != 0; 78 schedulePauseActivity(b, finished, userLeaving, configChanges); 564 public final void schedulePauseActivity(IBinder token, boolean finished, 569 data.writeInt(finished ? 1 : 0); [all...] |