Lines Matching refs:LocalID

1139     uint32_t LocalID = endian::readNext<uint32_t, little, unaligned>(d);  in ReadDataInto()  local
1140 Val.insert(Reader.getGlobalDeclID(F, LocalID)); in ReadDataInto()
1685 unsigned LocalID) const { in getGlobalPreprocessedEntityID()
1690 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS); in getGlobalPreprocessedEntityID()
1694 return LocalID + I->second; in getGlobalPreprocessedEntityID()
7022 QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) { in getLocalType() argument
7023 return GetType(getGlobalTypeID(F, LocalID)); in getLocalType()
7027 ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const { in getGlobalTypeID()
7028 unsigned FastQuals = LocalID & Qualifiers::FastMask; in getGlobalTypeID()
7029 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth; in getGlobalTypeID()
7032 return LocalID; in getGlobalTypeID()
7210 ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const { in getGlobalDeclID()
7211 if (LocalID < NUM_PREDEF_DECL_IDS) in getGlobalDeclID()
7212 return LocalID; in getGlobalDeclID()
7218 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS); in getGlobalDeclID()
7221 return LocalID + I->second; in getGlobalDeclID()
8387 IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) { in getLocalIdentifier() argument
8388 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID)); in getLocalIdentifier()
8391 IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) { in getGlobalIdentifierID() argument
8392 if (LocalID < NUM_PREDEF_IDENT_IDS) in getGlobalIdentifierID()
8393 return LocalID; in getGlobalIdentifierID()
8399 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS); in getGlobalIdentifierID()
8403 return LocalID + I->second; in getGlobalIdentifierID()
8432 MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) { in getGlobalMacroID() argument
8433 if (LocalID < NUM_PREDEF_MACRO_IDS) in getGlobalMacroID()
8434 return LocalID; in getGlobalMacroID()
8440 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS); in getGlobalMacroID()
8443 return LocalID + I->second; in getGlobalMacroID()
8447 ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) { in getGlobalSubmoduleID() argument
8448 if (LocalID < NUM_PREDEF_SUBMODULE_IDS) in getGlobalSubmoduleID()
8449 return LocalID; in getGlobalSubmoduleID()
8455 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS); in getGlobalSubmoduleID()
8459 return LocalID + I->second; in getGlobalSubmoduleID()
8540 Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) { in getLocalSelector() argument
8541 return DecodeSelector(getGlobalSelectorID(M, LocalID)); in getLocalSelector()
8579 ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const { in getGlobalSelectorID()
8580 if (LocalID < NUM_PREDEF_SELECTOR_IDS) in getGlobalSelectorID()
8581 return LocalID; in getGlobalSelectorID()
8587 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS); in getGlobalSelectorID()
8591 return LocalID + I->second; in getGlobalSelectorID()