Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DSourceLocation.h148 unsigned 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() &&
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXSourceLocation.h35 Loc.getRawEncoding() }; in translateSourceLocation()
H A DCXIndexDataConsumer.cpp1097 idxLoc.int_data = Loc.getRawEncoding(); in getIndexLoc()
H A DCIndex.cpp163 {&SM, &LangOpts}, R.getBegin().getRawEncoding(), EndLoc.getRawEncoding()}; in translateSourceRange()
6904 CXTok.int_data[1] = Tok.getLocation().getRawEncoding(); in getTokens()
7567 getTok(tokI).int_data[3] = loc.getRawEncoding(); in setFunctionMacroTokenLoc()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-refactor/
H A DTestSupport.cpp326 Source.substr(Tok.getLocation().getRawEncoding(), Tok.getLength()); in findTestSelectionRanges()
346 unsigned Offset = Tok.getEndLoc().getRawEncoding(); in findTestSelectionRanges()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DNestedNameSpecifier.cpp490 unsigned Raw = Loc.getRawEncoding(); in SaveSourceLocation()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp2123 CGF.Int32Ty, Str->getBeginLoc().getRawEncoding()))); in getAsmSrcLocInfo()
2138 llvm::ConstantInt::get(CGF.Int32Ty, LineLoc.getRawEncoding()))); in getAsmSrcLocInfo()
2176 S.getAsmLoc().getRawEncoding()); in UpdateAsmCallInst()
H A DCGOpenMPRuntime.cpp5846 << D->getCanonicalDecl()->getBeginLoc().getRawEncoding(); in generateUniqueName()
12055 NormalAndEHCleanup, FiniRTLFn, CVD->getLocation().getRawEncoding(), in getAddressOfLocalVariable()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DLexer.cpp638 unsigned TokOffset = TheTok.getLocation().getRawEncoding() - StartOffset; in ComputePreamble()
717 return PreambleBounds(End.getRawEncoding() - FileLoc.getRawEncoding(), in ComputePreamble()
H A DModuleMap.cpp1522 Tok.Location = LToken.getLocation().getRawEncoding(); in consumeToken()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp3316 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3360 getRawEncoding()); in ReadASTBlock()
3481 ReadSourceLocation(F, Record, Idx).getRawEncoding()); in ReadASTBlock()
3500 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3661 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3671 DelayedDeleteExprs.push_back(ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
H A DASTWriter.cpp5025 uint32_t Raw = Sema::AlignPackInfo::getRawEncoding(Info); in AddAlignPackInfo()
5030 uint32_t Raw = Loc.getRawEncoding(); in AddSourceLocation()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h510 static uint32_t getRawEncoding(const AlignPackInfo &Info) { in getRawEncoding() function