Home
last modified time | relevance | path

Searched refs:firstPartLength (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DDescriptorPool.cs278 int firstPartLength = name.IndexOf('.'); in LookupSymbol()
279 … string firstPart = firstPartLength == -1 ? name : name.Substring(0, firstPartLength); in LookupSymbol()
305 if (firstPartLength != -1) in LookupSymbol()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java2238 final int firstPartLength = name.indexOf('.'); in lookupSymbol() local
2240 if (firstPartLength == -1) { in lookupSymbol()
2243 firstPart = name.substring(0, firstPartLength); in lookupSymbol()
2267 if (firstPartLength != -1) { in lookupSymbol()