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

12 3 4 5 6 7 8 91011>>

  /external/icu4c/layout/
LayoutEngine.h 133 * @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...]
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 46 * @param success - output parameter set to an error code if the operation fails
57 LEErrorCode *success);
81 * @param success - output parameter set to an error code if the operation fails
103 LEErrorCode *success);
111 * @param success - output parameter set to an error code if the operation fails.
119 LEErrorCode *success);
128 * @param success - set to an error code if the operation fails
135 LEErrorCode *success);
144 * @param success - set to an error code if the operation fails
151 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...]
ExtensionSubtables.cpp 27 GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode& success) const
29 if (LE_FAILURE(success)) {
39 return lookupProcessor->applySubtable(subtable, elt, glyphIterator, fontInstance, success);
GXLayoutEngine.h 45 * @param success - set to an error code if the operation fails
52 GXLayoutEngine(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, const MorphTableHeader *morphTable, LEErrorCode &success);
98 * @param success - set to an error code if the operation fails
105 LEGlyphStorage &glyphStorage, LEErrorCode &success);
115 * @param success - set to an error code if the operation fails
120 LEGlyphStorage &glyphStorage, LEErrorCode &success);
HangulLayoutEngine.h 49 * @param success - set to an error code if the operation fails
58 le_int32 typoFlags, const 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 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);
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 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);
  /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);
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/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...]
testing_automation_provider_gtk.cc 21 bool* success) {
22 *success = false;
26 void TestingAutomationProvider::TerminateSession(int handle, bool* success) {
27 *success = false;
35 bool* success,
37 *success = false;
45 *success = true;
70 bool* success) {
71 *success = false;
76 *success = true
    [all...]
  /frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp 51 EGLBoolean success = eglTerminate(mEglDisplay); local
52 ASSERT_EQ(EGL_TRUE, success);
61 EGLBoolean success; local
68 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
69 ASSERT_EQ(EGL_TRUE, success);
75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
76 ASSERT_EQ(EGL_TRUE, success);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
79 ASSERT_EQ(EGL_TRUE, success);
81 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2])
123 EGLBoolean success; local
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
ends_with_statement_no_semicolon.js 2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
  /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...]

Completed in 513 milliseconds

12 3 4 5 6 7 8 91011>>