/external/icu4c/common/ |
charstr.h | 39 class U_COMMON_API CharString : public UMemory { 41 CharString() : len(0) { buffer[0]=0; } 42 CharString(const StringPiece &s, UErrorCode &errorCode) : len(0) { 46 CharString(const CharString &s, UErrorCode &errorCode) : len(0) { 50 CharString(const char *s, int32_t sLength, UErrorCode &errorCode) : len(0) { 54 ~CharString() {} 58 * CharString does not support the standard copy constructor nor 62 CharString ©From(const CharString &other, UErrorCode &errorCode) [all...] |
charstr.cpp | 22 CharString &CharString::copyFrom(const CharString &s, UErrorCode &errorCode) { 30 CharString &CharString::truncate(int32_t newLength) { 40 CharString &CharString::append(char c, UErrorCode &errorCode) { 48 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) { 73 return append(CharString(s, sLength, errorCode), errorCode) [all...] |
udata.cpp | 403 CharString itemPath; /* path passed in with item name */ 404 CharString pathBuffer; /* output path for this it'ion */ 405 CharString packageStub; /* example: "/icudt28b". Will ignore that leaf in set paths. */ [all...] |
locutil.cpp | 228 CharString cbundleID;
|
resbund.cpp | 38 * Fixed usage of CharString.
|
/external/icu4c/test/intltest/ |
strtest.cpp | 511 "This is a long string that is meant to cause reallocation of the internal buffer of CharString."; 512 CharString chStr(longStr, errorCode); 514 errln("CharString(longStr) failed."); 516 CharString test("Test", errorCode); 517 CharString copy(test,errorCode); 520 errln("CharString.copyFrom() failed."); 530 errln("CharString(longStr).append(substring of self).append(self) failed."); 534 errln("CharString.clear().append(abc).append(defghij, 3) failed."); 537 "This is a long string that is meant to cause reallocation of the internal buffer of CharString."), 542 errln("CharString.appendInvariantChars(longStr) failed.") [all...] |
/external/freetype/include/freetype/internal/ |
pshints.h | 92 * - For each hint found in the glyph charstring, call the corresponding 379 * - For each hint found in the glyph charstring, call the corresponding 496 * If the hintmask starts the charstring (before any glyph point 503 * The `bytes' array can come directly from the Type 2 charstring and 538 * If the hintmask starts the charstring (before any glyph point 545 * The `bytes' array can come directly from the Type 2 charstring and
|
psaux.h | 500 /* an enumeration type to handle charstring parsing states */ 546 /* parse_state :: An enumeration which controls the charstring */ 609 /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */ [all...] |
/external/icu4c/tools/genren/ |
genren.pl | 159 ## icu_2_0::CharString::~CharString(void) -> CharString
|
/external/freetype/src/cff/ |
cffgload.c | 218 /********** GENERIC CHARSTRING PARSING *********/ 723 FT_Byte* charstring; local 804 &charstring, &charstring_len ); 809 error = cff_decoder_parse_charstrings( decoder, charstring, 813 cff_free_glyph_data( face, &charstring, charstring_len ); 834 &charstring, &charstring_len ); 839 error = cff_decoder_parse_charstrings( decoder, charstring, 843 cff_free_glyph_data( face, &charstring, charstring_len ); 875 /* charstring_base :: The base of the charstring stream. */ 877 /* charstring_len :: The length in bytes of the charstring stream. * 2741 FT_Byte* charstring; local [all...] |
cffgload.h | 109 /* execution context charstring zone */
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/ |
Header.java | 151 String charString = ((ContentTypeField) getField(Field.CONTENT_TYPE)).getCharset();
153 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out, CharsetUtil.getCharset(charString)),8192);
|
Multipart.java | 200 String charString = ((ContentTypeField) e.getHeader().getField(Field.CONTENT_TYPE)).getCharset();
201 return charString;
|
/external/icu4c/i18n/ |
digitlst.h | 53 class CharString; 208 void getDecimal(CharString &str, UErrorCode &status);
|
fmtable.cpp | 261 fDecimalStr = new CharString(*source.fDecimalStr, status); 710 fDecimalStr = new CharString; 756 // CharString automatically adds the nul. 762 dnum->set(CharString(numberString, status).toStringPiece(), status);
|
fmtable.cpp.noOrig | 261 fDecimalStr = new CharString(*source.fDecimalStr, status); 710 fDecimalStr = new CharString; 756 // CharString automatically adds the nul. 762 dnum->set(CharString(numberString, status).toStringPiece(), status);
|
transreg.cpp | 260 int32_t num = uscript_getCode(CharString().appendInvariantChars(theSpec, status).data(), [all...] |
rbt_set.cpp | 122 CharString cbuf(esc);
|
/external/freetype/include/freetype/ |
ftincrem.h | 150 * *unencrypted* charstring bytes, without any `lenIV' header. It is
|
/external/icu4c/tools/gennorm2/ |
gennorm2.cpp | 155 CharString filename(options[SOURCEDIR].value, errorCode);
|
/external/webkit/Source/WebCore/platform/win/ |
ClipboardUtilitiesWin.cpp | 700 CString charString = dataStrings.first().utf8(); 701 size_t stringLength = charString.length(); 706 memcpy(buffer, charString.data(), stringLength);
|
/external/freetype/src/psaux/ |
t1decode.c | 347 /* charstring_base :: The base address of the charstring stream. */ 349 /* charstring_len :: The length in bytes of the charstring stream. */ 406 "Start charstring\n" )); [all...] |
/external/icu4c/i18n/unicode/ |
fmtable.h | 31 class CharString; 639 CharString *fDecimalStr;
|
/external/freetype/include/freetype/config/ |
ftoption.h | [all...] |
/external/freetype/src/pshinter/ |
pshrec.c | 829 FT_TRACE0(( "ps_hints_open: invalid charstring type\n" ));
|