Home
last modified time | relevance | path

Searched refs:getFromRawEncoding (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceLocation.h154 static SourceLocation getFromRawEncoding(UIntTy Encoding) {
174 return getFromRawEncoding((SourceLocation::UIntTy)(uintptr_t)Encoding);
493 return clang::SourceLocation::getFromRawEncoding(~Zero);
498 return clang::SourceLocation::getFromRawEncoding(~Zero - 1);
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTBitCodes.h192 return SourceLocation::getFromRawEncoding(Begin); in getBegin()
196 return SourceLocation::getFromRawEncoding(End); in getEnd()
212 return SourceLocation::getFromRawEncoding(Begin); in getBegin()
215 return SourceLocation::getFromRawEncoding(End); in getEnd()
260 return SourceLocation::getFromRawEncoding(Loc); in getLocation()
H A DASTWriter.h373 return SourceLocation::getFromRawEncoding(Loc); in getLoc()
H A DASTReader.h2137 return Sema::AlignPackInfo::getFromRawEncoding(Raw); in ReadAlignPackInfo()
2144 return SourceLocation::getFromRawEncoding((Raw >> 1) | in ReadUntranslatedSourceLocation()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DToken.h127 return SourceLocation::getFromRawEncoding(Loc); in getLocation()
142 return SourceLocation::getFromRawEncoding(UintData ? UintData : Loc); in getAnnotationEndLoc()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclarationName.h704 return SourceLocation::getFromRawEncoding(CXXOperatorName.BeginOpNameLoc); in getCXXOperatorNameBeginLoc()
709 return SourceLocation::getFromRawEncoding(CXXOperatorName.EndOpNameLoc); in getCXXOperatorNameEndLoc()
724 return SourceLocation::getFromRawEncoding(CXXLiteralOperatorName.OpNameLoc); in getCXXLiteralOperatorNameLoc()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp513 SourceLocation::getFromRawEncoding(DI.getLocCookie()); in SrcMgrDiagHandler()
548 SourceLocation::getFromRawEncoding(D.getLocCookie()); in InlineAsmDiagHandler()
H A DCGOpenMPRuntime.cpp12199 CGF, SourceLocation::getFromRawEncoding(LocEncoding)); in getAddressOfLocalVariable()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp398 return SourceLocation::getFromRawEncoding(Raw); in LoadSourceLocation()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp3427 F.FirstLoc = SourceLocation::getFromRawEncoding(F.SLocEntryBaseOffset); in ReadASTBlock()
8288 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]); in ReadUndefinedButUsed()
8301 SourceLocation::getFromRawEncoding(DelayedDeleteExprs[Idx++]); in ReadMismatchingDeleteExpressions()
8384 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]); in ReadReferencedSelectors()
8401 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]); in ReadWeakUndeclaredIdentifiers()
8414 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]); in ReadUsedVTables()
8427 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]); in ReadPendingInstantiations()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp1401 return SourceLocation::getFromRawEncoding(Location); in getLocation()
H A DLexer.cpp592 SourceLocation FileLoc = SourceLocation::getFromRawEncoding(StartOffset); in ComputePreamble()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h528 static AlignPackInfo getFromRawEncoding(unsigned Encoding) { in getFromRawEncoding() function