Searched refs:startA (Results 1 – 6 of 6) sorted by relevance
56 float startA = ((startInt >> 24) & 0xff) / 255.0f; in evaluate() local77 float a = startA + fraction * (endA - startA); in evaluate()
64 float startA = ((startInt >> 24) & 0xff) / 255.0f; in evaluate() local85 float a = startA + fraction * (endA - startA); in evaluate()
36 int startA = (start >> 24) & 0xff; in interpolateColor() local46 return (int)((startA + (int)(fraction * (endA - startA))) << 24) in interpolateColor()
292 int startA = (startInt >> 24) & 0xff; in evaluate() local302 return (int)((startA + (int)(fraction * (endA - startA))) << 24) | in evaluate()
311 int startA = (startInt >> 24) & 0xff; in evaluateColorChange() local322 return (int) ((startA + (int) (fraction * (endA - startA))) << 24) in evaluateColorChange()
817 startA(mSpannableStringBuilder, attributes); in handleStartTag()1167 private static void startA(Editable text, Attributes attributes) { in startA() method in HtmlToSpannedConverter