OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sources_
(Results
1 - 6
of
6
) 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
Completed in 916 milliseconds