HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 951 - 975 of 4084) sorted by null

<<31323334353637383940>>

  /frameworks/base/core/java/android/net/
DhcpStateMachine.java 93 * success/failure */
350 boolean success = false;
355 success = NetworkUtils.runDhcp(mInterfaceName, dhcpInfoInternal);
359 success = NetworkUtils.runDhcpRenew(mInterfaceName, dhcpInfoInternal);
363 if (success) {
394 return success;
  /external/chromium/chrome/browser/ssl/
ssl_browser_tests.cc 897 bool success = false; local
974 bool success = false; local
1015 bool success = false; local
    [all...]
  /external/chromium/googleurl/src/
url_canon_unittest.cc 220 bool success = true; local
222 success &= AppendUTF8EscapedChar(utf_cases[i].input8, &ch, input_len,
226 EXPECT_EQ(utf_cases[i].expected_success, success);
235 bool success = true; local
237 success &= AppendUTF8EscapedChar(input_str.c_str(), &ch, input_len,
241 EXPECT_EQ(utf_cases[i].expected_success, success);
341 bool success = url_canon::CanonicalizeScheme(scheme_cases[i].input, local
345 EXPECT_EQ(scheme_cases[i].expected_success, success);
356 success = url_canon::CanonicalizeScheme(wide_input.c_str(), in_comp,
360 EXPECT_EQ(scheme_cases[i].expected_success, success);
456 bool success = url_canon::CanonicalizeHost(host_cases[i].input8, in_comp, local
477 bool success = url_canon::CanonicalizeHost(input16.c_str(), in_comp, local
857 bool success = url_canon::CanonicalizeUserInfo(user_info_cases[i].input, local
921 bool success = url_canon::CanonicalizePort(port_cases[i].input, in_comp, local
1026 bool success = url_canon::CanonicalizePath(path_cases[i].input8, in_comp, local
1044 bool success = url_canon::CanonicalizePath(input16.c_str(), in_comp, local
1063 bool success = url_canon::CanonicalizePath(path_with_null, in_comp, local
1284 bool success = url_canon::CanonicalizeStandardURL( local
1571 bool success = url_canon::CanonicalizeFileURL(cases[i].input, url_len, local
1611 bool success = url_canon::CanonicalizePathURL(path_cases[i].input, url_len, local
1669 bool success = url_canon::CanonicalizeMailtoURL(cases[i].input, url_len, local
    [all...]
url_util.cc 183 bool success;
187 success = url_canon::CanonicalizeFileURL(spec, spec_len, parsed_input,
194 success = url_canon::CanonicalizeStandardURL(spec, spec_len, parsed_input,
201 success = url_canon::CanonicalizeMailtoURL(spec, spec_len, parsed_input,
207 success = url_canon::CanonicalizePathURL(spec, spec_len, parsed_input,
210 return success;
  /external/skia/src/animator/
SkMemberInfo.cpp 195 bool success = true; local
252 success = engine.evaluateScript(&script, &scriptValue);
253 if (success == false) {
258 SkASSERT(success);
282 success = engine.convertTo(SkType_String, &scriptValue);
286 success = engine.convertTo(SkType_Float, &scriptValue);
289 success = engine.convertTo(SkType_Int, &scriptValue);
292 success = engine.convertTo(arrayType(), &scriptValue);
302 if (success == false)
  /external/v8/test/mjsunit/
array-tostring.js 31 var success = "[test success]"; variable
36 return success;
50 assertEquals(success, a2.toString());
81 assertEquals(success, o2.toString());
88 assertEquals(success, o3.toString());
115 assertEquals(success, (42).arrayToString());
  /external/chromium/webkit/glue/media/
buffered_data_source.cc 461 bool success = error == net::OK; local
468 if (success) {
512 if (!success) {
532 bool success = error == net::OK && instance_size != kPositionNotSpecified; local
534 if (success) {
561 if (!success) {
  /external/guava/guava/src/com/google/common/util/concurrent/
Monitor.java 363 boolean success = false;
367 success = true;
369 if (!success) {
384 boolean success = false;
388 success = true;
390 if (!success) {
  /external/icu4c/layout/
GlyphIterator.cpp 110 LEGlyphID *GlyphIterator::insertGlyphs(le_int32 count, LEErrorCode& success)
112 return glyphStorage.insertGlyphs(position, count, success);
409 LEErrorCode success = LE_NO_ERROR; local
410 FeatureMask fm = glyphStorage.getAuxData(position, success);
421 LEErrorCode success = LE_NO_ERROR; local
423 glyphGroup = (glyphStorage.getAuxData(position, success) & LE_GLYPH_GROUP_MASK);
  /external/protobuf/src/google/protobuf/
descriptor_database.cc 203 bool success = false; local
208 success = true;
211 return success;
356 // Success!
523 bool success = false; local
529 success = true;
537 return success;
  /frameworks/av/media/libstagefright/
AudioPlayer.cpp 111 bool success = format->findCString(kKeyMIMEType, &mime); local
112 CHECK(success);
115 success = format->findInt32(kKeySampleRate, &mSampleRate);
116 CHECK(success);
119 success = format->findInt32(kKeyChannelCount, &numChannels);
120 CHECK(success);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 500 boolean success = false;
504 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
506 assertTrue("throw_NOT_SUPPORTED_ERR", success);
517 boolean success = false;
521 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
523 assertTrue("throw_NOT_SUPPORTED_ERR", success);
  /external/icu4c/i18n/
calendar.cpp 651 Calendar::Calendar(UErrorCode& success)
665 success = U_MEMORY_ALLOCATION_ERROR;
667 setWeekData(Locale::getDefault(), NULL, success); local
672 Calendar::Calendar(TimeZone* zone, const Locale& aLocale, UErrorCode& success)
688 success = U_ILLEGAL_ARGUMENT_ERROR;
695 setWeekData(aLocale, NULL, success);
700 Calendar::Calendar(const TimeZone& zone, const Locale& aLocale, UErrorCode& success)
714 success = U_MEMORY_ALLOCATION_ERROR;
716 setWeekData(aLocale, NULL, success);
771 Calendar::createInstance(UErrorCode& success)
898 c->setTimeInMillis(getNow(), success); \/\/ let the new calendar have the current time. local
    [all...]
  /external/chromium/base/
process_util_posix.cc 52 bool* success) {
106 if (success)
107 *success = (ret_pid != -1);
678 bool success = (sigaction(SIGPIPE, &action, NULL) == 0); local
681 success &= (signal(SIGILL, handler) != SIG_ERR);
682 success &= (signal(SIGABRT, handler) != SIG_ERR);
683 success &= (signal(SIGFPE, handler) != SIG_ERR);
684 success &= (signal(SIGBUS, handler) != SIG_ERR);
685 success &= (signal(SIGSEGV, handler) != SIG_ERR);
686 success &= (signal(SIGSYS, handler) != SIG_ERR)
980 bool success = WaitForExitCode(pid, &exit_code); local
    [all...]
  /external/chromium/chrome/browser/ui/views/
shell_dialogs_win.cc 348 // On success, returns true and 'final_name' contains the full path of the file
696 bool success = false; local
699 success = RunSelectFolderDialog(params.title,
704 success = SaveFileAsWithFilter(params.run_state.owner,
707 if (success)
711 success = RunOpenFileDialog(params.title, filter,
726 if (success) {
877 bool success = !!GetOpenFileName(&ofn); local
909 bool success = !!GetOpenFileName(&ofn); local
    [all...]
  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_CameraTests.cpp 64 bool success; local
162 bool success = false; local
  /cts/tests/tests/holo/src/android/holo/cts/
ThemeTestActivity.java 136 boolean success = data.getBooleanExtra(LayoutTestActivity.EXTRA_SUCCESS, false);
137 if (!success) {
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 95 boolean success = compile.call();
96 if(!success) {
  /dalvik/vm/mterp/armv5te/
OP_SGET.S 41 cmp r0, #0 @ success?
OP_SPUT.S 42 cmp r0, #0 @ success?
  /dalvik/vm/mterp/armv6t2/
OP_IPUT.S 25 cmp r0, #0 @ success?
  /dalvik/vm/mterp/mips/
OP_IPUT.S 25 # success?
OP_SGET.S 32 # success?
OP_SGET_JUMBO.S 36 # success?
OP_SGET_WIDE.S 32 # success?

Completed in 767 milliseconds

<<31323334353637383940>>