Home | History | Annotate | Download | only in protobuf

Lines Matching refs:dependency

409   // checkpoint in the stack during dependency building.
1736 proto->add_dependency(dependency(i)->name());
2127 dependency(i)->name());
2130 dependency(i)->name());
2133 dependency(i)->name());
2799 // dependency of this file, it will fail, but will set
3334 // (i.e., "missing dependency" rather than "type is not defined").
3369 // that that file is not a direct dependency of the file we are currently
3371 // dependency also defines the same package. We can't really rule out this
3376 // Note: A dependency may be NULL if it was not found or had errors.
3765 "Import \"" + proto.dependency(index) + "\" was listed twice.");
3772 message = "Import \"" + proto.dependency(index) +
3775 message = "Import \"" + proto.dependency(index) +
3838 if (tables_->FindFile(proto.dependency(i)) == NULL &&
3840 pool_->underlay_->FindFileByName(proto.dependency(i)) == NULL)) {
3842 pool_->TryFindFileInFallbackDatabase(proto.dependency(i));
3923 if (!seen_dependencies.insert(proto.dependency(i)).second) {
3927 const FileDescriptor* dependency = tables_->FindFile(proto.dependency(i));
3928 if (dependency == NULL && pool_->underlay_ != NULL) {
3929 dependency = pool_->underlay_->FindFileByName(proto.dependency(i));
3932 if (dependency == NULL) {
3935 dependency = NewPlaceholderFile(proto.dependency(i));
3945 (dependency->public_dependency_count() == 0)) {
3946 unused_dependency_.insert(dependency);
3950 result->dependencies_[i] = dependency;
3958 // Only put valid public dependency indexes.
3963 unused_dependency_.erase(result->dependency(index));
3967 "Invalid public dependency index.");
3972 // Build dependency set
3975 RecordPublicDependencies(result->dependency(i));
3989 "Invalid weak dependency index.");
5103 if (IsLite(file->dependency(i))) {
5109 "imports \"" + file->dependency(i)->name() + "\" which is.");