Searched refs:excludableChildFields (Results 1 – 3 of 3) sorted by relevance
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/ |
D | MetadataFilterTest.java | 71 blacklist.put("fixedLine", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 72 blacklist.put("tollFree", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 73 blacklist.put("premiumRate", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 74 blacklist.put("sharedCost", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 75 blacklist.put("personalNumber", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 76 blacklist.put("voip", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 77 blacklist.put("pager", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 78 blacklist.put("uan", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 79 blacklist.put("emergency", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() 80 blacklist.put("voicemail", new TreeSet<String>(MetadataFilter.excludableChildFields)); in testForSpecialBuild() [all …]
|
D | MetadataFilterCoverageTest.java | 63 for (String field : MetadataFilter.excludableChildFields) { in testCoverageOfExcludableChildFields() 71 MetadataFilter.excludableChildFields.size()); in testCoverageOfExcludableChildFields()
|
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/ |
D | MetadataFilter.java | 68 static final TreeSet<String> excludableChildFields = new TreeSet<String>(Arrays.asList( field in MetadataFilter 234 fieldMap.put(group, new TreeSet<String>(excludableChildFields)); in parseFieldMapFromString() 240 } else if (excludableChildFields.contains(group)) { in parseFieldMapFromString() 260 if (!excludableChildFields.contains(child)) { in parseFieldMapFromString() 280 && fieldMap.get(parent).size() != excludableChildFields.size()) { in parseFieldMapFromString() 301 complement.put(parent, new TreeSet<String>(excludableChildFields)); in computeComplement() 306 if (otherChildren.size() != excludableChildFields.size()) { in computeComplement() 308 for (String child : excludableChildFields) { in computeComplement() 330 if (!excludableChildFields.contains(child)) { in shouldDrop()
|