Lines Matching refs:idx
683 int32_t idx = 0;
687 while (id[idx] && isNonDigit(id[idx]) && id[idx] != ',') {
688 idx++;
695 return (UBool)(id[idx] == 0
809 int32_t idx;
813 for (idx = 0; idx < (int32_t)sizeof(OFFSET_ZONE_MAPPINGS)/sizeof(OFFSET_ZONE_MAPPINGS[0]); idx++)
815 if (offset == OFFSET_ZONE_MAPPINGS[idx].offsetSeconds
816 && daylightType == OFFSET_ZONE_MAPPINGS[idx].daylightType
817 && strcmp(OFFSET_ZONE_MAPPINGS[idx].stdID, stdID) == 0
818 && strcmp(OFFSET_ZONE_MAPPINGS[idx].dstID, dstID) == 0)
820 return OFFSET_ZONE_MAPPINGS[idx].olsonID;