Home | History | Annotate | Download | only in src

Lines Matching full:include_paths

1851 bool Parser::Parse(const char *source, const char **include_paths,
1853 return !DoParse(source, include_paths, source_filename).Check();
1856 CheckedError Parser::DoParse(const char *source, const char **include_paths,
1864 if (!include_paths) {
1866 include_paths = current_directory;
1896 // Look for the file in include_paths.
1898 for (auto paths = include_paths; paths && *paths; paths++) {
1912 ECHECK(DoParse(contents.c_str(), include_paths, filepath.c_str()));
1922 return DoParse(source, include_paths, source_filename);