Lines Matching refs:data_

99     rtl::Reference< Data > data_;  member in stoc::simpleregistry::__anon882e7c450211::Parser
106 reader_(uri), data_(data) in Parser()
321 if (data_->implementations.find(attrImplementation_) != in handleImplementation()
322 data_->implementations.end()) in handleImplementation()
333 data_->implementations[attrImplementation_].uri = attrUri_; in handleImplementation()
334 data_->implementations[attrImplementation_].loader = attrLoader_; in handleImplementation()
339 data_->implementations[attrImplementation_].services.push_back(name); in handleService()
340 data_->services[name].push_back(attrImplementation_); in handleService()
345 data_->implementations[attrImplementation_].singletons.push_back(name); in handleSingleton()
346 data_->singletons[name].push_back(attrImplementation_); in handleSingleton()
413 data_(data), path_(path) { OSL_ASSERT(data.is()); in Key()
577 rtl::Reference< Data > data_; member in stoc::simpleregistry::__anon882e7c450211::Key
670 return data_->implementations[path_[1]].uri; in getAsciiValue()
672 return data_->implementations[path_[1]].loader; in getAsciiValue()
703 list = &data_->services[path_[1]]; in getAsciiListValue()
706 list = &data_->singletons[path_[1]]; in getAsciiListValue()
841 return new Key(data_, path); in openKey()
1013 found = data_->implementations.find(*j) != in find()
1014 data_->implementations.end(); in find()
1021 found = data_->services.find(*j) != data_->services.end(); in find()
1024 found = data_->singletons.find(*j) != in find()
1025 data_->singletons.end(); in find()
1069 if (data_->implementations.size() > SAL_MAX_INT32) { in getChildren()
1078 static_cast< sal_Int32 >(data_->implementations.size())); in getChildren()
1080 for (Implementations::iterator j(data_->implementations.begin()); in getChildren()
1081 j != data_->implementations.end(); ++j) in getChildren()
1105 if (data_->implementations[path_[1]].services.size() > in getChildren()
1117 data_->implementations[path_[1]].services.size())); in getChildren()
1120 data_->implementations[path_[1]].services.begin()); in getChildren()
1121 j != data_->implementations[path_[1]].services.end(); ++j) in getChildren()
1129 if (data_->implementations[path_[1]].singletons.size() > in getChildren()
1141 data_->implementations[path_[1]].singletons.size())); in getChildren()
1144 data_->implementations[path_[1]].singletons.begin()); in getChildren()
1145 j != data_->implementations[path_[1]].singletons.end(); ++j) in getChildren()
1153 if (data_->services.size() > SAL_MAX_INT32) { in getChildren()
1162 static_cast< sal_Int32 >(data_->services.size())); in getChildren()
1164 for (ImplementationMap::iterator j(data_->services.begin()); in getChildren()
1165 j != data_->services.end(); ++j) in getChildren()
1173 if (data_->singletons.size() > SAL_MAX_INT32) { in getChildren()
1182 static_cast< sal_Int32 >(data_->singletons.size())); in getChildren()
1184 for (ImplementationMap::iterator j(data_->singletons.begin()); in getChildren()
1185 j != data_->singletons.end(); ++j) in getChildren()
1204 uri_(uri), data_(new Data) in TextualServices()
1207 Parser(uri, data_); in TextualServices()
1221 return new Key(data_, std::vector< rtl::OUString >()); in getRootKey()