Home | History | Annotate | Download | only in toolutil

Lines Matching refs:fileName

132 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){
137 if(conv==NULL || cp==NULL || fileName==NULL){
142 in= T_FileStream_open(fileName,"rb");
449 ucbuf_open(const char* fileName,const char** cp,UBool showWarning, UBool buffered, UErrorCode* error){
457 if(cp==NULL || fileName==NULL){
461 if (!uprv_strcmp(fileName, "-")) {
464 in = T_FileStream_open(fileName, "rb");
639 ucbuf_resolveFileName(const char* inputDir, const char* fileName, char* target, int32_t* len, UErrorCode* status){
647 if(inputDir == NULL || fileName == NULL || len==NULL || (target==NULL && *len>0)){
654 filelen = (int32_t)uprv_strlen(fileName);
666 * filename is not file seperation char and the last char input directory is not '.'.
675 if( (fileName[0] != U_FILE_SEP_CHAR) && (inputDir[dirlen-1] !='.')){
691 uprv_strcat(target, fileName);