Home
last modified time | relevance | path

Searched refs:getRawEncoding (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceLocation.h148 UIntTy getRawEncoding() const { return ID; }
168 return (void*)(uintptr_t)getRawEncoding();
189 return LHS.getRawEncoding() == RHS.getRawEncoding();
199 return LHS.getRawEncoding() < RHS.getRawEncoding();
202 return LHS.getRawEncoding() > RHS.getRawEncoding();
205 return LHS.getRawEncoding() <= RHS.getRawEncoding();
208 return LHS.getRawEncoding() >= RHS.getRawEncoding();
452 return LHS.getRawEncoding() == RHS.getRawEncoding() &&
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DToken.h134 void setLocation(SourceLocation L) { Loc = L.getRawEncoding(); } in setLocation()
146 UintData = L.getRawEncoding(); in setAnnotationEndLoc()
176 Loc = SourceLocation().getRawEncoding(); in startToken()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTBitCodes.h188 : Begin(R.getBegin().getRawEncoding()), End(R.getEnd().getRawEncoding()), in PPEntityOffset()
208 : Begin(R.getBegin().getRawEncoding()), End(R.getEnd().getRawEncoding()) { in PPSkippedRange()
257 void setLocation(SourceLocation L) { Loc = L.getRawEncoding(); } in setLocation()
H A DASTWriter.h362 : Kind(Kind), Loc(Loc.getRawEncoding()) {} in DeclUpdate()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclarationName.h685 CXXOperatorName.BeginOpNameLoc = Range.getBegin().getRawEncoding(); in setCXXOperatorNameRange()
686 CXXOperatorName.EndOpNameLoc = Range.getEnd().getRawEncoding(); in setCXXOperatorNameRange()
690 CXXLiteralOperatorName.OpNameLoc = Loc.getRawEncoding(); in setCXXLiteralOperatorNameLoc()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp644 unsigned start_pos = start_loc.getRawEncoding(); in GetTextForRange()
645 unsigned end_pos = end_loc.getRawEncoding() + last_token.getLength(); in GetTextForRange()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp491 SourceLocation::UIntTy Raw = Loc.getRawEncoding(); in SaveSourceLocation()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2162 CGF.Int64Ty, Str->getBeginLoc().getRawEncoding()))); in getAsmSrcLocInfo()
2177 llvm::ConstantInt::get(CGF.Int64Ty, LineLoc.getRawEncoding()))); in getAsmSrcLocInfo()
2215 llvm::ConstantInt::get(CGF.Int64Ty, S.getAsmLoc().getRawEncoding()); in UpdateAsmCallInst()
H A DCGOpenMPRuntime.cpp5859 << D->getCanonicalDecl()->getBeginLoc().getRawEncoding(); in generateUniqueName()
12216 NormalAndEHCleanup, FiniRTLFn, CVD->getLocation().getRawEncoding(), in getAddressOfLocalVariable()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp638 unsigned TokOffset = TheTok.getLocation().getRawEncoding() - StartOffset; in ComputePreamble()
719 return PreambleBounds(End.getRawEncoding() - FileLoc.getRawEncoding(), in ComputePreamble()
H A DModuleMap.cpp1522 Tok.Location = LToken.getLocation().getRawEncoding(); in consumeToken()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp3323 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3367 getRawEncoding()); in ReadASTBlock()
3488 ReadSourceLocation(F, Record, Idx).getRawEncoding()); in ReadASTBlock()
3507 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3668 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3678 DelayedDeleteExprs.push_back(ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
H A DASTWriter.cpp5025 uint32_t Raw = Sema::AlignPackInfo::getRawEncoding(Info); in AddAlignPackInfo()
5030 SourceLocation::UIntTy Raw = Loc.getRawEncoding(); in AddSourceLocation()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h513 static uint32_t getRawEncoding(const AlignPackInfo &Info) { in getRawEncoding() function