Lines Matching refs:id

64 	UnicodeString id = UnicodeString();  in PHP_FUNCTION()  local
65 if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) { in PHP_FUNCTION()
72 TimeZone *tz = TimeZone::createTimeZone(id); in PHP_FUNCTION()
224 UnicodeString id = UnicodeString(); in PHP_FUNCTION() local
225 if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) { in PHP_FUNCTION()
231 int32_t result = TimeZone::countEquivalentIDs(id); in PHP_FUNCTION()
296 UnicodeString id; in PHP_FUNCTION() local
297 if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) { in PHP_FUNCTION()
305 TimeZone::getCanonicalID(id, result, isSystemID, status); in PHP_FUNCTION()
335 UnicodeString id; in PHP_FUNCTION() local
336 if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) { in PHP_FUNCTION()
342 int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status); in PHP_FUNCTION()
382 UnicodeString id; in PHP_FUNCTION() local
383 if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) { in PHP_FUNCTION()
389 const UnicodeString result = TimeZone::getEquivalentID(id, (int32_t)index); in PHP_FUNCTION()
653 zend_string *id, *winID; in PHP_FUNCTION() local
657 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &id) == FAILURE) { in PHP_FUNCTION()
662 if (intl_stringFromChar(uID, id->val, id->len, &error) == FAILURE) { in PHP_FUNCTION()
691 zend_string *winID, *region = NULL, *id; in PHP_FUNCTION() local
716 id = intl_convert_utf16_to_utf8(uID.getBuffer(), uID.length(), &error); in PHP_FUNCTION()
718 RETURN_STR(id); in PHP_FUNCTION()