Home | History | Annotate | Download | only in common

Lines Matching refs:idx

640     int32_t idx = 0;
644 while (id[idx] && isNonDigit(id[idx]) && id[idx] != ',') {
645 idx++;
652 return (UBool)(id[idx] == 0
746 int32_t idx;
750 for (idx = 0; idx < (int32_t)sizeof(OFFSET_ZONE_MAPPINGS)/sizeof(OFFSET_ZONE_MAPPINGS[0]); idx++)
752 if (offset == OFFSET_ZONE_MAPPINGS[idx].offsetSeconds
753 && daylightType == OFFSET_ZONE_MAPPINGS[idx].daylightType
754 && strcmp(OFFSET_ZONE_MAPPINGS[idx].stdID, stdID) == 0
755 && strcmp(OFFSET_ZONE_MAPPINGS[idx].dstID, dstID) == 0)
757 return OFFSET_ZONE_MAPPINGS[idx].olsonID;