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

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
update_operation_unittest.cc 94 bool success = false; local
98 google_apis::test_util::CreateCopyResultCallback(&success, &cache_entry));
100 ASSERT_TRUE(success);
170 bool success = false; local
174 google_apis::test_util::CreateCopyResultCallback(&success, &cache_entry));
176 ASSERT_TRUE(success);
203 success = false;
206 google_apis::test_util::CreateCopyResultCallback(&success, &cache_entry));
208 ASSERT_TRUE(success);
  /external/chromium_org/chrome_frame/
chrome_launcher.cc 130 bool success = true; local
136 success = false;
141 return success;
196 bool success = false; local
226 success = true;
233 return success;
245 bool success = false; local
260 success = true;
264 return success;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapRemoveNamedItemNS.java 220 boolean success = false;
224 success = (ex.code == DOMException.NOT_FOUND_ERR);
226 assertTrue("throw_NOT_FOUND_ERR", success);
242 boolean success = false;
246 success = (ex.code == DOMException.NOT_FOUND_ERR);
248 assertTrue("throw_NOT_FOUND_ERR", success);
265 boolean success = false;
269 success = (ex.code == DOMException.NOT_FOUND_ERR);
271 assertTrue("throw_NOT_FOUND_ERR", success);
SetAttributeNS.java 90 boolean success = false;
95 success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
97 assertTrue("throw_INVALID_CHARACTER_ERR", success);
151 // boolean success = false;
156 // success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
158 // assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR", success);
219 boolean success = false;
224 success = (ex.code == DOMException.NAMESPACE_ERR);
226 assertTrue("throw_NAMESPACE_ERR", success);
240 boolean success = false
    [all...]
  /external/icu4c/layout/
IndicReordering.cpp 208 LEErrorCode success = LE_NO_ERROR; local
212 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
213 fGlyphStorage.setAuxData(fOutIndex, charFeatures | (fSyllableCount & LE_GLYPH_GROUP_MASK), success);
220 LEErrorCode success = LE_NO_ERROR; local
222 fGlyphStorage.setAuxData( charIndex, charFeatures, success );
228 LEErrorCode success = LE_NO_ERROR; local
229 return fGlyphStorage.getAuxData(charIndex,success);
234 LEErrorCode success = LE_NO_ERROR; local
240 le_int32 saveIndex = fGlyphStorage.getCharIndex(i+inv_count,success);
241 le_uint32 saveAuxData = fGlyphStorage.getAuxData(i+inv_count,success);
267 LEErrorCode success = LE_NO_ERROR; local
293 LEErrorCode success = LE_NO_ERROR; local
309 LEErrorCode success = LE_NO_ERROR; local
993 LEErrorCode success = LE_NO_ERROR; local
1005 LEErrorCode success = LE_NO_ERROR; local
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
libEGL.cpp 134 return egl::success(EGL_TRUE);
157 return egl::success(EGL_TRUE);
181 return egl::success("OpenGL_ES");
183 return egl::success(display->getExtensionString());
185 return egl::success(display->getVendorString());
187 return egl::success("1.4 (ANGLE " VERSION_STRING ")");
225 return egl::success(EGL_TRUE);
262 return egl::success(EGL_TRUE);
289 return egl::success(EGL_TRUE);
364 return egl::success(EGL_NO_SURFACE)
    [all...]
  /external/chromium_org/remoting/host/setup/
native_messaging_host.cc 121 bool success = false; local
123 success = ProcessHello(*message_dict, response_dict.Pass());
125 success = ProcessClearPairedClients(*message_dict, response_dict.Pass());
127 success = ProcessDeletePairedClient(*message_dict, response_dict.Pass());
129 success = ProcessGetHostName(*message_dict, response_dict.Pass());
131 success = ProcessGetPinHash(*message_dict, response_dict.Pass());
133 success = ProcessGenerateKeyPair(*message_dict, response_dict.Pass());
135 success = ProcessUpdateDaemonConfig(*message_dict, response_dict.Pass());
137 success = ProcessGetDaemonConfig(*message_dict, response_dict.Pass());
139 success = ProcessGetPairedClients(*message_dict, response_dict.Pass())
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 124 return object_error::success;
128 return object_error::success;
154 return object_error::success;
161 return object_error::success;
168 return object_error::success;
182 return error_code::success();
193 return object_error::success;
211 ec = object_error::success;
241 ec = object_error::success;
275 ec = object_error::success;
    [all...]
  /art/runtime/
