• Home
  • Raw
  • Download

Lines Matching refs:LocalID

982     uint32_t LocalID = endian::readNext<uint32_t, little, unaligned>(d);  in ReadDataInto()  local
983 Val.insert(Reader.getGlobalDeclID(F, LocalID)); in ReadDataInto()
1521 ASTReader::getGlobalPreprocessedEntityID(ModuleFile &M, unsigned LocalID) const { in getGlobalPreprocessedEntityID()
1523 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS); in getGlobalPreprocessedEntityID()
1527 return LocalID + I->second; in getGlobalPreprocessedEntityID()
6140 QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) { in getLocalType() argument
6141 return GetType(getGlobalTypeID(F, LocalID)); in getLocalType()
6145 ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const { in getGlobalTypeID()
6146 unsigned FastQuals = LocalID & Qualifiers::FastMask; in getGlobalTypeID()
6147 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth; in getGlobalTypeID()
6150 return LocalID; in getGlobalTypeID()
6328 ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const { in getGlobalDeclID()
6329 if (LocalID < NUM_PREDEF_DECL_IDS) in getGlobalDeclID()
6330 return LocalID; in getGlobalDeclID()
6333 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS); in getGlobalDeclID()
6336 return LocalID + I->second; in getGlobalDeclID()
7494 IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) { in getLocalIdentifier() argument
7495 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID)); in getLocalIdentifier()
7498 IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) { in getGlobalIdentifierID() argument
7499 if (LocalID < NUM_PREDEF_IDENT_IDS) in getGlobalIdentifierID()
7500 return LocalID; in getGlobalIdentifierID()
7503 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS); in getGlobalIdentifierID()
7507 return LocalID + I->second; in getGlobalIdentifierID()
7536 MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) { in getGlobalMacroID() argument
7537 if (LocalID < NUM_PREDEF_MACRO_IDS) in getGlobalMacroID()
7538 return LocalID; in getGlobalMacroID()
7541 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS); in getGlobalMacroID()
7544 return LocalID + I->second; in getGlobalMacroID()
7548 ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) { in getGlobalSubmoduleID() argument
7549 if (LocalID < NUM_PREDEF_SUBMODULE_IDS) in getGlobalSubmoduleID()
7550 return LocalID; in getGlobalSubmoduleID()
7553 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS); in getGlobalSubmoduleID()
7557 return LocalID + I->second; in getGlobalSubmoduleID()
7625 Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) { in getLocalSelector() argument
7626 return DecodeSelector(getGlobalSelectorID(M, LocalID)); in getLocalSelector()
7664 ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const { in getGlobalSelectorID()
7665 if (LocalID < NUM_PREDEF_SELECTOR_IDS) in getGlobalSelectorID()
7666 return LocalID; in getGlobalSelectorID()
7669 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS); in getGlobalSelectorID()
7673 return LocalID + I->second; in getGlobalSelectorID()