Lines Matching refs:path
105 void writeBinaryData(const char *path, UBool withCopyright, UErrorCode &errorCode) override;
113 void parsePropsOfStringsFile(const char *path, UErrorCode &errorCode);
290 CharString path(unidataPath, errorCode);
291 path.ensureEndsWithFileSeparator(errorCode);
293 int32_t pathLength = path.length();
294 path.append("emoji-sequences.txt", errorCode);
295 parsePropsOfStringsFile(path.data(), errorCode);
297 path.truncate(pathLength);
298 path.append("emoji-zwj-sequences.txt", errorCode);
299 parsePropsOfStringsFile(path.data(), errorCode);
312 EmojiPropsBuilder::parsePropsOfStringsFile(const char *path, UErrorCode &errorCode) {
315 u_parseDelimitedFile(path, ';', fields, 3, parsePropsOfStringsLineFn, this, &errorCode);
509 EmojiPropsBuilder::writeBinaryData(const char *path, UBool withCopyright, UErrorCode &errorCode) {
512 UNewDataMemory *pData = udata_create(path, "icu", "uemoji", &dataInfo,
516 path, u_errorName(errorCode));