HomeSort by relevance Sort by last modified time
    Searched refs:success (Results 51 - 75 of 2937) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu4c/layout/
GXLayoutEngine2.cpp 17 GXLayoutEngine2::GXLayoutEngine2(const LEFontInstance *fontInstance, le_int32 scriptCode, le_int32 languageCode, const MorphTableHeader2 *morphTable, le_int32 typoFlags, LEErrorCode &success)
18 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fMorphTable(morphTable)
29 le_int32 GXLayoutEngine2::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success)
31 if (LE_FAILURE(success)) {
36 success = LE_ILLEGAL_ARGUMENT_ERROR;
40 mapCharsToGlyphs(chars, offset, count, rightToLeft, rightToLeft, glyphStorage, success);
42 if (LE_FAILURE(success)) {
52 LEGlyphStorage &/*glyphStorage*/, LEErrorCode &success)
54 if (LE_FAILURE(success)) {
59 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...]
IndicRearrangementProcessor2.cpp 69 LEErrorCode success = LE_NO_ERROR; local
78 ia = glyphStorage.getCharIndex(firstGlyph, success);
83 ix = glyphStorage.getCharIndex(x, success);
84 glyphStorage.setCharIndex(x - 1, ix, success);
89 glyphStorage.setCharIndex(lastGlyph, ia, success);
94 id = glyphStorage.getCharIndex(lastGlyph, success);
99 ix = glyphStorage.getCharIndex(x, success);
100 glyphStorage.setCharIndex(x + 1, ix, success);
105 glyphStorage.setCharIndex(firstGlyph, id, success);
110 ia = glyphStorage.getCharIndex(firstGlyph, success);
    [all...]
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);
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);
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);
  /external/chromium_org/chrome/browser/chromeos/contacts/
fake_contact_database.h 23 void set_init_success(bool success) { init_success_ = success; }
24 void set_save_success(bool success) { save_success_ = success; }
25 void set_load_success(bool success) { load_success_ = success; }
55 // Should we report success in response to various requests?
  /external/chromium_org/chrome/browser/extensions/api/system_display/
system_display_api.cc 25 bool success) {
26 if (success) {
32 SendResponse(success);
56 bool success, const std::string& error) {
57 if (!success)
59 SendResponse(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);
  /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/chromium_org/chrome/browser/extensions/api/recovery_private/
recovery_private_api.h 21 void OnWriteStarted(bool success);
33 void OnWriteStarted(bool success);
45 void OnWriteCancelled(bool success);
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/chrome/browser/extensions/api/system_cpu/
system_cpu_api.h 20 void OnGetCpuInfoCompleted(bool success);
  /external/chromium_org/chrome/browser/extensions/api/system_memory/
system_memory_api.h 21 void OnGetMemoryInfoCompleted(bool success);

Completed in 155 milliseconds

1 23 4 5 6 7 8 91011>>