Lines Matching refs:LocalID
1152 uint32_t LocalID = endian::readNext<uint32_t, little, unaligned>(d); in ReadDataInto() local
1153 Val.insert(Reader.getGlobalDeclID(F, LocalID)); in ReadDataInto()
1810 unsigned LocalID) const { in getGlobalPreprocessedEntityID()
1815 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS); in getGlobalPreprocessedEntityID()
1819 return LocalID + I->second; in getGlobalPreprocessedEntityID()
7087 QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) { in getLocalType() argument
7088 return GetType(getGlobalTypeID(F, LocalID)); in getLocalType()
7092 ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const { in getGlobalTypeID()
7093 unsigned FastQuals = LocalID & Qualifiers::FastMask; in getGlobalTypeID()
7094 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth; in getGlobalTypeID()
7097 return LocalID; in getGlobalTypeID()
7293 ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const { in getGlobalDeclID()
7294 if (LocalID < NUM_PREDEF_DECL_IDS) in getGlobalDeclID()
7295 return LocalID; in getGlobalDeclID()
7301 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS); in getGlobalDeclID()
7304 return LocalID + I->second; in getGlobalDeclID()
8527 IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) { in getLocalIdentifier() argument
8528 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID)); in getLocalIdentifier()
8531 IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) { in getGlobalIdentifierID() argument
8532 if (LocalID < NUM_PREDEF_IDENT_IDS) in getGlobalIdentifierID()
8533 return LocalID; in getGlobalIdentifierID()
8539 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS); in getGlobalIdentifierID()
8543 return LocalID + I->second; in getGlobalIdentifierID()
8573 MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) { in getGlobalMacroID() argument
8574 if (LocalID < NUM_PREDEF_MACRO_IDS) in getGlobalMacroID()
8575 return LocalID; in getGlobalMacroID()
8581 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS); in getGlobalMacroID()
8584 return LocalID + I->second; in getGlobalMacroID()
8588 ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) { in getGlobalSubmoduleID() argument
8589 if (LocalID < NUM_PREDEF_SUBMODULE_IDS) in getGlobalSubmoduleID()
8590 return LocalID; in getGlobalSubmoduleID()
8596 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS); in getGlobalSubmoduleID()
8600 return LocalID + I->second; in getGlobalSubmoduleID()
8676 Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) { in getLocalSelector() argument
8677 return DecodeSelector(getGlobalSelectorID(M, LocalID)); in getLocalSelector()
8715 ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const { in getGlobalSelectorID()
8716 if (LocalID < NUM_PREDEF_SELECTOR_IDS) in getGlobalSelectorID()
8717 return LocalID; in getGlobalSelectorID()
8723 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS); in getGlobalSelectorID()
8727 return LocalID + I->second; in getGlobalSelectorID()