HomeSort by relevance Sort by last modified time
    Searched refs:sources_ (Results 1 - 10 of 10) sorted by null

  /external/chromium/googleurl/src/
url_canon.h 642 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_.host = Placeholder()
748 URLComponentSource<CHAR> sources_; member in class:url_canon::Replacements
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-distance.h 87 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/
descriptor_database.cc 453 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_[i]->FindFileContainingExtension
    [all...]
descriptor_database.h 359 vector<DescriptorDatabase*> sources_; member in class:google::protobuf::MergedDescriptorDatabase
  /external/chromium/chrome/browser/net/
passive_log_collector.cc 191 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_.clear()
    [all...]
passive_log_collector.h 131 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/
stlist.h 125 : sources_(filenames), entry_(0), error_(false) {
132 sources_[i] = "stdin";
164 FSTERROR() << "STListReader: error reading file: " << sources_[i];
174 << heap_.top().first << ", file: " << sources_[current]; local
223 << sources_[current];
237 << heap_.top().first << ", file: " << sources_[current]; local
256 vector<string> sources_; // and corresponding file names member in class:fst::STListReader
sttable.h 122 : sources_(filenames), entry_(0), error_(false) {
210 << sources_[current_];
283 FSTERROR() << "STTableReader: error reading file: " << sources_[i];
306 << keys_[current_] << ", file: " << sources_[current_]; local
314 vector<string> sources_; // and corresponding file names member in class:fst::STTableReader
  /external/openfst/src/include/fst/
shortest-distance.h 106 vector<StateId> sources_; // Source ID for ith state in 'distance_', member in class:fst::ShortestDistanceState
155 while (sources_.size() <= source)
156 sources_.push_back(kNoStateId);
157 sources_[source] = source_id_;
190 while (sources_.size() <= arc.nextstate)
191 sources_.push_back(kNoStateId);
192 if (sources_[arc.nextstate] != source_id_) {
196 sources_[arc.nextstate] = source_id_;
  /external/openfst/src/include/fst/extensions/pdt/
expand.h 475 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;
    [all...]

Completed in 119 milliseconds