Lines Matching refs:LocalID
1154 uint32_t LocalID = endian::readNext<uint32_t, little, unaligned>(d); in ReadDataInto() local
1155 Val.insert(Reader.getGlobalDeclID(F, LocalID)); in ReadDataInto()
1812 unsigned LocalID) const { in getGlobalPreprocessedEntityID()
1817 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS); in getGlobalPreprocessedEntityID()
1821 return LocalID + I->second; in getGlobalPreprocessedEntityID()
7109 QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) { in getLocalType() argument
7110 return GetType(getGlobalTypeID(F, LocalID)); in getLocalType()
7114 ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const { in getGlobalTypeID()
7115 unsigned FastQuals = LocalID & Qualifiers::FastMask; in getGlobalTypeID()
7116 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth; in getGlobalTypeID()
7119 return LocalID; in getGlobalTypeID()
7320 ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const { in getGlobalDeclID()
7321 if (LocalID < NUM_PREDEF_DECL_IDS) in getGlobalDeclID()
7322 return LocalID; in getGlobalDeclID()
7328 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS); in getGlobalDeclID()
7331 return LocalID + I->second; in getGlobalDeclID()
8556 IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) { in getLocalIdentifier() argument
8557 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID)); in getLocalIdentifier()
8560 IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) { in getGlobalIdentifierID() argument
8561 if (LocalID < NUM_PREDEF_IDENT_IDS) in getGlobalIdentifierID()
8562 return LocalID; in getGlobalIdentifierID()
8568 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS); in getGlobalIdentifierID()
8572 return LocalID + I->second; in getGlobalIdentifierID()
8602 MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) { in getGlobalMacroID() argument
8603 if (LocalID < NUM_PREDEF_MACRO_IDS) in getGlobalMacroID()
8604 return LocalID; in getGlobalMacroID()
8610 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS); in getGlobalMacroID()
8613 return LocalID + I->second; in getGlobalMacroID()
8617 ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) { in getGlobalSubmoduleID() argument
8618 if (LocalID < NUM_PREDEF_SUBMODULE_IDS) in getGlobalSubmoduleID()
8619 return LocalID; in getGlobalSubmoduleID()
8625 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS); in getGlobalSubmoduleID()
8629 return LocalID + I->second; in getGlobalSubmoduleID()
8705 Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) { in getLocalSelector() argument
8706 return DecodeSelector(getGlobalSelectorID(M, LocalID)); in getLocalSelector()
8744 ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const { in getGlobalSelectorID()
8745 if (LocalID < NUM_PREDEF_SELECTOR_IDS) in getGlobalSelectorID()
8746 return LocalID; in getGlobalSelectorID()
8752 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS); in getGlobalSelectorID()
8756 return LocalID + I->second; in getGlobalSelectorID()