/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
thread_lwp.h | 32 int success;
local 36 success = lwp_create(&tid, func, MINPRIO, 0, lwp_newstk(), 1, arg);
37 return success < 0 ? -1 : 0;
87 int success;
local 90 success = 0;
97 success = 1;
102 dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
103 return success;
|
thread_solaris.h | 109 int success;
local 113 success = mutex_lock((mutex_t *) lock);
115 success = mutex_trylock((mutex_t *) lock);
116 if (success < 0)
119 success = !success; /* solaris does it the other way round */
120 dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
121 return success;
|
/frameworks/base/core/java/android/content/pm/ |
IPackageInstallerCallback.aidl | 25 void onSessionFinished(int sessionId, boolean success);
|
/hardware/interfaces/boot/1.0/ |
types.hal | 24 bool success;
|
/cts/hostsidetests/sustainedperf/shadertoy_android/jni/ |
utils.cpp | 32 GLint success;
local 34 glGetShaderiv(shader, GL_COMPILE_STATUS, &success);
35 if (!success)
50 GLint success;
local 52 glGetProgramiv(program, GL_LINK_STATUS, &success);
53 if (!success) {
|
/external/regex-re2/re2/testing/ |
re2_arg_test.cc | 18 bool success[6]; member in struct:re2::SuccessTable 99 bool success = kSuccessTable[i].success[column]; \ 100 ASSERT_TRUE_M(retval == success, \ 102 p, success).c_str()); \ 103 if ( success ) { \
|
/hardware/interfaces/gnss/1.0/ |
IGnssBatching.hal | 77 * @return success Returns true on success. 79 init(IGnssBatchingCallback callback) generates (bool success); 113 * @return success Returns true on success. 115 start(Options options) generates (bool success); 133 * @return success Returns true on success. 135 stop() generates (bool success);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
attrsetvaluenomodificationallowederrEE.java | 89 boolean success = false; 93 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR); 95 assertTrue("setValue_throws_NO_MODIFICATION", success); 99 boolean success = false; 103 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR); 105 assertTrue("setNodeValue_throws_NO_MODIFICATION", success);
|
documentinvalidcharacterexceptioncreateentref.java | 73 boolean success = false; 77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 79 assertTrue("throw_NOT_SUPPORTED_ERR", success); 84 boolean success = false; 88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR); 90 assertTrue("throw_INVALID_CHARACTER_ERR", success);
|
documentinvalidcharacterexceptioncreateentref1.java | 70 boolean success = false; 74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 76 assertTrue("throw_NOT_SUPPORTED_ERR", success); 81 boolean success = false; 85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR); 87 assertTrue("throw_INVALID_CHARACTER_ERR", success);
|
documentinvalidcharacterexceptioncreatepi.java | 73 boolean success = false; 77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 79 assertTrue("throw_NOT_SUPPORTED_ERR", success); 84 boolean success = false; 88 success = (ex.code == DOMException.INVALID_CHARACTER_ERR); 90 assertTrue("throw_INVALID_CHARACTER_ERR", success);
|
documentinvalidcharacterexceptioncreatepi1.java | 70 boolean success = false; 74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 76 assertTrue("throw_NOT_SUPPORTED_ERR", success); 81 boolean success = false; 85 success = (ex.code == DOMException.INVALID_CHARACTER_ERR); 87 assertTrue("throw_INVALID_CHARACTER_ERR", success);
|
hc_attrappendchild4.java | 80 boolean success = false; 84 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 86 assertTrue("throw_NOT_SUPPORTED_ERR", success); 92 boolean success = false; 96 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); 98 assertTrue("throw_HIERARCHY_REQUEST_ERR", success);
|
hc_attrinsertbefore5.java | 81 boolean success = false; 85 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 87 assertTrue("throw_NOT_SUPPORTED_ERR", success); 93 boolean success = false; 97 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); 99 assertTrue("throw_HIERARCHY_REQUEST_ERR", success);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
namednodemapsetnameditemns09.java | 84 boolean success = false; 88 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR); 90 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_entities", success); 94 boolean success = false; 98 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR); 100 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_notations", success);
|
/external/flatbuffers/samples/ |
SampleBinary.php | 80 $success = true; // Tracks if an assert occurred. variable 83 $success &= assert($monster->getMana() == 150); 84 $success &= assert($monster->getHp() == 300); 85 $success &= assert($monster->getName() == "Orc"); 86 $success &= assert($monster->getColor() == \MyGame\Sample\Color::Red); 87 $success &= assert($monster->getPos()->getX() == 1.0); 88 $success &= assert($monster->getPos()->getY() == 2.0); 89 $success &= assert($monster->getPos()->getZ() == 3.0); 93 $success &= assert($monster->getInventory($i) == $i); 100 $success &= assert($monster->getWeapons($i)->getName() == $expected_weapon_names[$i]) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
compileall.py | 42 success = 1
51 success = 0
58 success = 0
59 return success
72 success = 1
81 return success
93 return success
104 success = 0
107 success = 0
110 success = 0 [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
compileall.py | 42 success = 1
51 success = 0
58 success = 0
59 return success
72 success = 1
81 return success
93 return success
104 success = 0
107 success = 0
110 success = 0 [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
compileall.py | 42 success = 1 53 success = 0 60 success = 0 61 return success 74 success = 1 83 return success 95 return success 106 success = 0 109 success = 0 112 success = [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
compileall.py | 42 success = 1 53 success = 0 60 success = 0 61 return success 74 success = 1 83 return success 95 return success 106 success = 0 109 success = 0 112 success = [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
compileall.py | 42 success = 1 53 success = 0 60 success = 0 61 return success 74 success = 1 83 return success 95 return success 106 success = 0 109 success = 0 112 success = [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
compileall.py | 42 success = 1 53 success = 0 60 success = 0 61 return success 74 success = 1 83 return success 95 return success 106 success = 0 109 success = 0 112 success = [all...] |
/external/valgrind/memcheck/tests/ |
atomic_incs.c | 51 unsigned long success; 60 : /*out*/"=b"(success) 64 } while (success != 1); 68 unsigned long success; 77 : /*out*/"=b"(success) 81 } while (success != 1); 85 unsigned long success; 94 : /*out*/"=b"(success) 98 } while (success != 1); 281 unsigned long success; [all...] |
/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) {}
|
/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);
|