zip_archive_test.cc 41 bool success = zip_entry->ExtractToFile(*file); local
42 ASSERT_TRUE(success);
  /dalvik/vm/mterp/x86/
OP_MONITOR_EXIT.S 23 testl %eax,%eax # success?
  /external/antlr/antlr-3.4/runtime/Python/tests/
t018llstar.py 27 success = (output == testOutput)
28 if not success:
t020fuzzy.py 30 success = (output == testOutput)
31 if not success:
  /external/chromium/chrome/browser/chromeos/login/
cookie_fetcher_unittest.cc 49 net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0);
97 net::URLRequestStatus success; local
101 new MockAuthResponseHandler(iat_url_, success, kHttpSuccess, token_);
124 net::URLRequestStatus success; local
127 new MockAuthResponseHandler(iat_url_, success, 403, std::string());
130 new MockAuthResponseHandler(ta_url_, success, 0, std::string());
146 net::URLRequestStatus success; local
150 success,
154 new MockAuthResponseHandler(ta_url_, success, 403, std::string());
  /external/chromium/chrome/browser/extensions/
extension_function.cc 63 void AsyncExtensionFunction::SendResponse(bool success) {
69 dispatcher()->SendResponse(this, success);
  /external/chromium/chrome/browser/
gpu_process_host_ui_shim.cc 73 bool success = BrowserThread::PostTask( local
79 return success;
85 bool success = gpu_channel_manager->OnMessageReceived(*msg); local
90 DCHECK(success);
158 bool success; local
161 success = BrowserThread::PostTask(
168 success = BrowserThread::PostTask(
174 return success;
plugin_download_helper.h 31 bool success) {}
53 void DownloadCompletedHelper(bool success);
  /external/chromium/chrome/browser/ui/app_modal_dialogs/
js_modal_dialog.h 30 bool success,
97 void NotifyDelegate(bool success, const std::wstring& prompt_text,
  /external/chromium/net/data/proxy_resolver_v8_unittest/
ends_with_comment.js 2 return "PROXY success:80";
  /external/chromium/third_party/libjingle/source/talk/base/
proxydetect.cc 556 bool success = false; local
561 success = true;
597 return success;
615 BOOL success = FALSE; local
619 success = pWHGPFU(hWinHttp, url, options, info);
626 success = pWHGPFU(hWinHttp, url, options, info);
629 return success;
651 bool success = false; local
657 success = (NULL != strstr(value, L"firefox.exe"));
660 return success;
676 bool success = false; local
715 bool success = true; local
922 bool success = false; local
947 bool success = GetWinHttpProxySettings(url, proxy); local
    [all...]
  /external/chromium-libpac/test/js-unittest/
ends_with_comment.js 2 return "PROXY success:80";
  /external/chromium_org/base/time/
time_win.cc 223 bool success = true; local
227 success = TzSpecificLocalTimeToSystemTime(NULL, &st, &utc_st) &&
230 success = !!SystemTimeToFileTime(&st, &ft);
233 if (!success) {
252 bool success = true; local
261 success = FileTimeToSystemTime(&utc_ft, &utc_st) &&
264 success = !!FileTimeToSystemTime(&utc_ft, &st);
267 if (!success) {
  /external/chromium_org/chrome/browser/chromeos/login/
login_performer.h 47 virtual void OnOnlineChecked(const std::string& email, bool success) = 0;
111 virtual void OnChecked(const std::string& username, bool success) OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/system_info/
system_info_provider.cc 42 void SystemInfoProvider::OnQueryCompleted(bool success) {
47 callback.Run(success);
  /external/chromium_org/chrome/browser/
icon_loader_linux.cc 56 bool success = gfx::PNGCodec::Decode( local
60 if (success && !bitmap.empty()) {
  /external/chromium_org/chrome/browser/metrics/
time_ticks_experiment_win.cc 105 bool success = min_delta_ns <= 10000; local
106 if (success) {

Completed in 478 milliseconds

<<21222324252627282930>>