Lines Matching refs:frontEnd
52 WCHAR * path, WCHAR const * frontBegin, WCHAR const * frontEnd, in buildPath() argument
62 if (frontEnd - frontBegin < 2 || frontEnd[-1] != L'\\' || in buildPath()
63 frontEnd[-2] == L'\\' || frontEnd[-2] == L':' || in buildPath()
64 (frontEnd[-2] == L'.' && in buildPath()
65 (frontEnd - frontBegin < 3 || frontEnd[-3] == L'\\' || in buildPath()
66 (frontEnd[-3] == L'.' && in buildPath()
67 (frontEnd - frontBegin < 4 || frontEnd[-4] == L'\\'))))) in buildPath()
71 WCHAR const * p = frontEnd - 1; in buildPath()
78 frontEnd = p; in buildPath()
88 static_cast< std::size_t >(MAX_PATH - (frontEnd - frontBegin))) in buildPath()
93 p = const_cast< WCHAR * >(frontEnd); in buildPath()
96 while (frontBegin != frontEnd) { in buildPath()