Lines Matching refs:LocalID

1220     uint32_t LocalID =  in ReadDataInto()  local
1222 Val.insert(Reader.getGlobalDeclID(F, LocalID)); in ReadDataInto()
1968 unsigned LocalID) const { in getGlobalPreprocessedEntityID()
1973 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS); in getGlobalPreprocessedEntityID()
1977 return LocalID + I->second; in getGlobalPreprocessedEntityID()
7415 QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) { in getLocalType() argument
7416 return GetType(getGlobalTypeID(F, LocalID)); in getLocalType()
7420 ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const { in getGlobalTypeID()
7421 unsigned FastQuals = LocalID & Qualifiers::FastMask; in getGlobalTypeID()
7422 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth; in getGlobalTypeID()
7425 return LocalID; in getGlobalTypeID()
7633 ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const { in getGlobalDeclID()
7634 if (LocalID < NUM_PREDEF_DECL_IDS) in getGlobalDeclID()
7635 return LocalID; in getGlobalDeclID()
7641 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS); in getGlobalDeclID()
7644 return LocalID + I->second; in getGlobalDeclID()
8877 IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) { in getLocalIdentifier() argument
8878 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID)); in getLocalIdentifier()
8881 IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) { in getGlobalIdentifierID() argument
8882 if (LocalID < NUM_PREDEF_IDENT_IDS) in getGlobalIdentifierID()
8883 return LocalID; in getGlobalIdentifierID()
8889 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS); in getGlobalIdentifierID()
8893 return LocalID + I->second; in getGlobalIdentifierID()
8923 MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) { in getGlobalMacroID() argument
8924 if (LocalID < NUM_PREDEF_MACRO_IDS) in getGlobalMacroID()
8925 return LocalID; in getGlobalMacroID()
8931 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS); in getGlobalMacroID()
8934 return LocalID + I->second; in getGlobalMacroID()
8938 ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) { in getGlobalSubmoduleID() argument
8939 if (LocalID < NUM_PREDEF_SUBMODULE_IDS) in getGlobalSubmoduleID()
8940 return LocalID; in getGlobalSubmoduleID()
8946 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS); in getGlobalSubmoduleID()
8950 return LocalID + I->second; in getGlobalSubmoduleID()
9026 Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) { in getLocalSelector() argument
9027 return DecodeSelector(getGlobalSelectorID(M, LocalID)); in getLocalSelector()
9065 ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const { in getGlobalSelectorID()
9066 if (LocalID < NUM_PREDEF_SELECTOR_IDS) in getGlobalSelectorID()
9067 return LocalID; in getGlobalSelectorID()
9073 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS); in getGlobalSelectorID()
9077 return LocalID + I->second; in getGlobalSelectorID()