Home | History | Annotate | Download | only in Reflection

Lines Matching refs:dependency

101                 if (index < 0 || index >= proto.Dependency.Count)
103 throw new DescriptorValidationException(@this, "Invalid public dependency index.");
105 string name = proto.Dependency[index];
111 throw new DescriptorValidationException(@this, "Invalid public dependency: " + name);
247 if (dependencies.Length != proto.Dependency.Count)
254 for (int i = 0; i < proto.Dependency.Count; i++)
256 if (dependencies[i].Name != proto.Dependency[i])
262 proto.Dependency[i] + " but was: " + dependencies[i].Name);
333 /// This is used for protos which take a direct dependency on <c>descriptor.proto</c>, typically for
337 /// C# codegen in protoc automatically uses this property when it detects a dependency on <c>descriptor.proto</c>.