| /minix3/external/bsd/llvm/dist/clang/include/clang/Sema/ |
| H A D | Designator.h | 81 return SourceLocation::getFromRawEncoding(FieldInfo.DotLoc); in getDotLoc() 86 return SourceLocation::getFromRawEncoding(FieldInfo.NameLoc); in getFieldLoc() 107 return SourceLocation::getFromRawEncoding(ArrayInfo.LBracketLoc); in getLBracketLoc() 109 return SourceLocation::getFromRawEncoding(ArrayRangeInfo.LBracketLoc); in getLBracketLoc() 116 return SourceLocation::getFromRawEncoding(ArrayInfo.RBracketLoc); in getRBracketLoc() 118 return SourceLocation::getFromRawEncoding(ArrayRangeInfo.RBracketLoc); in getRBracketLoc() 123 return SourceLocation::getFromRawEncoding(ArrayRangeInfo.EllipsisLoc); in getEllipsisLoc()
|
| H A D | DeclSpec.h | 1292 return SourceLocation::getFromRawEncoding(LParenLoc); in getLParenLoc() 1296 return SourceLocation::getFromRawEncoding(EllipsisLoc); in getEllipsisLoc() 1300 return SourceLocation::getFromRawEncoding(RParenLoc); in getRParenLoc() 1304 return SourceLocation::getFromRawEncoding(ExceptionSpecLoc); in getExceptionSpecLoc() 1309 return SourceLocation::getFromRawEncoding(RefQualifierLoc); in getRefQualifierLoc() 1314 return SourceLocation::getFromRawEncoding(ConstQualifierLoc); in getConstQualifierLoc() 1319 return SourceLocation::getFromRawEncoding(VolatileQualifierLoc); in getVolatileQualifierLoc() 1324 return SourceLocation::getFromRawEncoding(RestrictQualifierLoc); in getRestrictQualifierLoc() 1329 return SourceLocation::getFromRawEncoding(MutableLoc); in getMutableLoc()
|
| H A D | Initialization.h | 394 return SourceLocation::getFromRawEncoding(LocAndNRVO.Location); in getReturnLoc() 401 return SourceLocation::getFromRawEncoding(LocAndNRVO.Location); in getThrowLoc() 427 return SourceLocation::getFromRawEncoding(Capture.Location); in getCaptureLoc()
|
| /minix3/external/bsd/llvm/dist/clang/tools/libclang/ |
| H A D | CXSourceLocation.h | 67 return SourceLocation::getFromRawEncoding(L.int_data); in translateSourceLocation() 71 return SourceRange(SourceLocation::getFromRawEncoding(R.begin_int_data), in translateCXSourceRange() 72 SourceLocation::getFromRawEncoding(R.end_int_data)); in translateCXSourceRange()
|
| H A D | CXSourceLocation.cpp | 213 SourceLocation::getFromRawEncoding(location.int_data); in clang_Location_isInSystemHeader() 224 SourceLocation::getFromRawEncoding(location.int_data); in clang_Location_isFromMainFile() 244 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getExpansionLocation() 287 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getPresumedLocation() 328 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getSpellingLocation() 366 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getFileLocation()
|
| H A D | Indexing.cpp | 1075 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_indexLoc_getFileLocation() 1085 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_indexLoc_getCXSourceLocation()
|
| H A D | CIndex.cpp | 1810 return SourceLocation::getFromRawEncoding((unsigned)(uintptr_t) data[1]); in getLoc() 2704 Pieces.push_back(SourceLocation::getFromRawEncoding( in buildPieces() 2706 Pieces.push_back(SourceLocation::getFromRawEncoding( in buildPieces() 5302 SourceLocation Loc = SourceLocation::getFromRawEncoding(CXTok.int_data[1]); in clang_getTokenSpelling() 5325 SourceLocation::getFromRawEncoding(CXTok.int_data[1])); in clang_getTokenLocation() 5339 SourceLocation::getFromRawEncoding(CXTok.int_data[1])); in clang_getTokenExtent() 5499 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[1]); in GetTokenLoc() 5505 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[3]); in getFunctionMacroTokenLoc() 5882 return SourceLocation::getFromRawEncoding(getTok(tokI).int_data[1]); in getTokenLoc() 5964 SourceLocation::getFromRawEncoding(Tokens[TokIdx].int_data[1])); in annotatePreprocessorTokens() [all …]
|
| H A D | IndexingContext.cpp | 773 Loc = SourceLocation::getFromRawEncoding(baseInfo->loc.int_data); in handleCXXRecordDecl()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Basic/ |
| H A D | SourceLocation.h | 151 static SourceLocation getFromRawEncoding(unsigned Encoding) { in getFromRawEncoding() function 171 return getFromRawEncoding((unsigned)(uintptr_t)Encoding); in getFromPtrEncoding() 430 return clang::SourceLocation::getFromRawEncoding((unsigned)(uintptr_t)P);
|
| H A D | SourceManager.h | 286 return SourceLocation::getFromRawEncoding(IncludeLoc); in getIncludeLoc() 326 return SourceLocation::getFromRawEncoding(SpellingLoc); in getSpellingLoc() 329 return SourceLocation::getFromRawEncoding(ExpansionLocStart); in getExpansionLocStart() 333 SourceLocation::getFromRawEncoding(ExpansionLocEnd); in getExpansionLocEnd() 344 SourceLocation::getFromRawEncoding(ExpansionLocEnd).isInvalid(); in isMacroArgExpansion() 349 SourceLocation::getFromRawEncoding(ExpansionLocEnd).isValid(); in isMacroBodyExpansion()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | DeclarationName.h | 486 SourceLocation::getFromRawEncoding(LocInfo.CXXOperatorName.BeginOpNameLoc), in getCXXOperatorNameRange() 487 SourceLocation::getFromRawEncoding(LocInfo.CXXOperatorName.EndOpNameLoc) in getCXXOperatorNameRange() 504 getFromRawEncoding(LocInfo.CXXLiteralOperatorName.OpNameLoc); in getCXXLiteralOperatorNameLoc()
|
| H A D | DependentDiagnostic.h | 74 return SourceLocation::getFromRawEncoding(AccessData.Loc); in getAccessLoc()
|
| H A D | TemplateBase.h | 413 return SourceLocation::getFromRawEncoding(Template.TemplateNameLoc); in getTemplateNameLoc() 417 return SourceLocation::getFromRawEncoding(Template.EllipsisLoc); in getTemplateEllipsisLoc()
|
| H A D | Expr.h | 4110 return SourceLocation::getFromRawEncoding(Field.DotLoc); in getDotLoc() 4115 return SourceLocation::getFromRawEncoding(Field.FieldLoc); in getFieldLoc() 4121 return SourceLocation::getFromRawEncoding(ArrayOrRange.LBracketLoc); in getLBracketLoc() 4127 return SourceLocation::getFromRawEncoding(ArrayOrRange.RBracketLoc); in getRBracketLoc() 4133 return SourceLocation::getFromRawEncoding(ArrayOrRange.EllipsisLoc); in getEllipsisLoc()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Lex/ |
| H A D | Token.h | 131 return SourceLocation::getFromRawEncoding(UintData); in getAnnotationEndLoc()
|
| /minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransProperties.cpp | 130 SourceLocation atLoc = SourceLocation::getFromRawEncoding(I->first); in doTransform() 148 SourceLocation atLoc = SourceLocation::getFromRawEncoding(I->first); in doTransform()
|
| H A D | TransGCAttrs.cpp | 321 SourceLocation AtLoc = SourceLocation::getFromRawEncoding(I->first); in checkAllProps()
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | DeclarationName.cpp | 566 return SourceLocation::getFromRawEncoding(raw); in getEndLoc() 571 return SourceLocation::getFromRawEncoding(raw); in getEndLoc()
|
| H A D | NestedNameSpecifier.cpp | 370 return SourceLocation::getFromRawEncoding(Raw); in LoadSourceLocation()
|
| H A D | Expr.cpp | 3910 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc); in getLocStart() 3912 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc); in getLocStart() 3915 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc); in getLocStart()
|
| /minix3/external/bsd/llvm/dist/clang/lib/CodeGen/ |
| H A D | CodeGenAction.cpp | 218 SourceLocation Loc = SourceLocation::getFromRawEncoding(LocCookie); in InlineAsmDiagHandler() 391 SourceLocation::getFromRawEncoding(D.getLocCookie()); in InlineAsmDiagHandler()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Serialization/ |
| H A D | ASTWriter.h | 318 return SourceLocation::getFromRawEncoding(Loc); in getLoc()
|
| H A D | ASTReader.h | 2016 SourceLocation Loc = SourceLocation::getFromRawEncoding(Raw); in ReadSourceLocation()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaType.cpp | 2068 SourceLocation::getFromRawEncoding(PTI.ConstQualLoc), in diagnoseRedundantReturnTypeQualifiers() 2069 SourceLocation::getFromRawEncoding(PTI.VolatileQualLoc), in diagnoseRedundantReturnTypeQualifiers() 2070 SourceLocation::getFromRawEncoding(PTI.RestrictQualLoc), in diagnoseRedundantReturnTypeQualifiers() 2071 SourceLocation::getFromRawEncoding(PTI.AtomicQualLoc)); in diagnoseRedundantReturnTypeQualifiers() 3784 Loc = SourceLocation::getFromRawEncoding(Chunk.Ptr.AtomicQualLoc); in fillAtomicQualLoc()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 2406 SourceLocation::getFromRawEncoding(Record[Idx++]); in ReadControlBlock() 2934 F.FirstLoc = SourceLocation::getFromRawEncoding(F.SLocEntryBaseOffset); in ReadASTBlock() 7193 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]); in ReadUndefinedButUsed() 7285 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]); in ReadReferencedSelectors() 7302 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]); in ReadWeakUndeclaredIdentifiers() 7315 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]); in ReadUsedVTables() 7328 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]); in ReadPendingInstantiations()
|