Home | History | Annotate | Download | only in compile

Lines Matching refs:yDivs

44         delete[] yDivs;
48 void* serialized = android::Res_png_9patch::serialize(info9Patch, xDivs, yDivs,
61 int32_t* yDivs = nullptr;
950 int32_t* yDivs = image->yDivs = new int32_t[H];
962 memset(yDivs, -1, maxSizeYDivs);
1001 if (!getVerticalTicks(image->rows.data(), 0, H, transparent, true, &yDivs[0], &yDivs[1],
1003 errorPixel = yDivs[0];
1061 image->info9Patch.paddingTop = yDivs[0];
1062 image->info9Patch.paddingBottom = H - 2 - yDivs[1];
1071 yDivs[0], yDivs[1]);
1099 if (yDivs[0] == 0) { // Row 1 is strechable
1102 if (yDivs[numYDivs - 1] == H) {
1123 // being either yDivs[1] (if yDivs[0]=0) of yDivs[0]. In the former case
1126 // being either yDivs[numYDivs-2] (if yDivs[numYDivs-1]=bitmap.height) or
1127 // yDivs[numYDivs-1]. In the former case the last row is stretchable along
1138 for (j = (yDivs[0] == 0 ? 1 : 0); j <= numYDivs && top < H; j++) {
1142 bottom = yDivs[j];