HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 26 - 50 of 3839) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu4c/layout/
GlyphPositioningTables.cpp 21 const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, LEErrorCode &success,
24 if (LE_FAILURE(success)) {
28 GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success);
29 if (LE_FAILURE(success)) {
33 processor.process(glyphStorage, glyphPositionAdjustments, rightToLeft, glyphDefinitionTableHeader, fontInstance, success);
KhmerLayoutEngine.cpp 21 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success)
22 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
29 le_int32 typoFlags, LEErrorCode &success)
30 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
45 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
47 if (LE_FAILURE(success)) {
52 success = LE_ILLEGAL_ARGUMENT_ERROR;
61 success = LE_MEMORY_ALLOCATION_ERROR;
65 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success);
66 glyphStorage.allocateAuxData(success);
    [all...]
TibetanLayoutEngine.cpp 27 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success)
28 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
35 le_int32 typoFlags, LEErrorCode &success)
36 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
51 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
53 if (LE_FAILURE(success)) {
58 success = LE_ILLEGAL_ARGUMENT_ERROR;
67 success = LE_MEMORY_ALLOCATION_ERROR;
71 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success);
72 glyphStorage.allocateAuxData(success);
    [all...]
LEGlyphStorage.h 145 * @param success - set to an error code if the operation fails
149 void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const;
159 * @param success - set to an error code if the operation fails
163 void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
171 * @param success - set to an error code if the operation fails
175 void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
184 * @param success - set to an error code if the operation fails
188 void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
197 * @param success - set to an error code if the operation fails
201 void getGlyphPositions(float positions[], LEErrorCode &success) const
    [all...]
GXLayoutEngine.cpp 19 GXLayoutEngine::GXLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, const MorphTableHeader *morphTable, LEErrorCode &success)
20 : LayoutEngine(fontInstance, scriptCode, languageCode, 0, success), fMorphTable(morphTable)
31 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success)
33 if (LE_FAILURE(success)) {
38 success = LE_ILLEGAL_ARGUMENT_ERROR;
42 mapCharsToGlyphs(chars, offset, count, FALSE, rightToLeft, glyphStorage, success);
44 if (LE_FAILURE(success)) {
55 LEGlyphStorage &/*glyphStorage*/, LEErrorCode &success)
57 if (LE_FAILURE(success)) {
62 success = LE_ILLEGAL_ARGUMENT_ERROR
    [all...]
ThaiLayoutEngine.cpp 22 ThaiLayoutEngine::ThaiLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, le_int32 typoFlags, LEErrorCode &success)
23 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
59 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success)
61 if (LE_FAILURE(success)) {
66 success = LE_ILLEGAL_ARGUMENT_ERROR;
78 success = LE_MEMORY_ALLOCATION_ERROR;
82 glyphStorage.allocateGlyphArray(count * 2, FALSE, success);
84 if (LE_FAILURE(success)) {
86 success = LE_MEMORY_ALLOCATION_ERROR;
91 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success);
    [all...]
IndicRearrangementProcessor.cpp 70 LEErrorCode success = LE_NO_ERROR; local
79 ia = glyphStorage.getCharIndex(firstGlyph, success);
84 ix = glyphStorage.getCharIndex(x, success);
85 glyphStorage.setCharIndex(x - 1, ix, success);
90 glyphStorage.setCharIndex(lastGlyph, ia, success);
95 id = glyphStorage.getCharIndex(lastGlyph, success);
100 ix = glyphStorage.getCharIndex(x, success);
101 glyphStorage.setCharIndex(x + 1, ix, success);
106 glyphStorage.setCharIndex(firstGlyph, id, success);
111 ia = glyphStorage.getCharIndex(firstGlyph, success);
    [all...]
LayoutEngine.h 127 * @param success - set to an error code if the operation fails
138 LEErrorCode &success);
165 * @param success - set to an error code if the operation fails
172 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success);
194 * @param success - set to an error code if the operation fails
200 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
211 * @param success - set to an error code if the operation fails
215 virtual void positionGlyphs(LEGlyphStorage &glyphStorage, float x, float y, LEErrorCode &success);
233 * @param success - output parameter set to an error code if the operation fails
237 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
    [all...]
