HomeSort by relevance Sort by last modified time
    Searched full:charstring (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/icu/icu4c/source/common/
charstr.h 41 class U_COMMON_API CharString : public UMemory {
43 CharString() : len(0) { buffer[0]=0; }
44 CharString(StringPiece s, UErrorCode &errorCode) : len(0) {
48 CharString(const CharString &s, UErrorCode &errorCode) : len(0) {
52 CharString(const char *s, int32_t sLength, UErrorCode &errorCode) : len(0) {
56 ~CharString() {}
60 * CharString does not support the standard copy constructor nor
64 CharString &copyFrom(const CharString &other, UErrorCode &errorCode)
    [all...]
charstr.cpp 25 CharString &CharString::copyFrom(const CharString &s, UErrorCode &errorCode) {
33 int32_t CharString::lastIndexOf(char c) const {
42 CharString &CharString::truncate(int32_t newLength) {
52 CharString &CharString::append(char c, UErrorCode &errorCode) {
60 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode)
    [all...]
bytestriebuilder.cpp 40 void setTo(StringPiece s, int32_t val, CharString &strings, UErrorCode &errorCode);
42 StringPiece getString(const CharString &strings) const {
54 int32_t getStringLength(const CharString &strings) const {
64 char charAt(int32_t index, const CharString &strings) const { return data(strings)[index]; }
68 int32_t compareStringTo(const BytesTrieElement &o, const CharString &strings) const;
71 const char *data(const CharString &strings) const {
92 CharString &strings, UErrorCode &errorCode) {
114 BytesTrieElement::compareStringTo(const BytesTrieElement &other, const CharString &strings) const {
135 strings=new CharString();
184 const CharString *strings=static_cast<const CharString *>(context)
    [all...]
cstr.cpp 33 // Note: can't just call u_UCharsToChars() or CharString.appendInvariantChars() on the
cstr.h 53 CharString s;
pluralmap.cpp 30 CharString cCategory;
bytestrieiterator.cpp 38 // via the CharString and UVector32 implementations, so this additional
40 str_=new CharString();
56 str_=new CharString();
  /external/pdfium/third_party/freetype/src/cff/
cf2intrp.c 130 /* consume the hintmask bytes from the charstring, advancing the src */
134 CF2_Buffer charstring,
155 /* set mask and advance interpreter's charstring pointer */
158 hintmask->mask[i] = (FT_Byte)cf2_buf_readByte( charstring );
200 /* Type2 charstring opcodes */
455 CF2_Buffer charstring = NULL; local
537 /* initialize subroutine stack by placing top level charstring as */
538 /* first element (max depth plus one for the charstring) */
539 /* Note: Caller owns and must finalize the first charstring. */
543 charstring = (CF2_Buffer)cf2_arrstack_getBuffer( &subrStack )
    [all...]
cf2ft.c 576 FT_Byte* charstring; local
600 &charstring,
607 FT_ASSERT( charstring + len >= charstring );
609 buf->start = charstring;
610 buf->end = charstring + len;
cffgload.c 224 /********** GENERIC CHARSTRING PARSING *********/
742 FT_Byte* charstring; local
823 &charstring, &charstring_len );
828 error = cff_decoder_parse_charstrings( decoder, charstring,
832 cff_free_glyph_data( face, &charstring, charstring_len );
853 &charstring, &charstring_len );
858 error = cff_decoder_parse_charstrings( decoder, charstring,
862 cff_free_glyph_data( face, &charstring, charstring_len );
894 /* charstring_base :: The base of the charstring stream. */
896 /* charstring_len :: The length in bytes of the charstring stream. *
2812 FT_Byte* charstring; local
    [all...]
cf2hints.h 54 * charstring are active at a given time. Hints in CFF must be declared
63 * A HintMask is built 0 or more times while interpreting a charstring, by
66 * the charstring. A default HintMask with all bits set is built if there
  /external/pdfium/third_party/freetype/src/cid/
cidgload.c 50 FT_Byte* charstring = NULL; local
83 (void)FT_ALLOC( charstring, glyph_length );
85 ft_memcpy( charstring, glyph_data.pointer + cid->fd_bytes,
100 /* and charstring offset from the CIDMap. */
125 if ( FT_ALLOC( charstring, glyph_length ) )
128 charstring, glyph_length ) )
151 /* Decode the charstring. */
158 psaux->t1_decrypt( charstring, glyph_length, 4330 );
161 decoder, charstring + cs_offset,
165 FT_FREE( charstring );
    [all...]
  /external/icu/icu4c/source/i18n/
fmtableimp.h 22 //CharString stackDecimalStr; // 64
  /external/freetype/src/cff/
cf2intrp.c 132 /* consume the hintmask bytes from the charstring, advancing the src */
136 CF2_Buffer charstring,
157 /* set mask and advance interpreter's charstring pointer */
160 hintmask->mask[i] = (FT_Byte)cf2_buf_readByte( charstring );
202 /* Type2 charstring opcodes */
499 CF2_Buffer charstring = NULL; local
588 /* initialize subroutine stack by placing top level charstring as */
589 /* first element (max depth plus one for the charstring) */
590 /* Note: Caller owns and must finalize the first charstring. */
594 charstring = (CF2_Buffer)cf2_arrstack_getBuffer( &subrStack )
    [all...]
cf2font.h 80 CFF_BlendRec blend; /* cached charstring blend vector */
119 CF2_Buffer charstring,
cffgload.c 224 /********** GENERIC CHARSTRING PARSING *********/
742 FT_Byte* charstring; local
823 &charstring, &charstring_len );
828 error = cff_decoder_parse_charstrings( decoder, charstring,
832 cff_free_glyph_data( face, &charstring, charstring_len );
853 &charstring, &charstring_len );
858 error = cff_decoder_parse_charstrings( decoder, charstring,
862 cff_free_glyph_data( face, &charstring, charstring_len );
894 /* charstring_base :: The base of the charstring stream. */
896 /* charstring_len :: The length in bytes of the charstring stream. *
2938 FT_Byte* charstring; local
    [all...]
cf2ft.c 621 FT_Byte* charstring; local
645 &charstring,
652 FT_ASSERT( charstring + len >= charstring );
654 buf->start = charstring;
655 buf->end = charstring + len;
cf2hints.h 54 * charstring are active at a given time. Hints in CFF must be declared
63 * A HintMask is built 0 or more times while interpreting a charstring, by
66 * the charstring. A default HintMask with all bits set is built if there
cf2intrp.h 68 CF2_Buffer charstring,
  /external/fonttools/Lib/fontTools/misc/
eexec.py 2 charstring encryption algorithm as used by PostScript Type 1 fonts.
  /external/fonttools/Lib/fontTools/
t1Lib.py 91 for glyphName, charString in charStrings.items():
92 charString, R = eexec.decrypt(charString, 4330)
93 charStrings[glyphName] = psCharStrings.T1CharString(charString[lenIV:],
96 charString, R = eexec.decrypt(subrs[i], 4330)
97 subrs[i] = psCharStrings.T1CharString(charString[lenIV:], subrs=subrs)
cffLib.py 391 xmlWriter.begintag("CharString", index=i, raw=1)
393 xmlWriter.begintag("CharString", index=i)
396 xmlWriter.endtag("CharString")
400 if name != "CharString":
532 charString = self.charStrings[name]
534 charString = self.charStringsIndex[charString]
535 return charString
537 def __setitem__(self, name, charString):
540 self.charStringsIndex[index] = charString
    [all...]
  /external/icu/icu4c/source/test/intltest/
strtest.cpp 484 "This is a long string that is meant to cause reallocation of the internal buffer of CharString.";
485 CharString chStr(longStr, errorCode);
487 errln("CharString(longStr) failed.");
489 CharString test("Test", errorCode);
490 CharString copy(test,errorCode);
493 errln("CharString.copyFrom() failed.");
503 errln("CharString(longStr).append(substring of self).append(self) failed.");
507 errln("CharString.clear().append(abc).append(defghij, 3) failed.");
510 "This is a long string that is meant to cause reallocation of the internal buffer of CharString."),
515 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
  /external/pdfium/third_party/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

Completed in 2244 milliseconds

1 2 3 4 5