Lines Matching refs:LocalID

1181     uint32_t LocalID = endian::readNext<uint32_t, little, unaligned>(d);  in ReadDataInto()  local
1182 Val.insert(Reader.getGlobalDeclID(F, LocalID)); in ReadDataInto()
1838 unsigned LocalID) const { in getGlobalPreprocessedEntityID()
1843 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS); in getGlobalPreprocessedEntityID()
1847 return LocalID + I->second; in getGlobalPreprocessedEntityID()
7203 QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) { in getLocalType() argument
7204 return GetType(getGlobalTypeID(F, LocalID)); in getLocalType()
7208 ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const { in getGlobalTypeID()
7209 unsigned FastQuals = LocalID & Qualifiers::FastMask; in getGlobalTypeID()
7210 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth; in getGlobalTypeID()
7213 return LocalID; in getGlobalTypeID()
7413 ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const { in getGlobalDeclID()
7414 if (LocalID < NUM_PREDEF_DECL_IDS) in getGlobalDeclID()
7415 return LocalID; in getGlobalDeclID()
7421 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS); in getGlobalDeclID()
7424 return LocalID + I->second; in getGlobalDeclID()
8643 IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) { in getLocalIdentifier() argument
8644 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID)); in getLocalIdentifier()
8647 IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) { in getGlobalIdentifierID() argument
8648 if (LocalID < NUM_PREDEF_IDENT_IDS) in getGlobalIdentifierID()
8649 return LocalID; in getGlobalIdentifierID()
8655 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS); in getGlobalIdentifierID()
8659 return LocalID + I->second; in getGlobalIdentifierID()
8689 MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) { in getGlobalMacroID() argument
8690 if (LocalID < NUM_PREDEF_MACRO_IDS) in getGlobalMacroID()
8691 return LocalID; in getGlobalMacroID()
8697 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS); in getGlobalMacroID()
8700 return LocalID + I->second; in getGlobalMacroID()
8704 ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) { in getGlobalSubmoduleID() argument
8705 if (LocalID < NUM_PREDEF_SUBMODULE_IDS) in getGlobalSubmoduleID()
8706 return LocalID; in getGlobalSubmoduleID()
8712 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS); in getGlobalSubmoduleID()
8716 return LocalID + I->second; in getGlobalSubmoduleID()
8792 Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) { in getLocalSelector() argument
8793 return DecodeSelector(getGlobalSelectorID(M, LocalID)); in getLocalSelector()
8831 ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const { in getGlobalSelectorID()
8832 if (LocalID < NUM_PREDEF_SELECTOR_IDS) in getGlobalSelectorID()
8833 return LocalID; in getGlobalSelectorID()
8839 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS); in getGlobalSelectorID()
8843 return LocalID + I->second; in getGlobalSelectorID()