GlyphSubstitutionTables.cpp 29 LEErrorCode &success) const
31 if (LE_FAILURE(success)) {
35 GlyphSubstitutionLookupProcessor processor(this, scriptTag, languageTag, filter, featureMap, featureMapCount, featureOrder, success);
36 return processor.process(glyphStorage, NULL, rightToLeft, glyphDefinitionTableHeader, NULL, success);
HanLayoutEngine.cpp 42 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success)
43 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
55 LEUnicode *&/*outChars*/, LEGlyphStorage &glyphStorage, LEErrorCode &success)
57 if (LE_FAILURE(success)) {
62 success = LE_ILLEGAL_ARGUMENT_ERROR;
66 glyphStorage.allocateGlyphArray(count, FALSE, success);
67 glyphStorage.allocateAuxData(success);
69 if (LE_FAILURE(success)) {
78 glyphStorage.setAuxData(i, features, success);
SubstitutionLookups.cpp 32 LEErrorCode& success)
34 if (LE_FAILURE(success)) {
40 for (le_uint16 subst = 0; subst < substCount && LE_SUCCESS(success); subst += 1) {
47 lookupProcessor->applySingleLookup(lookupListIndex, &tempIterator, fontInstance, success);
loengine.h 45 * @param success - output parameter set to an error code if the operation fails
56 LEErrorCode *success);
80 * @param success - output parameter set to an error code if the operation fails
102 LEErrorCode *success);
110 * @param success - output parameter set to an error code if the operation fails.
118 LEErrorCode *success);
127 * @param success - set to an error code if the operation fails
134 LEErrorCode *success);
143 * @param success - set to an error code if the operation fails
150 LEErrorCode *success);
    [all...]
LayoutEngine.cpp 141 LEErrorCode &success)
145 if (LE_FAILURE(success)) {
151 success = LE_MEMORY_ALLOCATION_ERROR;
160 void LayoutEngine::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const
162 fGlyphStorage->getCharIndices(charIndices, indexBase, success);
165 void LayoutEngine::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const
167 fGlyphStorage->getCharIndices(charIndices, success);
171 void LayoutEngine::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const
173 fGlyphStorage->getGlyphs(glyphs, extraBits, success);
176 void LayoutEngine::getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) cons
    [all...]
ArabicLayoutEngine.h 44 * @param success - set to an error code if the operation fails
53 le_int32 typoFlags, const 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 - set to an error code if the operation fail
    [all...]
IndicLayoutEngine.cpp 28 le_int32 typoFlags, le_bool version2, const 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...]
ArabicLayoutEngine.cpp 37 le_int32 typoFlags, const GlyphSubstitutionTableHeader *gsubTable, LEErrorCode &success)
38 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, gsubTable, success)
45 le_int32 typoFlags, LEErrorCode &success)
46 : OpenTypeLayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success)
67 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success)
69 if (LE_FAILURE(success)) {
74 success = LE_ILLEGAL_ARGUMENT_ERROR;
81 success = LE_MEMORY_ALLOCATION_ERROR;
85 glyphStorage.allocateGlyphArray(count, rightToLeft, success);
86 glyphStorage.allocateAuxData(success);
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributens08.java 75 boolean success = false;
79 success = (ex.code == DOMException.NAMESPACE_ERR);
81 assertTrue("elementsetattributens08_Err1", success);
85 boolean success = false;
89 success = (ex.code == DOMException.NAMESPACE_ERR);
91 assertTrue("elementsetattributens08_Err2", success);
  /external/chromium/chrome/browser/automation/
testing_automation_provider_win.cc 23 bool* success) {
24 *success = false;
28 *success = true;
35 void TestingAutomationProvider::TerminateSession(int handle, bool* success) {
36 *success = false;
41 *success = (::PostMessageW(window, WM_ENDSESSION, 0, 0) == TRUE);
47 bool* success) {
48 *success = false;
51 *success = true;
60 bool* success) {
    [all...]
  /external/mesa3d/src/glsl/glcpp/tests/
067-nested-ifdef-ifndef.c 4 #define result success
27 #define result success
37 #define result success
030-define-chain-obj-to-func-compose.c 3 #define foo bar(baz(success))
031-define-chain-func-to-func-compose.c 3 #define foo() bar(baz(success))
056-macro-argument-with-comma.c 2 #define function(x) success
061-define-chain-obj-to-func-multi.c 1 #define foo(x) success
  /external/valgrind/main/memcheck/tests/
atomic_incs.c 46 unsigned long success;
55 : /*out*/"=b"(success)
59 } while (success != 1);
63 unsigned long success;
72 : /*out*/"=b"(success)
76 } while (success != 1);
110 unsigned long success;
119 : /*out*/"=b"(success)
123 } while (success != 1);
127 unsigned long success;
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
ends_with_statement_no_semicolon.js 2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }

Completed in 362 milliseconds

12 3 4 5 6 7 8 91011>>