Home | History | Annotate | Download | only in Serialization

Lines Matching refs:Range

1198     Error("source location entry ID out-of-range for AST file");
1328 Error("source location entry ID out-of-range for AST file");
2179 // All user input files reside at the index range [0, NumUserInputs), and
2803 // Make our entry in the range map. BaseID is negative and growing, so
2805 // the range.
2839 // Continuous range maps we may be updating in our module.
4874 SourceRange Range(ReadSourceLocation(M, PPOffs.Begin),
4898 ME = new (PPRec) MacroExpansion(Name, Range);
4900 ME = new (PPRec) MacroExpansion(Def, Range);
4909 MacroDefinitionRecord *MD = new (PPRec) MacroDefinitionRecord(II, Range);
4932 Range);
5041 /// preprocessed entities that \arg Range encompasses.
5043 ASTReader::findPreprocessedEntitiesInRange(SourceRange Range) {
5044 if (Range.isInvalid())
5046 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
5049 findPreprocessedEntity(Range.getBegin(), false);
5050 PreprocessedEntityID EndID = findPreprocessedEntity(Range.getEnd(), true);
5816 SourceRange range;
5817 range.setBegin(ReadSourceLocation(Record, Idx));
5818 range.setEnd(ReadSourceLocation(Record, Idx));
5819 TL.setAttrOperandParensRange(range);
6108 assert(Index < TypesLoaded.size() && "Type index out-of-range");
6371 Error("declaration ID out-of-range for AST file");
6446 assert(0 && "declaration ID out-of-range for AST file");
6447 Error("declaration ID out-of-range for AST file");
6461 assert(0 && "declaration ID out-of-range for AST file");
6462 Error("declaration ID out-of-range for AST file");
7351 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
7513 Error("submodule ID out of range in AST file");
7578 Error("selector ID out of range in AST file");
7876 SourceRange Range = ReadSourceRange(F, Record, Idx);
7878 CXXBaseSpecifier Result(Range, isVirtual, isBaseOfClass, AS, TInfo,
8035 SourceRange Range = ReadSourceRange(F, Record, Idx);
8036 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
8042 SourceRange Range = ReadSourceRange(F, Record, Idx);
8043 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
8049 SourceRange Range = ReadSourceRange(F, Record, Idx);
8050 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
8077 SourceRange Range = ReadSourceRange(F, Record, Idx);
8078 Builder.MakeSuper(Context, RD, Range.getBegin(), Range.getEnd());
8437 // PendingOdrMergeChecks. Don't turn this into a range-based for loop!