| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,8 @@ | |||
| 1 | + Small ICU sources - auto generated by shrink-icu-src.py | ||
| 2 | + | ||
| 3 | + This directory contains the ICU subset used by --with-intl=small-icu (the default) | ||
| 4 | + It is a strict subset of ICU 57 source files with the following exception(s): | ||
| 5 | + * deps/icu-small/source/data/in/icudt57l.dat : Reduced-size data file | ||
| 6 | + | ||
| 7 | + | ||
| 8 | + To rebuild this directory, see ../../tools/icu/README.md | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,18 @@ | |||
| 1 | + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | ||
| 2 | + "http://www.w3.org/TR/html4/loose.dtd"> | ||
| 3 | + <html> | ||
| 4 | + <head> | ||
| 5 | + <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | ||
| 6 | + <title>ICU License - moved to LICENSE</title> | ||
| 7 | + </head> | ||
| 8 | + | ||
| 9 | + <body BGCOLOR="#ffffff"> | ||
| 10 | + <p> | ||
| 11 | + The ICU license is now in plain text format, see <a href="./LICENSE">LICENSE</a>. | ||
| 12 | + Update links and software appropriately. | ||
| 13 | + </p> | ||
| 14 | + | ||
| 15 | + <i>Copyright (c) 1995-2016 International Business Machines Corporation and others</i> | ||
| 16 | + | ||
| 17 | + </body> | ||
| 18 | + </html> | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,72 @@ | |||
| 1 | + /* | ||
| 2 | + ******************************************************************************* | ||
| 3 | + * Copyright (C) 2011-2012, International Business Machines | ||
| 4 | + * Corporation and others. All Rights Reserved. | ||
| 5 | + ******************************************************************************* | ||
| 6 | + * file name: appendable.cpp | ||
| 7 | + * encoding: US-ASCII | ||
| 8 | + * tab size: 8 (not used) | ||
| 9 | + * indentation:4 | ||
| 10 | + * | ||
| 11 | + * created on: 2010dec07 | ||
| 12 | + * created by: Markus W. Scherer | ||
| 13 | + */ | ||
| 14 | + | ||
| 15 | + #include "unicode/utypes.h" | ||
| 16 | + #include "unicode/appendable.h" | ||
| 17 | + #include "unicode/utf16.h" | ||
| 18 | + | ||
| 19 | + U_NAMESPACE_BEGIN | ||
| 20 | + | ||
| 21 | + Appendable::~Appendable() {} | ||
| 22 | + | ||
| 23 | + UBool | ||
| 24 | + Appendable::appendCodePoint(UChar32 c) { | ||
| 25 | + if(c<=0xffff) { | ||
| 26 | + return appendCodeUnit((UChar)c); | ||
| 27 | + } else { | ||
| 28 | + return appendCodeUnit(U16_LEAD(c)) && appendCodeUnit(U16_TRAIL(c)); | ||
| 29 | + } | ||
| 30 | + } | ||
| 31 | + | ||
| 32 | + UBool | ||
| 33 | + Appendable::appendString(const UChar *s, int32_t length) { | ||
| 34 | + if(length<0) { | ||
| 35 | + UChar c; | ||
| 36 | + while((c=*s++)!=0) { | ||
| 37 | + if(!appendCodeUnit(c)) { | ||
| 38 | + return FALSE; | ||
| 39 | + } | ||
| 40 | + } | ||
| 41 | + } else if(length>0) { | ||
| 42 | + const UChar *limit=s+length; | ||
| 43 | + do { | ||
| 44 | + if(!appendCodeUnit(*s++)) { | ||
| 45 | + return FALSE; | ||
| 46 | + } | ||
| 47 | + } while(s<limit); | ||
| 48 | + } | ||
| 49 | + return TRUE; | ||
| 50 | + } | ||
| 51 | + | ||
| 52 | + UBool | ||
| 53 | + Appendable::reserveAppendCapacity(int32_t /*appendCapacity*/) { | ||
| 54 | + return TRUE; | ||
| 55 | + } | ||
| 56 | + | ||
| 57 | + UChar * | ||
| 58 | + Appendable::getAppendBuffer(int32_t minCapacity, | ||
| 59 | + int32_t /*desiredCapacityHint*/, | ||
| 60 | + UChar *scratch, int32_t scratchCapacity, | ||
| 61 | + int32_t *resultCapacity) { | ||
| 62 | + if(minCapacity<1 || scratchCapacity<minCapacity) { | ||
| 63 | + *resultCapacity=0; | ||
| 64 | + return NULL; | ||
| 65 | + } | ||
| 66 | + *resultCapacity=scratchCapacity; | ||
| 67 | + return scratch; | ||
| 68 | + } | ||
| 69 | + | ||
| 70 | + // UnicodeStringAppendable is implemented in unistr.cpp. | ||
| 71 | + | ||
| 72 | + U_NAMESPACE_END | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments