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

1 2 3

  /frameworks/base/core/java/android/text/style/
SpellCheckSpan.java 42 public void setSpellCheckInProgress(boolean inProgress) {
43 mSpellCheckInProgress = inProgress;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 90 boolean inProgress = false;
94 if (inProgress) {
98 inProgress = false;
101 if (!inProgress) {
114 inProgress = true;
117 if (inProgress) {
  /external/chromium_org/chrome/browser/resources/options/
managed_user_import.js 147 * @param {boolean} inProgress True to indicate that
151 updateImportInProgress_: function(inProgress) {
152 $('managed-user-import-ok').disabled = inProgress;
153 $('managed-user-list').disabled = inProgress;
154 $('select-avatar-grid').disabled = inProgress;
155 $('create-new-user-link').disabled = inProgress;
156 $('managed-user-import-throbber').hidden = !inProgress;
manage_profile_overlay.js 523 * @param {boolean} inProgress True if the UI should be updated to show that
527 updateCreateInProgress_: function(inProgress) {
528 this.createInProgress_ = inProgress;
531 $('create-profile-icon-grid').disabled = inProgress;
532 $('create-profile-name').disabled = inProgress;
533 $('create-shortcut').disabled = inProgress;
534 $('create-profile-ok').disabled = inProgress;
536 $('create-profile-throbber').hidden = !inProgress;
  /external/smack/src/org/xbill/DNS/
ExtendedResolver.java 22 Object [] inprogress; field in class:ExtendedResolver.Resolution
55 inprogress = new Object[resolvers.length];
66 inprogress[n] = resolvers[n].sendAsync(query, this);
94 inprogress[0] = new Object();
102 handleException(inprogress[0], e);
173 for (n = 0; n < inprogress.length; n++)
174 if (inprogress[n] == id)
177 if (n == inprogress.length)
  /external/chromium/chrome/browser/ui/cocoa/
view_resizer.h 25 - (void)setAnimationInProgress:(BOOL)inProgress;
  /external/chromium_org/chrome/browser/ui/cocoa/
view_resizer.h 24 - (void)setAnimationInProgress:(BOOL)inProgress;
  /external/chromium_org/content/browser/download/
mock_download_file.h 42 MOCK_CONST_METHOD0(InProgress, bool());
save_file.cc 72 bool SaveFile::InProgress() const {
save_file.h 36 bool InProgress() const;
save_file_manager.cc 242 DCHECK(save_file->InProgress());
277 // So we can't assert that the file is InProgress() here.
279 // DCHECK(save_file->InProgress());
410 if (!save_file->InProgress()) {
428 // will delete the underlying file if InProgress() is true.
445 if (!save_file->InProgress())
492 DCHECK(!save_file->InProgress());
526 DCHECK(!save_file->InProgress());
download_file.h 66 virtual bool InProgress() const = 0;
download_file_impl.h 62 virtual bool InProgress() const OVERRIDE;
download_file_impl.cc 187 bool DownloadFileImpl::InProgress() const {
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteTransaction.h 47 bool inProgress() const { return m_inProgress; }
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionBackendSync.cpp 68 if (m_sqliteTransaction && m_sqliteTransaction->inProgress())
154 if (!m_sqliteTransaction->inProgress()) {
211 if (m_sqliteTransaction->inProgress()) {
  /packages/apps/Email/tests/src/com/android/email/service/
AttachmentDownloadServiceTests.java 126 assertTrue(req.inProgress);
133 assertFalse(req.inProgress);
140 assertTrue(req.inProgress);
159 assertTrue(req.inProgress);
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 181 boolean inProgress = false;
208 inProgress = orig.inProgress;
363 if (!req.inProgress) {
538 req.inProgress = true;
547 req.inProgress = false;
607 req.inProgress = false;
614 req.inProgress = false;
682 // TODO: How will this get retried? It's still marked as inProgress?
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_container_controller.mm 166 - (void)setAnimationInProgress:(BOOL)inProgress {
168 [resizeDelegate_ setAnimationInProgress:inProgress];
  /external/chromium/chrome/browser/resources/
imageburner.html 308 statusTextDiv.textContent = statuses["inProgress"];
405 downloadStatuses['inProgress'] =
415 burnStatuses['inProgress'] = localStrings.getString('burnStatusInProgress');
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ProfileSyncService.java 440 * @param inProgress True to put sync in configuration mode, false to turn off configuration
443 public void setSetupInProgress(boolean inProgress) {
444 nativeSetSetupInProgress(mNativeProfileSyncServiceAndroid, inProgress);
547 long nativeProfileSyncServiceAndroid, boolean inProgress);
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
AudioTrackLinearLayout.java 310 * @param inProgress true if playback is in progress
312 public void setPlaybackInProgress(boolean inProgress) {
313 mPlaybackInProgress = inProgress;
317 if (inProgress && mAudioTrackActionMode != null) {
OverlayLinearLayout.java 363 * @param inProgress true if playback is in progress
365 public void setPlaybackInProgress(boolean inProgress) {
366 mPlaybackInProgress = inProgress;
370 if (inProgress && mOverlayActionMode != null) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.h 233 InProgress,
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prinit.h 217 PRInt32 inProgress;

Completed in 427 milliseconds

1 2 3