/system/core/libsuspend/include/suspend/ |
autosuspend.h | 33 * Returns 0 on success, -1 if autosuspend was not enabled. 43 * Returns 0 on success, -1 if autosuspend was not disabled. 51 * success is true if the suspend was sucessful and false if the suspend 54 void set_wakeup_callback(void (*func)(bool success));
|
/external/autotest/server/site_tests/network_WiFi_ChaosLongConnect/ |
network_WiFi_ChaosLongConnect.py | 46 success = False 52 success = assoc_result.success 53 if not success: 64 if not success: 73 ('success' if success else 'fail'))
|
/external/icu/icu4c/source/layout/ |
MultipleSubstSubtables.cpp | 17 le_uint32 MultipleSubstitutionSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, LEErrorCode& success, const LEGlyphFilter *filter) const 19 if (LE_FAILURE(success)) { 36 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success); 39 sequenceTableOffsetArrayRef(base, success, sequenceTableOffsetArray, seqCount); 41 if (LE_FAILURE(success)) { 74 LEGlyphID *newGlyphs = glyphIterator->insertGlyphs(glyphCount, success); 75 if (LE_FAILURE(success)) {
|
ContextualSubstSubtables.cpp | 31 LEErrorCode& success) 33 if (LE_FAILURE(success)) { 39 for (le_int16 subst = 0; subst < substCount && LE_SUCCESS(success); subst += 1) { 46 lookupProcessor->applySingleLookup(lookupListIndex, &tempIterator, fontInstance, success); 152 LEErrorCode& success) const 154 if (LE_FAILURE(success)) { 168 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 174 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 180 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 191 LEErrorCode& success) cons [all...] |
ContextualSubstSubtables.h | 52 LEErrorCode& success); 57 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const; 65 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const; 94 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const; 130 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const; 136 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const; 144 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const; 179 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const; 221 le_uint32 process(const LookupProcessor *lookupProcessor, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const;
|
/hardware/bsp/intel/peripheral/libupm/src/stepmotor/ |
stepmotor.cxx | 37 mraa::Result error = mraa::SUCCESS; 44 if (error != mraa::SUCCESS) { 76 mraa::Result error = mraa::SUCCESS; 90 mraa::Result error = mraa::SUCCESS; 93 if (error != mraa::SUCCESS) { 102 mraa::Result error = mraa::SUCCESS; 105 if (error != mraa::SUCCESS) {
|
/external/llvm/test/CodeGen/X86/ |
cmpxchg-i1.ll | 10 %success = extractvalue { i32, i1 } %pair, 1 11 ret i1 %success 21 %success = extractvalue { i64, i1 } %pair, 1 22 br i1 %success, label %true, label %false 40 %success = extractvalue { i32, i1 } %pair, 1 41 %mask = sext i1 %success to i64 52 %success = extractvalue { i32, i1 } %pair, 1 53 %mask = zext i1 %success to i32 79 %success = extractvalue { i32, i1 } %pair, 1 80 br i1 %success, label %done, label %loo [all...] |
cmpxchg-i128-i1.ll | 10 %success = extractvalue { i128, i1 } %pair, 1 11 ret i1 %success 21 %success = extractvalue { i128, i1 } %pair, 1 22 br i1 %success, label %true, label %false 41 %success = icmp sge i128 %oldval, %desired 42 ret i1 %success 52 %success = extractvalue { i128, i1 } %pair, 1 53 %mask = zext i1 %success to i128 74 %success = extractvalue { i128, i1 } %pair, 1 76 br i1 %success, label %done, label %loo [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
domimplementationhasfeature01.java | 74 boolean success; 87 success = domImpl.hasFeature(featureXML, version); 88 assertTrue("domimplementationhasfeature01_XML_1", success); 89 success = domImpl.hasFeature(featureXML, version1); 90 assertTrue("domimplementationhasfeature01_XML_2", success); 94 success = domImpl.hasFeature(featureCore, version); 95 assertTrue("domimplementationhasfeature01_Core_1", success); 96 success = domImpl.hasFeature(featureCore, version1); 97 success = domImpl.hasFeature(featureCore, version2); 98 assertTrue("domimplementationhasfeature01_Core_3", success); [all...] |
nodeissupported01.java | 74 boolean success; 87 success = element.isSupported(featureXML, version); 88 assertTrue("nodeissupported01_XML1", success); 89 success = element.isSupported(featureXML, version1); 90 assertTrue("nodeissupported01_XML2", success); 94 success = element.isSupported(featureCore, version); 95 assertTrue("nodeissupported01_Core1", success); 96 success = element.isSupported(featureCore, version1); 97 success = element.isSupported(featureCore, version2); 98 assertTrue("nodeissupported01_Core3", success); [all...] |
nodeissupported02.java | 74 boolean success; 87 success = attribute.isSupported(featureXML, version); 88 assertTrue("nodeissupported02_XML1", success); 89 success = attribute.isSupported(featureXML, version1); 90 assertTrue("nodeissupported02_XML2", success); 94 success = attribute.isSupported(featureCore, version); 95 assertTrue("nodeissupported02_Core1", success); 96 success = attribute.isSupported(featureCore, version1); 97 success = attribute.isSupported(featureCore, version2); 98 assertTrue("nodeissupported02_Core3", success); [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
TestCaseOutputResult.java | 40 private boolean success ; field in class:TestCaseOutputResult 43 this.success = result; 52 return success ? OK : FAIL; 56 this.success = value; 60 success = Boolean.parseBoolean(script);
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
app-linux.c | 113 EGLBoolean success; local 126 success = eglInitialize(sEglDisplay, &majorVersion, &minorVersion); 127 if (success != EGL_FALSE) 128 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs); 129 if (success != EGL_FALSE) 130 success = eglChooseConfig(sEglDisplay, configAttribs, 132 if (success != EGL_FALSE) 136 success = EGL_FALSE; 138 if (success != EGL_FALSE) 168 if (success != EGL_FALSE [all...] |
app-win32.c | 99 EGLBoolean success; local 120 success = eglInitialize(sEglDisplay, &majorVersion, &minorVersion); 121 if (success != EGL_FALSE) 122 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs); 123 if (success != EGL_FALSE) 124 success = eglChooseConfig(sEglDisplay, configAttribs, 126 if (success != EGL_FALSE) 131 success = EGL_FALSE; 133 if (success != EGL_FALSE) 137 success = EGL_FALSE [all...] |
/hardware/bsp/intel/peripheral/libupm/src/mma7455/ |
mma7455.cxx | 48 if (error != mraa::SUCCESS) { 57 if (error != mraa::SUCCESS) { 63 if (mraa::SUCCESS != calibrate ()) { 72 mraa::Result error = mraa::SUCCESS; 80 if (mraa::SUCCESS != error) { 89 if (error != mraa::SUCCESS) { 106 } while ( !(data & MMA7455_DRDY) && nBytes == mraa::SUCCESS); 108 if (nBytes == mraa::SUCCESS) { 110 return mraa::SUCCESS; 136 return mraa::SUCCESS; [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementSetAttributeNS.java | 138 boolean success = false; 143 success = (ex.code == DOMException.INVALID_CHARACTER_ERR); 145 assertTrue("elementsetattributens04", success); 159 boolean success = false; 163 success = (ex.code == DOMException.NAMESPACE_ERR); 165 assertTrue("elementsetattributens05", success); 176 boolean success = false; 181 success = (ex.code == DOMException.NAMESPACE_ERR); 183 assertTrue("elementsetattributens08_Err1", success); 187 boolean success = false [all...] |
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);
|
CreateDocument.java | 94 boolean success = false; 98 success = (ex.code == DOMException.NAMESPACE_ERR); 100 assertTrue("throw_NAMESPACE_ERR", success); 115 boolean success = false; 119 success = (ex.code == DOMException.NAMESPACE_ERR); 121 assertTrue("throw_NAMESPACE_ERR", success); 136 // boolean success = false; 140 // success = (ex.code == DOMException.WRONG_DOCUMENT_ERR); 142 // assertTrue("throw_WRONG_DOCUMENT_ERR", success); 158 // boolean success = false [all...] |
/art/runtime/interpreter/ |
interpreter_goto_table_impl.cc | 588 bool success = local 591 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3); 596 bool success = local 599 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3); 608 bool success = FillArrayData(obj, payload); local 609 if (transaction_active && success) { 612 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, 3); 1289 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local 1296 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimByte, do_access_check>( local 1303 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimChar, do_access_check>( local 1310 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimShort, do_access_check>( local 1317 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimInt, do_access_check>( local 1324 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimLong, do_access_check>( local 1331 bool success = DoFieldGet<InstanceObjectRead, Primitive::kPrimNot, do_access_check>( local 1338 bool success = DoIGetQuick<Primitive::kPrimInt>(shadow_frame, inst, inst_data); local 1344 bool success = DoIGetQuick<Primitive::kPrimBoolean>(shadow_frame, inst, inst_data); local 1350 bool success = DoIGetQuick<Primitive::kPrimByte>(shadow_frame, inst, inst_data); local 1356 bool success = DoIGetQuick<Primitive::kPrimChar>(shadow_frame, inst, inst_data); local 1362 bool success = DoIGetQuick<Primitive::kPrimShort>(shadow_frame, inst, inst_data); local 1368 bool success = DoIGetQuick<Primitive::kPrimLong>(shadow_frame, inst, inst_data); local 1374 bool success = DoIGetQuick<Primitive::kPrimNot>(shadow_frame, inst, inst_data); local 1380 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local 1387 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimByte, do_access_check>( local 1394 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimChar, do_access_check>( local 1401 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimShort, do_access_check>( local 1408 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimInt, do_access_check>( local 1415 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimLong, do_access_check>( local 1422 bool success = DoFieldGet<StaticObjectRead, Primitive::kPrimNot, do_access_check>( local 1429 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local 1436 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimByte, do_access_check, local 1443 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimChar, do_access_check, local 1450 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimShort, do_access_check, local 1457 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimInt, do_access_check, local 1464 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimLong, do_access_check, local 1471 bool success = DoFieldPut<InstanceObjectWrite, Primitive::kPrimNot, do_access_check, local 1478 bool success = DoIPutQuick<Primitive::kPrimInt, transaction_active>( local 1485 bool success = DoIPutQuick<Primitive::kPrimBoolean, transaction_active>( local 1492 bool success = DoIPutQuick<Primitive::kPrimByte, transaction_active>( local 1499 bool success = DoIPutQuick<Primitive::kPrimChar, transaction_active>( local 1506 bool success = DoIPutQuick<Primitive::kPrimShort, transaction_active>( local 1513 bool success = DoIPutQuick<Primitive::kPrimLong, transaction_active>( local 1520 bool success = DoIPutQuick<Primitive::kPrimNot, transaction_active>( local 1527 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local 1534 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimByte, do_access_check, local 1541 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimChar, do_access_check, local 1548 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimShort, do_access_check, local 1555 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimInt, do_access_check, local 1562 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimLong, do_access_check, local 1569 bool success = DoFieldPut<StaticObjectWrite, Primitive::kPrimNot, do_access_check, local 1576 bool success = DoInvoke<kVirtual, false, do_access_check>( local 1584 bool success = DoInvoke<kVirtual, true, do_access_check>( local 1592 bool success = DoInvoke<kSuper, false, do_access_check>( local 1600 bool success = DoInvoke<kSuper, true, do_access_check>( local 1608 bool success = DoInvoke<kDirect, false, do_access_check>( local 1616 bool success = DoInvoke<kDirect, true, do_access_check>( local 1624 bool success = DoInvoke<kInterface, false, do_access_check>( local 1632 bool success = DoInvoke<kInterface, true, do_access_check>( local 1640 bool success = DoInvoke<kStatic, false, do_access_check>( local 1648 bool success = DoInvoke<kStatic, true, do_access_check>( local 1656 bool success = DoInvokeVirtualQuick<false>( local 1664 bool success = DoInvokeVirtualQuick<true>( local 1672 bool success = DoInvokeLambda<do_access_check>(self, shadow_frame, inst, inst_data, local 1835 bool success = DoIntDivide(shadow_frame, inst->VRegA_23x(inst_data), local 1843 bool success = DoIntRemainder(shadow_frame, inst->VRegA_23x(inst_data), local 1914 bool success = DoLongDivide(shadow_frame, inst->VRegA_23x(inst_data), local 1922 bool success = DoLongRemainder(shadow_frame, inst->VRegA_23x(inst_data), local 2070 bool success = DoIntDivide(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local 2078 bool success = DoIntRemainder(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local 2167 bool success = DoLongDivide(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA), local 2175 bool success = DoLongRemainder(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA), local 2347 bool success = DoIntDivide( local 2355 bool success = DoIntRemainder( local 2405 bool success = DoIntDivide(shadow_frame, inst->VRegA_22b(inst_data), local 2412 bool success = DoIntRemainder(shadow_frame, inst->VRegA_22b(inst_data), local 2469 bool success = DoCreateLambda<do_access_check>(self, local 2480 bool success = DoBoxLambda<do_access_check>(self, shadow_frame, inst, inst_data); local 2486 bool success = DoUnboxLambda<do_access_check>(self, shadow_frame, inst, inst_data); local 2496 bool success = DoCaptureVariable<do_access_check>(self, local 2506 bool success = DoLiberateVariable<do_access_check>(self, local [all...] |
interpreter_switch_impl.cc | 532 bool success = local 535 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_3xx); 540 bool success = local 543 POSSIBLY_HANDLE_PENDING_EXCEPTION(!success, Next_3xx); 552 bool success = FillArrayData(obj, payload); local 553 if (!success) { 1190 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local 1197 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimByte, do_access_check>( local 1204 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimChar, do_access_check>( local 1211 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimShort, do_access_check>( local 1218 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimInt, do_access_check>( local 1225 bool success = DoFieldGet<InstancePrimitiveRead, Primitive::kPrimLong, do_access_check>( local 1232 bool success = DoFieldGet<InstanceObjectRead, Primitive::kPrimNot, do_access_check>( local 1239 bool success = DoIGetQuick<Primitive::kPrimInt>(shadow_frame, inst, inst_data); local 1245 bool success = DoIGetQuick<Primitive::kPrimLong>(shadow_frame, inst, inst_data); local 1251 bool success = DoIGetQuick<Primitive::kPrimNot>(shadow_frame, inst, inst_data); local 1257 bool success = DoIGetQuick<Primitive::kPrimBoolean>(shadow_frame, inst, inst_data); local 1263 bool success = DoIGetQuick<Primitive::kPrimByte>(shadow_frame, inst, inst_data); local 1269 bool success = DoIGetQuick<Primitive::kPrimChar>(shadow_frame, inst, inst_data); local 1275 bool success = DoIGetQuick<Primitive::kPrimShort>(shadow_frame, inst, inst_data); local 1281 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimBoolean, do_access_check>( local 1288 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimByte, do_access_check>( local 1295 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimChar, do_access_check>( local 1302 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimShort, do_access_check>( local 1309 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimInt, do_access_check>( local 1316 bool success = DoFieldGet<StaticPrimitiveRead, Primitive::kPrimLong, do_access_check>( local 1323 bool success = DoFieldGet<StaticObjectRead, Primitive::kPrimNot, do_access_check>( local 1330 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local 1337 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimByte, do_access_check, local 1344 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimChar, do_access_check, local 1351 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimShort, do_access_check, local 1358 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimInt, do_access_check, local 1365 bool success = DoFieldPut<InstancePrimitiveWrite, Primitive::kPrimLong, do_access_check, local 1372 bool success = DoFieldPut<InstanceObjectWrite, Primitive::kPrimNot, do_access_check, local 1379 bool success = DoIPutQuick<Primitive::kPrimInt, transaction_active>( local 1386 bool success = DoIPutQuick<Primitive::kPrimBoolean, transaction_active>( local 1393 bool success = DoIPutQuick<Primitive::kPrimByte, transaction_active>( local 1400 bool success = DoIPutQuick<Primitive::kPrimChar, transaction_active>( local 1407 bool success = DoIPutQuick<Primitive::kPrimShort, transaction_active>( local 1414 bool success = DoIPutQuick<Primitive::kPrimLong, transaction_active>( local 1421 bool success = DoIPutQuick<Primitive::kPrimNot, transaction_active>( local 1428 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimBoolean, do_access_check, local 1435 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimByte, do_access_check, local 1442 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimChar, do_access_check, local 1449 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimShort, do_access_check, local 1456 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimInt, do_access_check, local 1463 bool success = DoFieldPut<StaticPrimitiveWrite, Primitive::kPrimLong, do_access_check, local 1470 bool success = DoFieldPut<StaticObjectWrite, Primitive::kPrimNot, do_access_check, local 1477 bool success = DoInvoke<kVirtual, false, do_access_check>( local 1484 bool success = DoInvoke<kVirtual, true, do_access_check>( local 1491 bool success = DoInvoke<kSuper, false, do_access_check>( local 1498 bool success = DoInvoke<kSuper, true, do_access_check>( local 1505 bool success = DoInvoke<kDirect, false, do_access_check>( local 1512 bool success = DoInvoke<kDirect, true, do_access_check>( local 1519 bool success = DoInvoke<kInterface, false, do_access_check>( local 1526 bool success = DoInvoke<kInterface, true, do_access_check>( local 1533 bool success = DoInvoke<kStatic, false, do_access_check>( local 1540 bool success = DoInvoke<kStatic, true, do_access_check>( local 1547 bool success = DoInvokeVirtualQuick<false>( local 1554 bool success = DoInvokeVirtualQuick<true>( local 1717 bool success = DoIntDivide(shadow_frame, inst->VRegA_23x(inst_data), local 1725 bool success = DoIntRemainder(shadow_frame, inst->VRegA_23x(inst_data), local 1949 bool success = DoIntDivide(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local 1957 bool success = DoIntRemainder(shadow_frame, vregA, shadow_frame.GetVReg(vregA), local 2226 bool success = DoIntDivide(shadow_frame, inst->VRegA_22s(inst_data), local 2234 bool success = DoIntRemainder(shadow_frame, inst->VRegA_22s(inst_data), local 2281 bool success = DoIntDivide(shadow_frame, inst->VRegA_22b(inst_data), local 2288 bool success = DoIntRemainder(shadow_frame, inst->VRegA_22b(inst_data), local 2341 bool success = DoInvokeLambda<do_access_check>(self, shadow_frame, inst, inst_data, local 2356 bool success = DoCaptureVariable<do_access_check>(self, local 2378 bool success = DoCreateLambda<do_access_check>(self, local 2393 bool success = DoLiberateVariable<do_access_check>(self, local 2416 bool success = DoBoxLambda<do_access_check>(self, shadow_frame, inst, inst_data); local 2426 bool success = DoUnboxLambda<do_access_check>(self, shadow_frame, inst, inst_data); local [all...] |
/external/selinux/libsepol/cil/src/ |
cil_binary.h | 45 * @return SEPOL_OK upon success or an error otherwise. 61 * @return SEPOL_OK upon success or an error otherwise. 72 * @return SEPOL_OK upon success or an error otherwise. 82 * @return SEPOL_OK upon success or an error otherwise. 92 * @return SEPOL_OK upon success or an error otherwise. 103 * @return SEPOL_OK upon success or SEPOL_ERR otherwise. 113 * @return SEPOL_OK upon success or an error otherwise. 123 * @return SEPOL_OK upon success or an error otherwise. 135 * @return SEPOL_OK upon success or an error otherwise. 145 * @return SEPOL_OK upon success or an error otherwise [all...] |
/external/libbrillo/brillo/dbus/ |
async_event_sequencer.cc | 53 bool /*success*/) { 56 void DoNothing(bool /* success */) { 73 bool success) { 75 CheckForFailure(failure_is_fatal, success, error_message); 85 bool success) { 92 finish_handler.Run(success); 103 bool success, 106 CHECK(success) << error_message; 108 if (!success) {
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
AbstractQueueTest.java | 68 } catch (IllegalStateException success) {} 79 } catch (NullPointerException success) {} 98 } catch (NoSuchElementException success) {} 117 } catch (NoSuchElementException success) {} 128 } catch (NullPointerException success) {} 139 } catch (IllegalArgumentException success) {} 151 } catch (NullPointerException success) {} 166 } catch (NullPointerException success) {} 180 } catch (IllegalStateException success) {}
|
/hardware/bsp/intel/peripheral/libmraa/examples/c++/ |
Iio-dummy.cpp | 36 bool success = true; \ 40 success = false; \ 42 log_result(#func, "", true, success); \ 49 bool success = true; \ 53 success = false; \ 55 log_result(#func, attr_name, expect, success); \ 62 bool success = false; \ 64 success = fabs(iio_device->func(attr_name) - value) < FLT_EPSILON; \ 66 success = false; \ 68 log_result(#func, attr_name, expect, success); \ [all...] |