OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inprogress
(Results
1 - 25
of
53
) 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/chromium_org/chrome/browser/resources/options/
managed_user_import.js
164
* @param {boolean}
inProgress
True to indicate that
168
updateImportInProgress_: function(
inProgress
) {
169
this.inProgress_ =
inProgress
;
170
$('managed-user-import-ok').disabled =
inProgress
;
171
$('managed-user-select-avatar-ok').disabled =
inProgress
;
172
$('managed-user-list').disabled =
inProgress
;
173
$('select-avatar-grid').disabled =
inProgress
;
174
$('managed-user-import-throbber').hidden = !
inProgress
;
manage_profile_overlay.js
678
* @param {boolean}
inProgress
True if the UI should be updated to show that
682
updateCreateInProgress_: function(
inProgress
) {
683
this.createInProgress_ =
inProgress
;
686
$('create-profile-icon-grid').disabled =
inProgress
;
687
$('create-profile-name').disabled =
inProgress
;
688
$('create-shortcut').disabled =
inProgress
;
689
$('create-profile-ok').disabled =
inProgress
;
690
$('import-existing-managed-user-link').disabled =
inProgress
;
692
$('create-profile-throbber').hidden = !
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/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_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
71
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
());
409
if (!save_file->
InProgress
()) {
427
// will delete the underlying file if
InProgress
() is true.
444
if (!save_file->
InProgress
())
491
DCHECK(!save_file->
InProgress
());
525
DCHECK(!save_file->
InProgress
());
download_file.h
66
virtual bool
InProgress
() const = 0;
download_file_impl.h
60
virtual bool
InProgress
() const OVERRIDE;
download_file_impl.cc
184
bool DownloadFileImpl::
InProgress
() const {
download_file_unittest.cc
161
EXPECT_FALSE(download_file_->
InProgress
());
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionBackendSync.cpp
68
if (m_sqliteTransaction && m_sqliteTransaction->
inProgress
())
75
ASSERT(!m_sqliteTransaction || !m_sqliteTransaction->
inProgress
());
168
if (!m_sqliteTransaction->
inProgress
()) {
225
if (m_sqliteTransaction->
inProgress
()) {
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteTransaction.h
47
bool
inProgress
() const { return m_inProgress; }
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardAffordanceHelper.java
182
private void setSwipingInProgress(boolean
inProgress
) {
183
mSwipingInProgress =
inProgress
;
184
if (
inProgress
) {
/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
);
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp
253
ASSERT(m_allowGeolocation !=
InProgress
);
278
if (frame && m_allowGeolocation ==
InProgress
)
595
m_allowGeolocation =
InProgress
;
Geolocation.h
236
InProgress
,
/external/chromium_org/chromeos/dbus/
fake_shill_device_client.h
122
int tdls_busy_count_; // Number of times to return
InProgress
for TDLS.
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
prinit.h
217
PRInt32
inProgress
;
/external/chromium_org/ash/system/chromeos/network/
network_connect.cc
51
const char kErrorInProgress[] = "org.chromium.flimflam.Error.
InProgress
";
186
// If Shill reports an
InProgress
error, don't try to configure the network.
/external/chromium_org/chromeos/network/
network_device_handler_impl.cc
198
// If a Setup operation receives an
InProgress
error, retry.
/external/chromium_org/net/proxy/
proxy_service.h
419
// Set of pending/
inprogress
requests.
Completed in 2078 milliseconds
1
2
3