/external/icu/icu4c/source/layout/ |
TrimmedArrayProcessor.h | 28 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success); 30 TrimmedArrayProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success);
|
TrimmedArrayProcessor2.cpp | 24 TrimmedArrayProcessor2::TrimmedArrayProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success) 25 : NonContextualGlyphSubstitutionProcessor2(morphSubtableHeader, success) 27 const LEReferenceTo<NonContextualGlyphSubstitutionHeader2> header(morphSubtableHeader, success); 29 trimmedArrayLookupTable = LEReferenceTo<TrimmedArrayLookupTable>(morphSubtableHeader, success, &header->table); 32 valueArray = LEReferenceToArrayOf<LookupValue>(morphSubtableHeader, success, &trimmedArrayLookupTable->valueArray[0], LE_UNBOUNDED_ARRAY); 39 void TrimmedArrayProcessor2::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 41 if(LE_FAILURE(success)) return; 50 TTGlyphID newGlyph = SWAPW(valueArray(ttGlyph - firstGlyph, success));
|
ExtensionSubtables.cpp | 27 GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const 30 if (LE_FAILURE(success)) { 38 LEReferenceTo<LookupSubtable> subtable(base, success, extOffset); // Google patch: s/thisRef/base/ 40 if(LE_SUCCESS(success)) { 41 return lookupProcessor->applySubtable(subtable, elt, glyphIterator, fontInstance, success);
|
IndicLayoutEngine.cpp | 28 le_int32 typoFlags, le_bool version2, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success) 29 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success), fMPreFixups(NULL) 41 IndicOpenTypeLayoutEngine::IndicOpenTypeLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success) 42 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fMPreFixups(NULL) 57 LEGlyphStorage &glyphStorage, LEErrorCode &success) 59 if (LE_FAILURE(success)) { 64 success = LE_ILLEGAL_ARGUMENT_ERROR; 68 le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, glyphStorage, success); 70 if (LE_FAILURE(success)) { 77 OpenTypeLayoutEngine::glyphSubstitution(count,max, rightToLeft, glyphStorage, success); [all...] |
OpenTypeUtilities.h | 23 static Offset getTagOffset(LETag tag, const LEReferenceToArrayOf<TagAndOffsetRecord> &records, LEErrorCode &success); 25 LEErrorCode success = LE_NO_ERROR; local 27 LEReferenceToArrayOf<GlyphRangeRecord> recordRef(recordRef0, success, (size_t)0, recordCount); 28 return getGlyphRangeIndex(glyphID, recordRef, success); 30 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success);
|
ContextualGlyphSubstProc.cpp | 21 ContextualGlyphSubstitutionProcessor::ContextualGlyphSubstitutionProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success) 22 : StateTableProcessor(morphSubtableHeader, success), entryTable(), contextualGlyphSubstitutionHeader(morphSubtableHeader, success) 28 entryTable = LEReferenceToArrayOf<ContextualGlyphSubstitutionStateEntry>(stateTableHeader, success, 31 int16Table = LEReferenceToArrayOf<le_int16>(stateTableHeader, success, (const le_int16*)(&stateTableHeader->stHeader), 46 LEErrorCode success = LE_NO_ERROR; local 47 const ContextualGlyphSubstitutionStateEntry *entry = entryTable.getAlias(index, success); 53 if (markOffset != 0 && LE_SUCCESS(success)) { 55 TTGlyphID newGlyph = SWAPW(int16Table.getObject(markOffset + LE_GET_GLYPH(mGlyph), success)); // whew. 62 TTGlyphID newGlyph = SWAPW(int16Table.getObject(currOffset + LE_GET_GLYPH(thisGlyph), success)); // whew. [all...] |
LigatureSubstProc.cpp | 25 LigatureSubstitutionProcessor::LigatureSubstitutionProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success) 26 : StateTableProcessor(morphSubtableHeader, success), ligatureSubstitutionHeader(morphSubtableHeader, success) 28 if(LE_FAILURE(success)) return; 33 entryTable = LEReferenceToArrayOf<LigatureSubstitutionStateEntry>(stHeader, success, entryTableOffset, LE_UNBOUNDED_ARRAY); 47 LEErrorCode success = LE_NO_ERROR; local 48 const LigatureSubstitutionStateEntry *entry = entryTable.getAlias(index, success); 68 LEReferenceTo<LigatureActionEntry> ap(stHeader, success, actionOffset); 78 ap.addObject(success); // ap++ 86 LEReferenceToArrayOf<le_int16> offsetTable(stHeader, success, 2 * SignExtend(offset, lafComponentOffsetMask), LE_UNBOUNDED_ARRAY) [all...] |
StateTableProcessor2.cpp | 23 StateTableProcessor2::StateTableProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success) 24 : SubtableProcessor2(morphSubtableHeader, success), 33 stateTableHeader(morphSubtableHeader, success), 34 stHeader(stateTableHeader, success, (const StateTableHeader2*)&stateTableHeader->stHeader) 36 if (LE_FAILURE(success)) { 44 classTable = LEReferenceTo<LookupTable>(stHeader, success, classTableOffset); 47 stateArray = LEReferenceToArrayOf<EntryTableIndex2>(stHeader, success, stateArrayOffset, LE_UNBOUNDED_ARRAY); 54 void StateTableProcessor2::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 56 if (LE_FAILURE(success)) return; 76 LEReferenceTo<SimpleArrayLookupTable> lookupTable0(classTable, success); [all...] |
ContextualGlyphSubstProc2.h | 30 virtual le_uint16 processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success); 34 ContextualGlyphSubstitutionProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success); 53 TTGlyphID lookup(le_uint32 offset, LEGlyphID gid, LEErrorCode &success);
|
HangulLayoutEngine.h | 49 * @param success - set to an error code if the operation fails 58 le_int32 typoFlags, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success); 67 * @param success - set to an error code if the operation fails 75 le_int32 typoFlags, LEErrorCode &success); 115 * @param success - set to an error code if the operation fails 122 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
KhmerLayoutEngine.h | 52 * @param success - set to an error code if the operation fails 61 le_int32 typoFlags, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success); 70 * @param success - set to an error code if the operation fails 78 le_int32 typoFlags, LEErrorCode &success); 118 * @param success - set to an error code if the operation fails 125 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
SingleSubstitutionSubtables.h | 25 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;
|
ThaiLayoutEngine.h | 40 * @param success - set to an error code if the operation fails 47 ThaiLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success); 107 * @param success - set to an error code if the operation fails 116 LEGlyphStorage &glyphStorage, LEErrorCode &success); 134 * @param success - output parameter set to an error code if the operation fails 138 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
TibetanLayoutEngine.h | 52 * @param success - set to an error code if the operation fails 61 le_int32 typoFlags, const LEReferenceTo<GlyphSubstitutionTableHeader> &gsubTable, LEErrorCode &success); 70 * @param success - set to an error code if the operation fails 78 le_int32 typoFlags, LEErrorCode &success); 118 * @param success - set to an error code if the operation fails 125 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
/external/minijail/test/ |
libminijail_test.cpp | 51 bool success = true; local 56 success = false; 61 success = false; 63 return success; 67 bool success = true; local 75 success = false; 89 success = false; 93 return success; 122 bool success = check_ugid(kSystemUid); local 123 success = success && check_groups(num_groups, groups) [all...] |
/external/jetty/src/java/org/eclipse/jetty/security/authentication/ |
LoginCallbackImpl.java | 42 private boolean success; field in class:LoginCallbackImpl 73 return success; 76 public void setSuccess(boolean success) 78 this.success = success;
|
/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/valgrind/helgrind/tests/ |
annotate_hbefore.c | 26 /* return 1 if success, 0 if failure */ 29 UWord old, success; local 48 : /*out*/ "=b"(success) 52 assert(success == 0 || success == 1); 53 return success; 59 /* return 1 if success, 0 if failure */ 62 UWord old, success; local 81 : /*out*/ "=b"(success) 85 assert(success == 0 || success == 1) 143 UWord old, success; local 176 UWord old, success; local 228 UWord success; local 261 UWord success; local [all...] |
/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...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DOMImplementationHasFeature.java | 81 boolean success; 94 success = domImpl.hasFeature(featureXML, version); 95 assertTrue("domimplementationhasfeature01_XML_1", success); 96 success = domImpl.hasFeature(featureXML, version1); 97 assertTrue("domimplementationhasfeature01_XML_2", success); 101 success = domImpl.hasFeature(featureCore, version); 102 assertTrue("domimplementationhasfeature01_Core_1", success); 103 success = domImpl.hasFeature(featureCore, version1); 104 success = domImpl.hasFeature(featureCore, version2); 105 assertTrue("domimplementationhasfeature01_Core_3", success); [all...] |
NodeSetPrefix.java | 132 boolean success = false; 136 success = (ex.code == DOMException.NAMESPACE_ERR); 138 assertTrue("throw_NAMESPACE_ERR", success); 157 // boolean success = false; 161 // success = (ex.code == DOMException.NAMESPACE_ERR); 163 // assertTrue("nodesetprefix04", success); 184 boolean success = false; 188 success = (ex.code == DOMException.NAMESPACE_ERR); 190 assertTrue("throw_NAMESPACE_ERR", success); 202 boolean success = false [all...] |
/external/v8/test/webkit/ |
duplicate-param-gc-crash.js | 50 var test1Closure = test1(["success"]); 52 var extra = test1("success"); 56 shouldBe('test1Closure()', '"success"'); 64 var test2Closure = test2("success", "success", "success", "success", "success", "success", ["success"]); [all...] |
/external/mesa3d/src/gallium/tests/unit/ |
u_format_compatible_test.c | 71 boolean success; local 73 success = test_all(); 75 return success ? 0 : 1;
|