Home | History | Annotate | Download | only in Object

Lines Matching refs:pFrom

26 SectionMap::NamePair::NamePair(const std::string& pFrom, const std::string& pTo)
27 : from(pFrom), to(pTo) {
28 hash = SectionMap::hash(pFrom);
39 const SectionMap::NamePair& SectionMap::find(const std::string& pFrom) const
41 unsigned int hash = SectionMap::hash(pFrom);
42 return find(pFrom, hash);
45 SectionMap::NamePair& SectionMap::find(const std::string& pFrom)
47 unsigned int hash = SectionMap::hash(pFrom);
48 return find(pFrom, hash);
52 SectionMap::find(const std::string& pFrom, unsigned int pHash) const
56 if (matched(*name_hash, pFrom, pHash)) {
64 SectionMap::find(const std::string& pFrom, unsigned int pHash)
68 if (matched(*name_hash, pFrom, pHash)) {
75 SectionMap::NamePair& SectionMap::append(const std::string &pFrom,
79 NamePair& result = find(pFrom);
86 NamePair entry(pFrom, pTo);