Lines Matching refs:full
1028 FcChar8 *full;
1033 full = (FcChar8 *) malloc (size + 1);
1034 if (!full)
1036 strcpy ((char *) full, (char *) home);
1037 strcat ((char *) full, (char *) s + 1);
1038 new = FcStrCanonFilename (full);
1039 free (full);
1213 FcChar8 full[FC_MAX_FILE_LEN + 2];
1214 int size = GetFullPathName ((LPCSTR) s, sizeof (full) -1,
1215 (LPSTR) full, NULL);
1220 FcConvertDosPath ((char *) full);
1221 return FcStrCanonAbsoluteFilename (full);
1227 FcChar8 *full;
1233 full = FcStrBuildFilename (cwd, s, NULL);
1234 file = FcStrCanonAbsoluteFilename (full);
1235 FcStrFree (full);