Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DSourceLocation.h146 UIntTy getRawEncoding() const { return ID; }
166 return (void*)(uintptr_t)getRawEncoding();
187 return LHS.getRawEncoding() == RHS.getRawEncoding();
197 return LHS.getRawEncoding() < RHS.getRawEncoding();
200 return LHS.getRawEncoding() > RHS.getRawEncoding();
203 return LHS.getRawEncoding() <= RHS.getRawEncoding();
206 return LHS.getRawEncoding() >= RHS.getRawEncoding();
457 return LHS.getRawEncoding() == RHS.getRawEncoding() &&
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/include/clang/Serialization/
H A DSourceLocationEncoding.h131 return encodeRaw(Loc.getRawEncoding()); in encode()
154 return Seq ? Seq->encode(Loc) : encodeRaw(Loc.getRawEncoding()); in encode()
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.h350 : Kind(Kind), Loc(Loc.getRawEncoding()) {} in DeclUpdate()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DTokenLexer.cpp1002 auto Distance = Loc.getRawEncoding() - Last.getRawEncoding(); in updateConsecutiveMacroArgTokens()
1040 Partition.back().getEndLoc().getRawEncoding() - in updateConsecutiveMacroArgTokens()
1041 Partition.front().getLocation().getRawEncoding(); in updateConsecutiveMacroArgTokens()
1058 T.getLocation().getRawEncoding() - BeginLoc.getRawEncoding(); in updateConsecutiveMacroArgTokens()
H A DLexer.cpp641 unsigned TokOffset = TheTok.getLocation().getRawEncoding() - StartOffset; in ComputePreamble()
722 return PreambleBounds(End.getRawEncoding() - FileLoc.getRawEncoding(), in ComputePreamble()
H A DModuleMap.cpp1577 Tok.Location = LToken.getLocation().getRawEncoding(); in consumeToken()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXSourceLocation.h35 Loc.getRawEncoding() }; in translateSourceLocation()
H A DCXIndexDataConsumer.cpp1110 idxLoc.int_data = Loc.getRawEncoding(); in getIndexLoc()
H A DCIndex.cpp164 {&SM, &LangOpts}, R.getBegin().getRawEncoding(), EndLoc.getRawEncoding()}; in translateSourceRange()
7170 CXTok.int_data[1] = Tok.getLocation().getRawEncoding(); in getTokens()
7833 getTok(tokI).int_data[3] = loc.getRawEncoding(); in setFunctionMacroTokenLoc()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclarationName.h694 CXXOperatorName.BeginOpNameLoc = Range.getBegin().getRawEncoding(); in setCXXOperatorNameRange()
695 CXXOperatorName.EndOpNameLoc = Range.getEnd().getRawEncoding(); in setCXXOperatorNameRange()
699 CXXLiteralOperatorName.OpNameLoc = Loc.getRawEncoding(); in setCXXLiteralOperatorNameLoc()
/openbsd-src/gnu/llvm/clang/tools/clang-refactor/
H A DTestSupport.cpp327 Source.substr(Tok.getLocation().getRawEncoding(), Tok.getLength()); in findTestSelectionRanges()
347 unsigned Offset = Tok.getEndLoc().getRawEncoding(); in findTestSelectionRanges()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp737 unsigned start_pos = start_loc.getRawEncoding(); in GetTextForRange()
738 unsigned end_pos = end_loc.getRawEncoding() + last_token.getLength(); in GetTextForRange()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DNestedNameSpecifier.cpp492 SourceLocation::UIntTy Raw = Loc.getRawEncoding(); in SaveSourceLocation()
/openbsd-src/gnu/llvm/clang/lib/Format/
H A DWhitespaceManager.cpp960 Changes[i].OriginalWhitespaceRange.getEnd().getRawEncoding() - in alignTrailingComments()
961 Changes[i].OriginalWhitespaceRange.getBegin().getRawEncoding() - in alignTrailingComments()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp2248 CGF.Int64Ty, Str->getBeginLoc().getRawEncoding()))); in getAsmSrcLocInfo()
2263 llvm::ConstantInt::get(CGF.Int64Ty, LineLoc.getRawEncoding()))); in getAsmSrcLocInfo()
2307 llvm::ConstantInt::get(CGF.Int64Ty, S.getAsmLoc().getRawEncoding()); in UpdateAsmCallInst()
H A DCGCall.cpp5478 llvm::ConstantInt::get(Int32Ty, Loc.getRawEncoding()); in EmitCall()
H A DCGOpenMPRuntime.cpp5435 << D->getCanonicalDecl()->getBeginLoc().getRawEncoding(); in generateUniqueName()
11842 NormalAndEHCleanup, FiniRTLFn, CVD->getLocation().getRawEncoding(), in getAddressOfLocalVariable()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp3346 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3389 getRawEncoding()); in ReadASTBlock()
3518 ReadSourceLocation(F, Record, Idx).getRawEncoding()); in ReadASTBlock()
3537 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3695 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3705 DelayedDeleteExprs.push_back(ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
H A DASTWriter.cpp5332 uint32_t Raw = Sema::AlignPackInfo::getRawEncoding(Info); in AddAlignPackInfo()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDecl.cpp2280 return LHS.Loc.getRawEncoding() < RHS.Loc.getRawEncoding(); in ActOnPopScope()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h509 static uint32_t getRawEncoding(const AlignPackInfo &Info) { in getRawEncoding() function