Searched refs:success (Results 176 - 200 of 2627) sorted by relevance

1234567891011>>

/external/deqp/framework/common/
H A DtcuTestCaseWrapper.cpp45 bool success = false; local
53 success = true;
57 DE_ASSERT(!success);
63 DE_ASSERT(!success);
70 DE_ASSERT(!success);
75 DE_ASSERT(success || m_testCtx.getTestResult() != QP_TEST_RESULT_LAST);
77 return success;
/external/valgrind/main/memcheck/tests/
H A Datomic_incs.c51 unsigned long success;
60 : /*out*/"=b"(success)
64 } while (success != 1);
68 unsigned long success;
77 : /*out*/"=b"(success)
81 } while (success != 1);
250 unsigned long success;
259 : /*out*/"=b"(success)
263 } while (success != 1);
267 unsigned long success;
[all...]
/external/icu/icu4c/source/layout/
H A DOpenTypeLayoutEngine.cpp129 le_int32 typoFlags, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success)
130 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureMask(minimalFeatures),
133 fGDEFTable(fontInstance, LE_GDEF_TABLE_TAG, success),
134 fGPOSTable(fontInstance, LE_GPOS_TABLE_TAG, success), fSubstitutionFilter(NULL)
142 if (!fGPOSTable.isEmpty()&& !fGPOSTable->coversScript(fGPOSTable, fScriptTag, success)) {
224 le_int32 typoFlags, LEErrorCode &success)
225 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureOrder(FALSE),
283 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
285 if (LE_FAILURE(success)) {
290 success
128 OpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success) argument
223 OpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) argument
282 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
331 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
364 glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
389 glyphPostProcessing(LEGlyphStorage &tempGlyphStorage, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
403 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
445 adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
[all...]
H A DMultipleSubstSubtables.cpp17 le_uint32 MultipleSubstitutionSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, LEErrorCode& success, const LEGlyphFilter *filter) const argument
19 if (LE_FAILURE(success)) {
36 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
69 LEGlyphID *newGlyphs = glyphIterator->insertGlyphs(glyphCount, success);
70 if (LE_FAILURE(success)) {
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp40 bool success = true; local
53 success = false;
71 success = false;
74 return success;
103 EmulationStateARM::ReadPseudoRegisterValue (uint32_t reg_num, bool &success) argument
106 success = true;
123 success = false;
164 EmulationStateARM::ReadFromPseudoAddress (lldb::addr_t p_address, uint32_t size, bool &success) argument
169 success = true;
174 success
[all...]
/external/chromium_org/chrome/test/chromedriver/net/
H A Dsync_websocket_impl.cc54 bool success = false; local
59 this, url, &success, &event));
61 return success;
65 bool success = false; local
70 this, message, &success, &event));
72 return success;
115 bool* success,
124 this, success, event));
128 bool* success,
131 *success
113 ConnectOnIO( const GURL& url, bool* success, base::WaitableEvent* event) argument
127 OnConnectCompletedOnIO( bool* success, base::WaitableEvent* event, int error) argument
139 SendOnIO( const std::string& message, bool* success, base::WaitableEvent* event) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DFence.cpp107 BOOL success = QueryPerformanceFrequency(&counterFreqency); local
108 UNUSED_ASSERTION_VARIABLE(success);
109 ASSERT(success);
147 BOOL success = QueryPerformanceCounter(&currentCounter); local
148 UNUSED_ASSERTION_VARIABLE(success);
149 ASSERT(success);
157 BOOL success = QueryPerformanceCounter(&currentCounter); local
158 UNUSED_ASSERTION_VARIABLE(success);
159 ASSERT(success);
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dimage_writer_private_api.h23 void OnWriteStarted(bool success, const std::string& error);
36 void OnWriteStarted(bool success, const std::string& error);
49 void OnWriteCancelled(bool success, const std::string& error);
62 void OnDestroyComplete(bool success, const std::string& error);
76 bool success);
/external/chromium_org/chrome/test/base/
H A Dtest_launcher_utils.cc76 bool success = true; local
80 success = PathService::Override(chrome::DIR_USER_DATA, user_data_dir);
90 success = success && env->SetVar("XDG_CACHE_HOME", user_data_dir.value());
93 return success;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaValuesTest.cpp21 bool success; member in struct:blink::TestCase
49 bool success = MediaValues::computeLength(testCases[i].value, local
55 ASSERT_EQ(testCases[i].success, success);
56 if (success)
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-changebreakpoint.js48 function testArguments(dcp, arguments, success) {
52 if (success) {
53 assertTrue(response.success, json_response);
55 assertFalse(response.success, json_response);
68 assertFalse(response.success);
H A Ddebug-clearbreakpoint.js48 function testArguments(dcp, arguments, success) {
52 if (success) {
53 assertTrue(response.success, json_response);
55 assertFalse(response.success, json_response);
68 assertFalse(response.success);
H A Ddebug-references.js47 function testRequest(dcp, arguments, success, count) {
58 if (success) {
59 assertTrue(response.success, request + ' -> ' + response.message);
67 assertFalse(response.success, request + ' -> ' + response.message);
89 assertTrue(response.success, "Evaluation of Point failed");
H A Ddebug-setexceptionbreak.js53 function testArguments(dcp, arguments, success, type, enabled) {
57 if (success) {
58 assertTrue(response.success, json_response);
62 assertFalse(response.success, json_response);
75 assertFalse(response.success);
/external/chromium_org/chrome/browser/chromeos/
H A Dcustomization_wallpaper_downloader.cc31 bool* success) {
33 DCHECK(success);
35 *success = CreateDirectoryAndGetError(wallpaper_dir, NULL);
36 if (!*success) {
44 bool* success) {
46 DCHECK(success);
50 *success = true;
55 *success = false;
66 base::Callback<void(bool success, const GURL&)>
123 scoped_ptr<bool> success(ne
30 CreateWallpaperDirectory(const base::FilePath& wallpaper_dir, bool* success) argument
42 RenameTemporaryFile(const base::FilePath& from, const base::FilePath& to, bool* success) argument
61 CustomizationWallpaperDownloader( net::URLRequestContextGetter* url_context_getter, const GURL& wallpaper_url, const base::FilePath& wallpaper_dir, const base::FilePath& wallpaper_downloaded_file, base::Callback<void(bool success, const GURL&)> on_wallpaper_fetch_completed) argument
138 OnWallpaperDirectoryCreated( scoped_ptr<bool> success) argument
189 OnTemporaryFileRenamed( scoped_ptr<bool> success) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_base.cc26 void LoggedAsyncExtensionFunction::SendResponse(bool success) { argument
35 success ? "succeeded" : "failed",
46 ChromeAsyncExtensionFunction::SendResponse(success);
/external/chromium_org/chrome/browser/chromeos/login/easy_unlock/
H A Deasy_unlock_create_keys_operation.h24 typedef base::Callback<void (bool success)> CreateKeysCallback;
39 void OnChallengeCreated(size_t index, bool success);
44 bool success,
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivet_confirm_api_flow.cc42 bool success = false; local
44 if (!value.GetBoolean(cloud_print::kSuccessValue, &success)) {
49 if (success) {
/external/chromium_org/chrome/browser/local_discovery/wifi/
H A Dcredential_getter_win.h19 typedef base::Callback<void(bool success, const std::string& key)>
35 void OnGotCredentials(const std::string& key_data, bool success);
39 void PostCallback(bool success, const std::string& key_data);
/external/chromium_org/chrome/installer/util/
H A Dgoogle_update_util.cc91 bool success = false; local
107 success = true;
109 return success;
117 bool success = false; local
119 success = true;
128 success = true;
130 success = LaunchProcessAndWaitWithTimeout(cmd_string,
134 return success;
138 bool success = false; local
142 success
[all...]
/external/chromium_org/components/leveldb_proto/
H A Dproto_database.h23 typedef base::Callback<void(bool success)> InitCallback;
24 typedef base::Callback<void(bool success)> UpdateCallback;
25 typedef base::Callback<void(bool success, scoped_ptr<std::vector<T> >)>
/external/chromium_org/components/leveldb_proto/testing/
H A Dfake_db.h43 void InitCallback(bool success);
45 void LoadCallback(bool success);
47 void UpdateCallback(bool success);
55 bool success);
112 void FakeDB<T>::InitCallback(bool success) { argument
113 init_callback_.Run(success);
118 void FakeDB<T>::LoadCallback(bool success) { argument
119 load_callback_.Run(success);
124 void FakeDB<T>::UpdateCallback(bool success) { argument
125 update_callback_.Run(success);
131 RunLoadCallback( typename ProtoDatabase<T>::LoadCallback callback, scoped_ptr<typename std::vector<T> > entries, bool success) argument
[all...]
/external/chromium_org/printing/
H A Dimage.cc25 bool success = false; local
27 success = LoadPng(data);
29 success = LoadMetafile(data);
33 if (!success) {
64 bool success = gfx::PNGCodec::Encode(&*data_.begin(), local
71 DCHECK(success && compressed.size());
72 if (success) {
77 success = (write_bytes == static_cast<int>(compressed.size()));
78 DCHECK(success);
80 return success;
143 bool success = gfx::PNGCodec::Decode( local
[all...]
/external/chromium_org/remoting/client/plugin/
H A Dpepper_audio_player.cc57 bool success = audio_.StartPlayback(); local
58 if (!success)
60 return success;
/external/chromium_org/sandbox/win/src/
H A Dwin2k_threadpool.cc34 bool success = true; local
40 success &= (::UnregisterWaitEx(wait, INVALID_HANDLE_VALUE) != 0);
45 return success;

Completed in 647 milliseconds

1234567891011>>