HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 501 - 525 of 4004) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/WebCore/storage/
DatabaseTask.h 101 static PassOwnPtr<DatabaseOpenTask> create(Database* db, bool setVersionInNewDatabase, DatabaseTaskSynchronizer* synchronizer, ExceptionCode& code, bool& success)
103 return adoptPtr(new DatabaseOpenTask(db, setVersionInNewDatabase, synchronizer, code, success));
107 DatabaseOpenTask(Database*, bool setVersionInNewDatabase, DatabaseTaskSynchronizer*, ExceptionCode&, bool& success);
  /frameworks/base/core/tests/coretests/src/android/os/storage/
StorageManagerBaseTest.java 358 boolean success = mSm.mountObb(obbFilePath, key, obbListener);
359 success &= obbFilePath.equals(doWaitForObbStateChange(obbListener));
360 success &= (expectedState == obbListener.state());
363 success &= obbFilePath.equals(obbListener.officialPath());
364 success &= mSm.isObbMounted(obbListener.officialPath());
366 success &= !mSm.isObbMounted(obbListener.officialPath());
369 if (success) {
418 boolean success = true;
425 success &= stateChanged;
426 success &= (OnObbStateChangeListener.UNMOUNTED == obbListener.state())
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 212 static String getFullCFHTML(IDataObject* data, bool& success)
222 success = true;
225 success = false;
371 String getURL(IDataObject* dataObject, DragData::FilenameConversionPolicy filenamePolicy, bool& success, String* title)
375 success = false;
377 success = true;
384 success = true;
391 success = true;
403 success = true;
416 success = true
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 183 // on success. This may fail if the toString() throws an exception.
197 // Extracts an hostname argument from |args|. On success returns true
224 bool success = UTF16ToUTF8(punycode_output.data(), local
227 DCHECK(success);
229 return success;
511 // Returns OK on success, otherwise an error code.
558 bool success; local
565 success = context->js_bindings_->MyIpAddress(&result);
568 if (!success)
580 bool success; local
606 bool success; local
627 bool success; local
651 bool success = SortIpAddressList(ip_address_list, &sorted_ip_address_list); local
    [all...]
  /external/bluetooth/glib/tests/
unicode-normalize.c 9 gboolean success = TRUE; variable
86 success = FALSE;
104 success = FALSE;
209 return !success;
  /external/chromium/base/threading/
platform_thread_posix.cc 62 bool success = false; local
109 success = !pthread_create(thread_handle, &attributes, ThreadFunc, params);
112 if (!success)
114 return success;
  /external/chromium/chrome/browser/automation/
automation_util.h 52 bool* success);
  /external/chromium/chrome/browser/chromeos/login/
cryptohome_op.cc 26 void CryptohomeOp::OnComplete(bool success, int return_code) {
31 success, return_code));
34 void CryptohomeOp::TriggerResolve(bool success, int return_code) {
36 attempt_->RecordCryptohomeStatus(success, return_code);
cryptohome_op.h 45 virtual void OnComplete(bool success, int return_code);
  /external/chromium/chrome/browser/printing/
print_view_manager.h 92 void PrintingDone(bool success);
127 // Indication of success of the print job.
  /external/chromium/chrome/browser/sync/
abstract_profile_sync_service_test.h 63 bool success();
  /external/chromium/chrome/common/
service_process_util_posix.h 63 void SignalReady(base::WaitableEvent* signal, bool* success);
  /external/chromium/third_party/libjingle/source/talk/base/
winfirewall.cc 100 bool success = false; local
118 success = true;
123 success = true;
130 return success;
  /external/chromium/third_party/libjingle/source/talk/xmpp/
saslmechanism.cc 48 SaslMechanism::HandleSaslSuccess(const XmlElement * success) {
  /external/icu4c/i18n/
buddhcal.h 63 * @param success Indicates the status of BuddhistCalendar object construction.
67 BuddhistCalendar(const Locale& aLocale, UErrorCode& success);
cecal.h 35 * @param success Indicates the status of CECalendar object construction.
39 CECalendar(const Locale& aLocale, UErrorCode& success);
coptccal.h 123 * @param success Indicates the status of CopticCalendar object construction.
127 CopticCalendar(const Locale& aLocale, UErrorCode& success);
japancal.h 70 * @param success Indicates the status of JapaneseCalendar object construction.
74 JapaneseCalendar(const Locale& aLocale, UErrorCode& success);
taiwncal.h 60 * @param success Indicates the status of TaiwanCalendar object construction.
64 TaiwanCalendar(const Locale& aLocale, UErrorCode& success);
  /external/mesa3d/src/glsl/
link_functions.cpp 48 this->success = true;
98 this->success = false;
193 bool success; member in class:call_link_visitor
257 return v.success;
  /external/skia/samplecode/
SampleImage.cpp 87 bool success = bm.lockPixels();
89 if (success)
92 success = bm.lockPixels();
94 if (success)
  /external/skia/src/animator/
SkOperandIterpolator.cpp 44 bool success = ~index == SkTSearch<SkMSec>(&fTimes->fTime, index, time, sizeof(SkTimeCode)); local
45 SkASSERT(success);
46 if (success) {
56 return success;
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
callback-exception.js 1 description("Tests that when an exception is thrown in the success callback, the error callback is not invoked. Note that this test throws an exception which is not caught.");
25 throw new Error('Exception in success callback');
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.h 53 const T &success(const T &returnValue) function
  /external/webkit/Source/WebCore/inspector/
InspectorDOMStorageAgent.cpp 99 void InspectorDOMStorageAgent::setDOMStorageItem(ErrorString*, int storageId, const String& key, const String& value, bool* success)
105 *success = !exception;
109 void InspectorDOMStorageAgent::removeDOMStorageItem(ErrorString*, int storageId, const String& key, bool* success)
114 *success = true;

Completed in 528 milliseconds

<<21222324252627282930>>