Lines Matching refs:LocalID

1180     uint32_t LocalID = endian::readNext<uint32_t, little, unaligned>(d);  in ReadDataInto()  local
1181 Val.insert(Reader.getGlobalDeclID(F, LocalID)); in ReadDataInto()
1842 unsigned LocalID) const { in getGlobalPreprocessedEntityID()
1847 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS); in getGlobalPreprocessedEntityID()
1851 return LocalID + I->second; in getGlobalPreprocessedEntityID()
7163 QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) { in getLocalType() argument
7164 return GetType(getGlobalTypeID(F, LocalID)); in getLocalType()
7168 ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const { in getGlobalTypeID()
7169 unsigned FastQuals = LocalID & Qualifiers::FastMask; in getGlobalTypeID()
7170 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth; in getGlobalTypeID()
7173 return LocalID; in getGlobalTypeID()
7374 ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const { in getGlobalDeclID()
7375 if (LocalID < NUM_PREDEF_DECL_IDS) in getGlobalDeclID()
7376 return LocalID; in getGlobalDeclID()
7382 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS); in getGlobalDeclID()
7385 return LocalID + I->second; in getGlobalDeclID()
8604 IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) { in getLocalIdentifier() argument
8605 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID)); in getLocalIdentifier()
8608 IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) { in getGlobalIdentifierID() argument
8609 if (LocalID < NUM_PREDEF_IDENT_IDS) in getGlobalIdentifierID()
8610 return LocalID; in getGlobalIdentifierID()
8616 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS); in getGlobalIdentifierID()
8620 return LocalID + I->second; in getGlobalIdentifierID()
8650 MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) { in getGlobalMacroID() argument
8651 if (LocalID < NUM_PREDEF_MACRO_IDS) in getGlobalMacroID()
8652 return LocalID; in getGlobalMacroID()
8658 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS); in getGlobalMacroID()
8661 return LocalID + I->second; in getGlobalMacroID()
8665 ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) { in getGlobalSubmoduleID() argument
8666 if (LocalID < NUM_PREDEF_SUBMODULE_IDS) in getGlobalSubmoduleID()
8667 return LocalID; in getGlobalSubmoduleID()
8673 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS); in getGlobalSubmoduleID()
8677 return LocalID + I->second; in getGlobalSubmoduleID()
8753 Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) { in getLocalSelector() argument
8754 return DecodeSelector(getGlobalSelectorID(M, LocalID)); in getLocalSelector()
8792 ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const { in getGlobalSelectorID()
8793 if (LocalID < NUM_PREDEF_SELECTOR_IDS) in getGlobalSelectorID()
8794 return LocalID; in getGlobalSelectorID()
8800 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS); in getGlobalSelectorID()
8804 return LocalID + I->second; in getGlobalSelectorID()