Home
last modified time | relevance | path

Searched refs:styleId (Results 1 - 3 of 3) sorted by relevance

/third_party/skia/modules/skparagraph/include/
H A DTextStyle.h338 void setStyleId(int styleId) { fStyleId = styleId; } in setStyleId() argument
/third_party/skia/modules/skparagraph/src/
H A DTextLine.cpp325 int styleId = roundRectAttrs[index].styleId; local
326 // index - 1 is previous index, -1 is the invalid styleId
327 int preStyleId = index == 0 ? -1 : roundRectAttrs[index - 1].styleId;
328 // runCount - 1 is the last run index, index + 1 is next run index, -1 is the invalid styleId
329 int nextStyleId = index == runCount - 1 ? -1 : roundRectAttrs[index + 1].styleId;
331 leftRound = (preIndex < 0 || index - preIndex > 1 || preStyleId != styleId);
334 nextStyleId != styleId);
H A DTextLine.h219 int styleId; member

Completed in 7 milliseconds