Searched refs:success (Results 126 - 150 of 2627) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/layout/
H A DNonContextualGlyphSubstProc2.h27 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success) = 0;
29 static SubtableProcessor2 *createInstance(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success);
33 NonContextualGlyphSubstitutionProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success);
H A DSingleSubstitutionSubtables.h25 le_uint32 process(const LEReferenceTo<SingleSubstitutionSubtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter = NULL) const;
32 le_uint32 process(const LEReferenceTo<SingleSubstitutionFormat1Subtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter = NULL) const;
40 le_uint32 process(const LEReferenceTo<SingleSubstitutionFormat2Subtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter = NULL) const;
H A DLayoutEngine.h133 * @param success - set to an error code if the operation fails
144 LEErrorCode &success);
174 * @param success - set to an error code if the operation fails
181 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
203 * @param success - set to an error code if the operation fails
209 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
220 * @param success - set to an error code if the operation fails
224 virtual void positionGlyphs(LEGlyphStorage &glyphStorage, float x, float y, LEErrorCode &success);
242 * @param success - output parameter set to an error code if the operation fails
246 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
[all...]
H A DAlternateSubstSubtables.cpp18 GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const
22 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
24 if (coverageIndex >= 0 && LE_SUCCESS(success)) {
29 const LEReferenceTo<AlternateSetTable> alternateSetTable(base, success,
17 process(const LEReferenceTo<AlternateSubstitutionSubtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const argument
H A DLigatureSubstProc2.cpp25 LigatureSubstitutionProcessor2::LigatureSubstitutionProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success) argument
26 : StateTableProcessor2(morphSubtableHeader, success),
28 componentOffset(0), ligatureOffset(0), entryTable(), ligatureSubstitutionHeader(morphSubtableHeader, success)
30 if (LE_FAILURE(success)) return;
36 entryTable = LEReferenceToArrayOf<LigatureSubstitutionStateEntry2>(stHeader, success, entryTableOffset, LE_UNBOUNDED_ARRAY);
48 le_uint16 LigatureSubstitutionProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success) argument
50 const LigatureSubstitutionStateEntry2 *entry = entryTable.getAlias(index, success);
51 if(LE_FAILURE(success)) return 0;
72 LEReferenceTo<LigatureActionEntry> ap(stHeader, success, ligActionOffset); // byte offset
73 ap.addObject(ligActionIndex - 1, success); // inde
[all...]
H A DArabicLayoutEngine.h44 * @param success - set to an error code if the operation fails
53 le_int32 typoFlags, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success);
62 * @param success - set to an error code if the operation fails
70 le_int32 typoFlags, LEErrorCode &success);
110 * @param success - set to an error code if the operation fails
117 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
132 * @param success - output parameter set to an error code if the operation fails
136 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
138 // static void adjustMarkGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
164 * @param success
[all...]
/external/mesa3d/src/gallium/tests/unit/
H A Du_format_compatible_test.c71 boolean success; local
73 success = test_all();
75 return success ? 0 : 1;
H A Du_format_test.c209 boolean success; local
211 success = TRUE;
217 success = FALSE;
223 if (!success) {
228 return success;
238 boolean success; local
244 success = TRUE;
249 success = FALSE;
255 if (!success) {
260 return success;
271 boolean success; local
345 boolean success; local
384 boolean success; local
440 boolean success; local
471 boolean success; local
508 boolean success; local
545 boolean success; local
583 boolean success; local
620 boolean success; local
662 boolean success = TRUE; local
686 boolean success = TRUE; local
730 boolean success; local
[all...]
/external/skia/src/utils/
H A DSkRTConf.cpp173 template <typename T> T doParse(const char *, bool *success ) {
175 if (success) {
176 *success = false;
181 template<> bool doParse<bool>(const char *s, bool *success) { argument
182 if (success) {
183 *success = true;
191 if (success) {
192 *success = false;
197 template<> const char * doParse<const char *>(const char * s, bool *success) { argument
198 if (success) {
204 doParse(const char * s, bool *success) argument
211 doParse(const char * s, bool *success) argument
218 doParse(const char * s, bool *success) argument
225 doParse(const char * s, bool *success) argument
271 bool success; local
[all...]
/external/skia/tests/
H A DDiscardableMemoryTest.cpp24 bool success = dm->lock(); local
25 REPORTER_ASSERT(reporter, success);
26 if (!success) {
H A DClipCubicTest.cpp81 bool success; local
87 success = clipper.clipCubic(crv, clipped);
88 REPORTER_ASSERT(reporter, success == true);
95 success = clipper.clipCubic(crv, clipped);
96 REPORTER_ASSERT(reporter, success == true);
103 success = clipper.clipCubic(crv, clipped);
104 REPORTER_ASSERT(reporter, success == true);
111 success = clipper.clipCubic(crv, clipped);
112 REPORTER_ASSERT(reporter, success == false);
117 success
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
H A Du_format_test.c209 boolean success; local
211 success = TRUE;
217 success = FALSE;
223 if (!success) {
228 return success;
238 boolean success; local
244 success = TRUE;
249 success = FALSE;
255 if (!success) {
260 return success;
271 boolean success; local
345 boolean success; local
384 boolean success; local
440 boolean success; local
471 boolean success; local
508 boolean success; local
545 boolean success; local
583 boolean success; local
620 boolean success; local
662 boolean success = TRUE; local
686 boolean success = TRUE; local
730 boolean success; local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DClipCubicTest.cpp81 bool success; local
87 success = clipper.clipCubic(crv, clipped);
88 REPORTER_ASSERT(reporter, success == true);
95 success = clipper.clipCubic(crv, clipped);
96 REPORTER_ASSERT(reporter, success == true);
103 success = clipper.clipCubic(crv, clipped);
104 REPORTER_ASSERT(reporter, success == true);
111 success = clipper.clipCubic(crv, clipped);
112 REPORTER_ASSERT(reporter, success == false);
117 success
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dimport_data_overlay.css23 #import-success-header {
27 #import-success-image {
/external/chromium_org/chromeos/login/auth/
H A Donline_attempt_host.cc50 bool success = state_->online_outcome().reason() == AuthFailure::NONE; local
54 success));
58 void OnlineAttemptHost::ResolveOnUIThread(bool success) { argument
59 delegate_->OnChecked(current_attempt_user_context_.GetUserID(), success);
/external/chromium_org/components/cronet/android/sample/javatests/src/org/chromium/cronet_sample_apk/
H A DCriteriaHelper.java78 boolean success = false;
79 while (count < maxAttempts && !success) {
82 success = pollForCriteria(criteria, maxTimeoutMs, checkIntervalMs);
84 return success;
/external/chromium_org/components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/
H A DCriteriaHelper.java78 boolean success = false;
79 while (count < maxAttempts && !success) {
82 success = pollForCriteria(criteria, maxTimeoutMs, checkIntervalMs);
84 return success;
/external/chromium_org/extensions/browser/api/system_cpu/
H A Dsystem_cpu_api.h20 void OnGetCpuInfoCompleted(bool success);
/external/chromium_org/extensions/browser/api/system_memory/
H A Dsystem_memory_api.h21 void OnGetMemoryInfoCompleted(bool success);
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DDeprecatedStorageQuotaCallbacksImpl.h46 static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(StorageUsageCallback* success, StorageErrorCallback* error) argument
48 return adoptPtrWillBeNoop(new DeprecatedStorageQuotaCallbacksImpl(success, error));
51 static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(StorageQuotaCallback* success, StorageErrorCallback* error) argument
53 return adoptPtrWillBeNoop(new DeprecatedStorageQuotaCallbacksImpl(success, error));
/external/valgrind/main/memcheck/tests/
H A Dmetadata.stdout.exp1 result of GET is 1 (1 for success)
12 result of SET is 1 (1 for success)
/external/chromium_org/base/prefs/
H A Dpref_store_observer_mock.cc26 void PrefStoreObserverMock::OnInitializationCompleted(bool success) { argument
28 initialization_success = success;
/external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
H A DPRESUBMIT.py20 success, output = CheckBrailleIme()
21 if not success:
/external/chromium_org/google_apis/gcm/engine/
H A Dgcm_store.cc10 : success(false),
28 success = false;
/external/chromium_org/v8/test/perf-test/Collections/
H A Drun.js13 var success = true; variable
22 success = false;

Completed in 5722 milliseconds

1234567891011>>