HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 151 - 175 of 2937) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/opt/telephony/src/java/android/telephony/
SmsManager.java 58 * The result code will be <code>Activity.RESULT_OK</code> for success,
127 * The result code will be <code>Activity.RESULT_OK</code> for success,
191 * The result code will be <code>Activity.RESULT_OK</code> for success,
253 * @return true for success
259 boolean success = false;
267 success = iccISms.copyMessageToIccEf(ActivityThread.currentPackageName(),
274 return success;
283 * @return true for success
289 boolean success = false;
296 success = iccISms.updateMessageOnIccEf(ActivityThread.currentPackageName()
    [all...]
  /external/chromium_org/chrome/test/chromedriver/net/
sync_websocket_impl.cc 54 bool success = false; local
59 this, url, &success, &event));
61 return success;
65 bool success = false; local
70 this, message, &success, &event));
72 return success;
115 bool* success,
124 this, success, event));
128 bool* success,
131 *success = (error == net::OK)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMImplementationCreateDocument.java 97 boolean success = false;
101 success = (ex.code == DOMException.NAMESPACE_ERR);
103 assertTrue("domimplementationcreatedocument04", success);
118 boolean success = false;
122 success = (ex.code == DOMException.NAMESPACE_ERR);
124 assertTrue("domimplementationcreatedocument05", success);
138 boolean success = false;
142 success = (ex.code == DOMException.NAMESPACE_ERR);
144 assertTrue("domimplementationcreatedocument07", success);
DocumentCreateElementNS.java 88 boolean success = false;
92 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
94 assertTrue("documentcreateelementNS02", success);
106 boolean success = false;
110 success = (ex.code == DOMException.NAMESPACE_ERR);
112 assertTrue("documentcreateelementNS05", success);
130 boolean success = false;
134 success = (ex.code == DOMException.NAMESPACE_ERR);
136 assertTrue("documentcreateelementNS06", success);
  /external/chromium_org/chrome/browser/
pepper_flash_settings_manager.h 35 bool success) {}
38 bool success,
43 bool success) {}
46 bool success) {}
52 virtual void OnClearSiteDataCompleted(uint32 request_id, bool success) {}
  /external/chromium_org/chrome/test/base/
test_launcher_utils.cc 79 bool success = true; local
83 success = PathService::Override(chrome::DIR_USER_DATA, user_data_dir);
93 success = success && env->SetVar("XDG_CACHE_HOME", user_data_dir.value());
96 return success;
  /external/chromium_org/content/browser/renderer_host/
render_view_host_manager_browsertest.cc 78 bool success = false; local
82 &success));
83 EXPECT_TRUE(success);
97 success = false;
101 &success));
102 EXPECT_TRUE(success);
111 success = false;
115 &success));
116 EXPECT_FALSE(success);
146 bool success = false local
199 bool success = false; local
252 bool success = false; local
299 bool success = false; local
368 bool success = false; local
448 bool success = false; local
553 bool success = false; local
690 bool success = false; local
757 bool success = false; local
838 bool success = false; local
872 bool success = false; local
926 bool success = false; local
1065 bool success = false; local
1261 bool success = false; local
    [all...]
  /external/chromium_org/v8/test/webkit/
duplicate-param-crash.js 34 shouldBe('test1("success")()', '"success"');
42 shouldBe('test2("success", "success", "success", "success", "success", "success", "success")()', '"success"');
    [all...]
  /external/icu4c/layout/
LookupProcessor.h 37 le_bool rightToLeft, const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, const LEFontInstance *fontInstance, LEErrorCode& success) const;
39 le_uint32 applyLookupTable(const LookupTable *lookupTable, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const;
41 le_uint32 applySingleLookup(le_uint16 lookupTableIndex, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const;
44 GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const = 0;
58 LEErrorCode& success);
GXLayoutEngine2.h 44 * @param success - set to an error code if the operation fails
51 GXLayoutEngine2(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, const MorphTableHeader2 *morphTable, le_int32 typoFlags, LEErrorCode &success);
97 * @param success - set to an error code if the operation fails
104 LEGlyphStorage &glyphStorage, LEErrorCode &success);
114 * @param success - set to an error code if the operation fails
119 LEGlyphStorage &glyphStorage, LEErrorCode &success);
  /external/valgrind/main/helgrind/tests/
