Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/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()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DDescriptors.java2242 final int firstPartLength = name.indexOf('.'); in lookupSymbol() local
2244 if (firstPartLength == -1) { in lookupSymbol()
2247 firstPart = name.substring(0, firstPartLength); in lookupSymbol()
2271 if (firstPartLength != -1) { in lookupSymbol()