Lines Matching refs:filePath
3 PathFilePair IncludesCollection::split_path(const string& filePath) { in split_path() argument
6 string::size_type pos = filePath.rfind (sepU); in split_path()
7 string::size_type posW = filePath.rfind (sepW); in split_path()
10 string dirName = filePath.substr(0, pos); in split_path()
11 return PathFilePair(dirName, filePath.substr(pos + 1, filePath.length())); in split_path()
13 return PathFilePair(".", filePath); in split_path()
48 bool IncludesCollection::exists(string filePath) { in exists() argument
50 transform(filePath.begin(), filePath.end(), filePath.begin(), ::tolower); in exists()
52 PathFilePair dirFile = split_path(filePath); in exists()
80 int call_IncludesCollection_exists(IncludesCollection* m, const char * filePath) { in call_IncludesCollection_exists() argument
81 return m->exists(filePath); in call_IncludesCollection_exists()