/external/icu4c/layout/ |
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...] |
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);
|
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);
|
/external/chromium_org/chromeos/cryptohome/ |
cryptohome_util.cc | 38 bool success = false; local 40 InstallAttributesGet(name, &buf, &success); 41 if (success) { 47 return success; 53 bool success = false; local 55 InstallAttributesSet(name, buf, &success); 56 return success; 60 bool success = false; local 62 InstallAttributesFinalize(&success); 63 return success; [all...] |
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
net.js | 33 net.get = function(url, success) 35 $.get(url, success); 45 if (xhr.status == 200 && options.success) 46 options.success(xhr.responseText); 60 net.post = function(url, data, success) 66 success: success, 76 success: options.success, 88 success: function(jsonp) [all...] |
/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?
|
/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/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
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
AutoLoginProcessor.java | 17 * @param success Whether or not the authentication attempt was successful. 21 String accountName, String authToken, boolean success, String result);
|
/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);
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/ |
load_rules_delegate.h | 35 // The |success| parameter is true when the rules were loaded successfully. 37 bool success) = 0;
|