Home | History | Annotate | Download | only in toolutil

Lines Matching refs:fileName

131 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){
136 if(conv==NULL || cp==NULL || fileName==NULL){
141 in= T_FileStream_open(fileName,"rb");
448 ucbuf_open(const char* fileName,const char** cp,UBool showWarning, UBool buffered, UErrorCode* error){
456 if(cp==NULL || fileName==NULL){
460 if (!uprv_strcmp(fileName, "-")) {
463 in = T_FileStream_open(fileName, "rb");
638 ucbuf_resolveFileName(const char* inputDir, const char* fileName, char* target, int32_t* len, UErrorCode* status){
646 if(inputDir == NULL || fileName == NULL || len==NULL || (target==NULL && *len>0)){
653 filelen = (int32_t)uprv_strlen(fileName);
665 * filename is not file seperation char and the last char input directory is not '.'.
674 if( (fileName[0] != U_FILE_SEP_CHAR) && (inputDir[dirlen-1] !='.')){
690 uprv_strcat(target, fileName);