/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
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...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
IccProvider.java | 134 boolean success = addIccRecordToEf(efType, tag, number, null, pin2); 136 if (!success) { 240 boolean success = deleteIccRecordFromEf(efType, tag, number, emails, pin2); 241 if (!success) { 278 boolean success = updateIccRecordInEf(efType, tag, number, 281 if (!success) { 325 boolean success = false; 336 success = iccIpb.updateAdnRecordsInEfBySearch(efType, "", "", 344 if (DBG) log("addIccRecordToEf: " + success); 345 return success; [all...] |
IccIoResult.java | 49 public boolean success() { method in class:IccIoResult 54 * Returns exception on error or null if success 57 if (success()) return null;
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DocumentImportNode.java | 198 boolean success = false; 202 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 204 assertTrue("throw_NOT_SUPPORTED_ERR", success); 215 boolean success = false; 219 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 221 assertTrue("throw_NOT_SUPPORTED_ERR", success); 236 boolean success = false; 240 success = (ex.code == DOMException.NOT_SUPPORTED_ERR); 242 assertTrue("throw_NOT_SUPPORTED_ERR", success); 249 boolean success; [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/ |
libEGL.cpp | 143 return success(EGL_TRUE); 168 return success(EGL_TRUE); 194 return success("OpenGL_ES"); 196 return success(""); 198 return success("TransGaming Inc."); 200 return success("1.4 (git-devel "__DATE__" " __TIME__")"); 240 return success(EGL_TRUE); 279 return success(EGL_TRUE); 308 return success(EGL_TRUE); 375 return success(surface) [all...] |
/build/tools/ |
mktarball.sh | 50 success=$? 51 [ $success -eq 0 ] || rm -f ${target_tarball} 53 exit $success
|
/frameworks/base/media/mca/filterfw/jni/ |
jni_vertex_frame.cpp | 43 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr), local 46 return ToJBool(success); 60 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(float_ptr), local 63 return ToJBool(success); 78 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(bytes + offset), local 81 return ToJBool(success);
|
/external/chromium/chrome/browser/ |
plugin_download_helper.cc | 133 bool success = true; local 135 success = false; 137 success = false; 140 DownloadCompletedHelper(success); 143 void PluginDownloadUrlHelper::DownloadCompletedHelper(bool success) { 148 if (success) { 167 delegate_->OnDownloadCompleted(download_file_path_, success); 174 download_file_data.dwData = success;
|
/external/chromium/googleurl/src/ |
url_canon_stdurl.cc | 47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme, local 63 success &= CanonicalizeUserInfo(source.username, parsed.username, 69 success &= CanonicalizeHost(source.host, parsed.host, 74 success = false; 79 success &= CanonicalizePort(source.port, parsed.port, default_port, 88 success = false; // Standard URLs must have an authority. 93 success &= CanonicalizePath(source.path, parsed.path, 114 return success;
|
/external/icu4c/layout/ |
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); 151 LEErrorCode& success) const 153 if (LE_FAILURE(success)) { 165 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 171 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 177 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 188 LEErrorCode& success) cons [all...] |
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
documentrenamenode27.js | 87 var success; 128 success = false; 133 success = (typeof(ex.code) != 'undefined' && ex.code == 9); 135 assertTrue("throw_NOT_SUPPORTED_ERR_1",success); 139 success = false; 144 success = (typeof(ex.code) != 'undefined' && ex.code == 9); 146 assertTrue("throw_NOT_SUPPORTED_ERR_2",success); 150 success = false; 155 success = (typeof(ex.code) != 'undefined' && ex.code == 9); 157 assertTrue("throw_NOT_SUPPORTED_ERR_3",success); [all...] |
nodereplacechild23.js | 87 var success; 117 success = false; 122 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 124 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_1",success); 128 success = false; 133 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 135 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_2",success); 139 success = false; 144 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 146 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR_3",success); [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorDOMStorageAgent.h | 63 void setDOMStorageItem(ErrorString*, int storageId, const String& key, const String& value, bool* success); 64 void removeDOMStorageItem(ErrorString*, int storageId, const String& key, bool* success);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
GlyphPageTreeNodeCairoWin.cpp | 54 bool success = result != GDI_ERROR && static_cast<unsigned>(result) == bufferLength; local 55 if (success) {
|
/external/zxing/qr_scanner/src/com/google/zxing/client/android/camera/ |
AutoFocusCallback.java | 38 public void onAutoFocus(boolean success, Camera camera) { 40 Message message = autoFocusHandler.obtainMessage(autoFocusMessage, success);
|
/libcore/luni/src/main/java/java/nio/channels/spi/ |
AbstractInterruptibleChannel.java | 99 * @param success 109 protected final void end(boolean success) throws AsynchronousCloseException { 115 if (!success && closed) {
|
/external/chromium/base/ |
string_number_conversions_unittest.cc | 79 bool success; member in struct:base::__anon2750 110 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output)); 113 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input.begin(), 118 EXPECT_EQ(cases[i].success, StringToInt( 125 EXPECT_EQ(cases[i].success, StringToInt(utf16_input, &output)); 128 EXPECT_EQ(cases[i].success, StringToInt(utf16_input.begin(), 133 EXPECT_EQ(cases[i].success, StringToInt( 177 bool success; member in struct:base::__anon2751 215 EXPECT_EQ(cases[i].success, StringToInt64(cases[i].input, &output)); 218 EXPECT_EQ(cases[i].success, StringToInt64(cases[i].input.begin() 279 bool success; member in struct:base::__anon2752 349 bool success; member in struct:base::__anon2753 388 bool success; member in struct:base::__anon2754 [all...] |
version_unittest.cc | 21 bool success; member in struct:version_string 44 EXPECT_EQ(cases[i].success, vers.get() != NULL); 45 if (cases[i].success) {
|
/cts/tests/tests/webkitsecurity/assets/ |
var-shadows-arg-gc-crash.js | 22 var b = ["success"], a, c; 34 shouldBe('testClosure()', '"success"');
|
/external/chromium/chrome/browser/extensions/ |
file_reader.h | 23 // Reports success or failure and the data of the file upon success. 38 void RunCallback(bool success, const std::string& data);
|
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
saslmechanism.h | 58 // Notification of a SASL "<success>". Sometimes information 59 // is passed on success. 60 virtual void HandleSaslSuccess(const XmlElement * success);
|
/external/qemu/telephony/ |
remote_call.h | 25 typedef void (*RemoteResultFunc)( void* opaque, int success ); 38 * is called to indicate success or failure after some time.
|
/external/webkit/Source/WebCore/bindings/v8/ |
ScriptScope.h | 42 bool success();
|
/external/webkit/Source/WebCore/platform/win/ |
ClipboardUtilitiesWin.h | 68 String getURL(IDataObject*, DragData::FilenameConversionPolicy, bool& success, String* title = 0); 70 String getPlainText(IDataObject*, bool& success); 72 String getTextHTML(IDataObject*, bool& success); 74 String getCFHTML(IDataObject*, bool& success);
|
/frameworks/base/core/java/android/util/ |
Base64InputStream.java | 140 boolean success; 143 success = coder.process(EMPTY, 0, 0, true); 145 success = coder.process(inputBuffer, 0, bytesRead, false); 147 if (!success) {
|