Searched refs:escapementArray (Results 1 - 7 of 7) sorted by relevance

/haiku/headers/private/interface/
H A Dtruncate_string.h11 const float* escapementArray, float fontSize, float ellipsisWidth,
/haiku/headers/os/interface/
H A DFont.h239 float escapementArray[]) const;
242 float escapementArray[]) const;
245 BPoint escapementArray[]) const;
248 BPoint escapementArray[],
/haiku/src/apps/fontdemo/
H A DFontDemoView.cpp84 float escapementArray[size]; local
94 fFont.GetEscapements(fString.String(), size, /*escapeDeltas,*/ escapementArray);
154 xCoord += (escapementArray[i] /*+ escapeDeltas[i].nonspace + escapeDeltas[i].space*/)
/haiku/src/kits/interface/
H A DFont.cpp975 float* escapementArray = new float[numChars]; local
976 GetEscapements(stringArray[i], numChars, NULL, escapementArray);
978 truncate_string(resultArray[i], mode, width, escapementArray,
981 delete[] escapementArray;
1065 float escapementArray[]) const
1067 GetEscapements(charArray, numChars, NULL, escapementArray);
1073 escapement_delta* delta, float escapementArray[]) const
1075 if (charArray == NULL || numChars < 1 || escapementArray == NULL)
1100 link.Read(escapementArray, numChars * sizeof(float));
1106 escapement_delta* delta, BPoint escapementArray[]) cons
1113 GetEscapements(const char charArray[], int32 numChars, escapement_delta* delta, BPoint escapementArray[], BPoint offsetArray[]) const argument
[all...]
H A DInterfaceDefs.cpp1781 const float* escapementArray, float fontSize, float ellipsisWidth,
1793 float charWidth = escapementArray[i] * fontSize;
1806 totalWidth -= escapementArray[i] * fontSize;
1824 float charWidth = escapementArray[i] * fontSize;
1837 totalWidth -= escapementArray[i] * fontSize;
1862 = escapementArray[left ? leftIndex : rightIndex] * fontSize;
1879 leftWidth -= escapementArray[--leftIndex]
1883 rightWidth -= escapementArray[++rightIndex]
1780 truncate_string(BString& string, uint32 mode, float width, const float* escapementArray, float fontSize, float ellipsisWidth, int32 charCount) argument
/haiku/src/servers/app/
H A DServerFont.cpp851 escapement_delta delta, BPoint escapementArray[],
855 || escapementArray == NULL) {
859 BPointEscapementConsumer consumer(escapementArray, offsetArray, fSize);
1178 float* escapementArray = new (std::nothrow) float[numChars]; local
1179 if (escapementArray == NULL)
1184 escapementArray) == B_OK) {
1185 truncate_string(*inOut, mode, width, escapementArray, fSize,
1189 delete[] escapementArray;
850 GetEscapements(const char* string, int32 numBytes, int32 numChars, escapement_delta delta, BPoint escapementArray[], BPoint offsetArray[]) const argument
H A DServerFont.h135 BPoint escapementArray[],

Completed in 133 milliseconds