Lines Matching defs:End
118 InputArgList *Args = getOpts().ParseArgs(ArgStrings.begin(), ArgStrings.end(),
446 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
462 ie = Inputs.end();
619 FailingCommands.begin(), ie = FailingCommands.end(); it != ie; ++it) {
746 ie = TC.getProgramPaths().end(); it != ie; ++it) {
757 ie = TC.getFilePaths().end(); it != ie; ++it) {
789 for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end();
798 for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end();
837 for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) {
857 ie = C.getActions().end(); it != ie; ++it)
869 for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it)
937 Actions.append(Inputs.begin(), Inputs.end());
950 // will be removed at the end of the compilation process.
1255 i = PL.begin(), e = PL.end(); i != e; ++i) {
1776 std::string::size_type End = std::string::npos;
1778 End = BaseName.rfind('.');
1779 SmallString<128> Suffixed(BaseName.substr(0, End));
1842 ie = PrefixDirs.end(); it != ie; ++it) {
1861 it = List.begin(), ie = List.end(); it != ie; ++it) {
2157 char *End;
2158 Major = (unsigned) strtol(Str, &End, 10);
2159 if (*Str != '\0' && *End == '\0')
2161 if (*End != '.')
2164 Str = End+1;
2165 Minor = (unsigned) strtol(Str, &End, 10);
2166 if (*Str != '\0' && *End == '\0')
2168 if (*End != '.')
2171 Str = End+1;
2172 Micro = (unsigned) strtol(Str, &End, 10);
2173 if (*Str != '\0' && *End == '\0')
2175 if (Str == End)