Home
last modified time | relevance | path

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

/packages/apps/Gallery2/src/com/android/gallery3d/util/
DReverseGeocoder.java141 String closestCommonLocation = null; in computeAddress() local
174 closestCommonLocation = valueIfEqual(addr1.getAddressLine(0), addr2.getAddressLine(0)); in computeAddress()
175 if (closestCommonLocation != null && !("null".equals(closestCommonLocation))) { in computeAddress()
177 closestCommonLocation += " - " + otherCity; in computeAddress()
179 return closestCommonLocation; in computeAddress()
183 closestCommonLocation = valueIfEqual(addr1.getThoroughfare(), addr2.getThoroughfare()); in computeAddress()
184 if (closestCommonLocation != null && !("null".equals(closestCommonLocation))) { in computeAddress()
185 return closestCommonLocation; in computeAddress()
190 closestCommonLocation = valueIfEqual(addr1Locality, addr2Locality); in computeAddress()
191 if (closestCommonLocation != null && !("".equals(closestCommonLocation))) { in computeAddress()
[all …]