annotate_hbefore.c 26 /* return 1 if success, 0 if failure */
29 UWord old, success; local
48 : /*out*/ "=b"(success)
52 assert(success == 0 || success == 1);
53 return success;
59 /* return 1 if success, 0 if failure */
62 UWord old, success; local
81 : /*out*/ "=b"(success)
85 assert(success == 0 || success == 1)
143 UWord old, success; local
195 UWord old, success; local
    [all...]
  /libcore/support/src/test/java/tests/util/
FieldTestFileGenerator.java 49 boolean success = true;
64 success = false;
79 success = false;
94 success = false;
100 if (success) {
101 System.out.println("Success!");
  /external/chromium/chrome/browser/chromeos/login/
mock_url_fetchers.cc 21 bool success,
47 GotCanceledFetcher::GotCanceledFetcher(bool success,
69 SuccessFetcher::SuccessFetcher(bool success,
81 net::URLRequestStatus success(net::URLRequestStatus::SUCCESS, 0);
84 success,
90 FailFetcher::FailFetcher(bool success,
121 CaptchaFetcher::CaptchaFetcher(bool success,
148 net::URLRequestStatus success(net::URLRequestStatus::SUCCESS, 0)
    [all...]
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher_unittest.h 22 MockFetcher(bool success,
51 void set_success(bool success) {
52 success_ = success;
  /external/chromium_org/chrome/browser/automation/
testing_automation_provider_views.cc 14 bool* success,
16 *success = false;
25 *success = true;
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_handler_api.h 97 // |success| Whether the path was selected.
100 void OnFilePathSelected(bool success, const base::FilePath& full_path);
115 // |success| Whether the file system has been opened successfully.
118 void OnFileSystemOpened(bool success,
130 // * boolean 'success', which will be equal to |success|.
131 // * object 'entry', which will be set only when |success| if true and
139 // if |success| if false.
140 void Respond(bool success);
  /external/chromium_org/chrome/browser/extensions/api/terminal/
terminal_private_api.h 64 void RespondOnUIThread(bool success);
81 void RespondOnUIThread(bool success);
97 void RespondOnUIThread(bool success);
  /external/chromium_org/printing/
image.cc 25 bool success = false; local
27 success = LoadPng(data);
29 success = LoadMetafile(data);
33 if (!success) {
64 bool success = gfx::PNGCodec::Encode(&*data_.begin(), local
71 DCHECK(success && compressed.size());
72 if (success) {
77 success = (write_bytes == static_cast<int>(compressed.size()));
78 DCHECK(success);
80 return success;
143 bool success = gfx::PNGCodec::Decode( local
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_audio_player.cc 57 bool success = audio_.StartPlayback(); local
58 if (!success)
60 return success;
  /external/chromium_org/sandbox/win/src/
win2k_threadpool.cc 34 bool success = true; local
40 success &= (::UnregisterWaitEx(wait, INVALID_HANDLE_VALUE) != 0);
45 return success;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdataindexsizeerrdeletedataoffsetgreater.java 80 boolean success = false;
84 success = (ex.code == DOMException.INDEX_SIZE_ERR);
86 assertTrue("throw_INDEX_SIZE_ERR", success);
characterdataindexsizeerrinsertdataoffsetgreater.java 79 boolean success = false;
83 success = (ex.code == DOMException.INDEX_SIZE_ERR);
85 assertTrue("throw_INDEX_SIZE_ERR", success);
characterdataindexsizeerrreplacedataoffsetgreater.java 80 boolean success = false;
84 success = (ex.code == DOMException.INDEX_SIZE_ERR);
86 assertTrue("throw_INDEX_SIZE_ERR", success);
characterdataindexsizeerrsubstringoffsetgreater.java 80 boolean success = false;
84 success = (ex.code == DOMException.INDEX_SIZE_ERR);
86 assertTrue("throw_INDEX_SIZE_ERR", success);
documentinvalidcharacterexceptioncreateattribute.java 74 boolean success = false;
78 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
80 assertTrue("throw_INVALID_CHARACTER_ERR", success);

Completed in 860 milliseconds

1 2 3 4 5 67 8 91011>>