Lines Matching refs:mapping
53 compareMapping(uint32_t codepoint, uint32_t* mapping, int32_t mapLength,
145 uint32_t mapping[40];
186 /* parse the mapping string */
187 length=u_parseCodePoints(map, mapping, sizeof(mapping)/4, pErrorCode);
189 /* store the mapping */
190 compareMapping(code,mapping, length,USPREP_MAP);
225 * Initial value stored in the mapping table
326 compareMapping(uint32_t codepoint, uint32_t* mapping,int32_t mapLength,
367 if(mapping[j] > 0xFFFF){
380 if(mapping[i] <= 0xFFFF){
381 if(mappingData[index+i] != (uint16_t)mapping[i]){
382 pTestIDNA->errln("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[i], mappingData[index+i]);
385 UChar lead = U16_LEAD(mapping[i]);
386 UChar trail = U16_TRAIL(mapping[i]);
394 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
395 pTestIDNA->errln("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[0],(codepoint-delta));