Home
last modified time | relevance | path

Searched refs:string_count (Results 1 – 3 of 3) sorted by relevance

/external/freetype/src/base/
Dftmac.c440 unsigned short string_count; in parse_fond() local
449 string_count = EndianS16_BtoN( *(short*)(p) ); in parse_fond()
450 string_count = FT_MIN( 64, string_count ); in parse_fond()
453 for ( i = 0; i < string_count; i++ ) in parse_fond()
470 style->indexes[face_index] <= string_count ) in parse_fond()
481 if ( j < string_count && ( s = names[j] ) != NULL ) in parse_fond()
/external/freetype/builds/mac/
Dftmac.c773 unsigned short string_count; in parse_fond() local
782 string_count = EndianS16_BtoN( *(short*)(p) ); in parse_fond()
785 for ( i = 0; i < string_count && i < 64; i++ ) in parse_fond()
802 style->indexes[face_index] <= FT_MIN( string_count, 64 ) ) in parse_fond()
813 if ( j < string_count && ( s = names[j] ) != NULL ) in parse_fond()
/external/python/cpython2/Objects/
Dstringobject.c2120 string_count(PyStringObject *self, PyObject *args) in string_count() function
3653 {"count", (PyCFunction)string_count, METH_VARARGS, count__doc__},