Searched refs:sources_ (Results 1 - 10 of 10) sorted by relevance

/external/chromium/googleurl/src/
H A Durl_canon.h642 sources_.scheme = s;
646 bool IsSchemeOverridden() const { return sources_.scheme != NULL; }
650 sources_.username = s;
654 sources_.username = Placeholder();
657 bool IsUsernameOverridden() const { return sources_.username != NULL; }
661 sources_.password = s;
665 sources_.password = Placeholder();
668 bool IsPasswordOverridden() const { return sources_.password != NULL; }
672 sources_.host = s;
676 sources_
748 URLComponentSource<CHAR> sources_; member in class:url_canon::Replacements
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dshortest-distance.h87 vector<StateId> sources_; // Source state for ith state in 'distance_', member in class:fst::ShortestDistanceState
120 while ((StateId)sources_.size() <= source)
121 sources_.push_back(kNoStateId);
122 sources_[source] = source;
153 while ((StateId)sources_.size() <= arc.nextstate)
154 sources_.push_back(kNoStateId);
155 if (sources_[arc.nextstate] != source) {
159 sources_[arc.nextstate] = source;
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.cc453 sources_.push_back(source1);
454 sources_.push_back(source2);
458 : sources_(sources) {}
464 for (int i = 0; i < sources_.size(); i++) {
465 if (sources_[i]->FindFileByName(filename, output)) {
475 for (int i = 0; i < sources_.size(); i++) {
476 if (sources_[i]->FindFileContainingSymbol(symbol_name, output)) {
483 if (sources_[j]->FindFileByName(output->name(), &temp)) {
498 for (int i = 0; i < sources_.size(); i++) {
499 if (sources_[
[all...]
H A Ddescriptor_database.h359 vector<DescriptorDatabase*> sources_; member in class:google::protobuf::MergedDescriptorDatabase
/external/chromium/chrome/browser/net/
H A Dpassive_log_collector.cc191 SourceIDToInfoMap::iterator it = sources_.find(entry.source.id);
192 if (it == sources_.end()) {
193 if (sources_.size() >= max_num_sources_) {
198 it = sources_.insert(
229 SourceIDToInfoMap::iterator it = sources_.find(source_id);
230 if (it == sources_.end()) {
240 sources_.erase(it);
247 for (SourceIDToInfoMap::iterator it = sources_.begin();
248 it != sources_.end();
252 sources_
[all...]
H A Dpassive_log_collector.h131 for (SourceIDToInfoMap::const_iterator it = sources_.begin();
132 it != sources_.end(); ++it) {
161 // Removes |source_id| from |sources_|. This also releases any references
180 SourceIDToInfoMap sources_; member in class:PassiveLogCollector::SourceTracker
185 // FIFO queue for entries in |sources_| that are no longer alive, and
/external/openfst/src/include/fst/extensions/far/
H A Dstlist.h124 : sources_(filenames), entry_(0), error_(false) {
131 sources_[i] = "stdin";
163 FSTERROR() << "STTableReader: error reading file: " << sources_[i];
173 << heap_.top().first << ", file: " << sources_[current]; local
222 << sources_[current];
236 << heap_.top().first << ", file: " << sources_[current]; local
255 vector<string> sources_; // and corresponding file names member in class:fst::STListReader
H A Dsttable.h121 : sources_(filenames), entry_(0), error_(false) {
209 << sources_[current_];
282 FSTERROR() << "STTableReader: error reading file: " << sources_[i];
305 << keys_[current_] << ", file: " << sources_[current_]; local
313 vector<string> sources_; // and corresponding file names member in class:fst::STTableReader
/external/openfst/src/include/fst/
H A Dshortest-distance.h105 vector<StateId> sources_; // Source ID for ith state in 'distance_', member in class:fst::ShortestDistanceState
154 while (sources_.size() <= source)
155 sources_.push_back(kNoStateId);
156 sources_[source] = source_id_;
189 while (sources_.size() <= arc.nextstate)
190 sources_.push_back(kNoStateId);
191 if (sources_[arc.nextstate] != source_id_) {
195 sources_[arc.nextstate] = source_id_;
/external/openfst/src/include/fst/extensions/pdt/
H A Dexpand.h475 vector<StateId> sources_; // PDT source state for each expanded state member in class:fst::PrunedExpand
600 return s < sources_.size() ? sources_[s] : kNoStateId;
606 while (sources_.size() <= s) sources_.push_back(kNoStateId);
607 sources_[s] = p;

Completed in 890 milliseconds