Lines Matching refs:form

32 static const UNormalizer2 *intl_get_normalizer(zend_long form, UErrorCode *err)  in intl_get_normalizer()  argument
34 switch (form) in intl_get_normalizer()
57 static int32_t intl_normalize(zend_long form, const UChar *src, int32_t src_len, UChar *dst, int32_… in intl_normalize() argument
59 const UNormalizer2 *norm = intl_get_normalizer(form, err); in intl_normalize()
67 static UBool intl_is_normalized(zend_long form, const UChar *uinput, int32_t uinput_len, UErrorCode… in intl_is_normalized() argument
69 const UNormalizer2 *norm = intl_get_normalizer(form, err); in intl_is_normalized()
84 zend_long form = NORMALIZER_DEFAULT; in PHP_FUNCTION() local
103 &input, &input_len, &form ) == FAILURE ) in PHP_FUNCTION()
110 switch(form) { in PHP_FUNCTION()
155 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION()
157 size_needed = intl_normalize(form, uinput, uinput_len, uret_buf, uret_len, &status); in PHP_FUNCTION()
182 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION()
184 size_needed = intl_normalize(form, uinput, uinput_len, uret_buf, uret_len, &status); in PHP_FUNCTION()
222 zend_long form = NORMALIZER_DEFAULT; in PHP_FUNCTION() local
235 &input, &input_len, &form) == FAILURE ) in PHP_FUNCTION()
240 switch(form) { in PHP_FUNCTION()
278 …uret = unorm_isNormalizedWithOptions( uinput, uinput_len, form, (int32_t) 0 /* options */, &status… in PHP_FUNCTION()
280 uret = intl_is_normalized(form, uinput, uinput_len, &status); in PHP_FUNCTION()
314 zend_long form = NORMALIZER_DEFAULT; in PHP_FUNCTION() local
318 if ((zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &input, &input_length, &form) == FAILURE)) { in PHP_FUNCTION()
322 norm = intl_get_normalizer(form, &status); in PHP_FUNCTION()