HomeSort by relevance Sort by last modified time
    Searched defs:sectionId (Results 1 - 10 of 10) sorted by null

  /external/cldr/tools/java/org/unicode/cldr/tool/
FindWidths.java 15 import org.unicode.cldr.util.PathHeader.SectionId;
55 SectionId sectionId = ph.getSectionId();
57 || sectionId == SectionId.Special) {
78 SectionId sectionId = ph.getSectionId();
80 || sectionId == SectionId.Special) {
ShowPathHeaderDescriptions.java 16 import org.unicode.cldr.util.PathHeader.SectionId;
48 if (pathHeader.getSectionId() == SectionId.Characters) {
81 Multimap<SectionId, String> sv = TreeMultimap.create();
85 Multimap<R2<SectionId, PageId>, String> spv = TreeMultimap.create();
86 Multimap<R2<SectionId, String>, String> shv = TreeMultimap.create();
89 Multimap<R3<SectionId, PageId, String>, String> sphv = TreeMultimap.create();
90 Multimap<String, R3<SectionId, PageId, String>> valueToKey = TreeMultimap.create();
105 SectionId sectionId = pathHeader.getSectionId();
115 sv.put(sectionId, url)
    [all...]
GenerateChangeChart.java 27 import org.unicode.cldr.util.PathHeader.SectionId;
57 EnumSet<SectionId> sections = EnumSet.noneOf(SectionId.class);
62 Counter<SectionId> counter = new Counter<>();
73 for (SectionId s : SectionId.values()) {
96 // final R4<SectionId, PageId, String, String> key = Row.of(ph.getSectionId(), ph.getPageId(), ph.getHeader(), locale);
111 SectionId lastSectionId = null;
117 SectionId sectionId = pathHeader.getSectionId()
    [all...]
ShowStarredCoverage.java 38 import org.unicode.cldr.util.PathHeader.SectionId;
137 SectionId sectionId = ph.getSectionId();
139 String category = sectionId + "|" + pageId;
140 switch (sectionId) {
142 category = sectionId.toString();
145 category = sectionId + " ? " + (starredPath.contains("@count") ? "long name" : starredPath.contains("/symbol") ? "symbol" : "name");
148 category = sectionId + " ? " + (starredPath.contains("/displayName") ? "field labels"
162 : sectionId.toString();
170 category = sectionId.toString()
    [all...]
  /frameworks/av/camera/
VendorTagDescriptor.cpp 341 uint32_t sectionId = mTagToSectionMap.valueFor(tag);
342 String8 sectionName = mSections[sectionId];
  /frameworks/base/cmds/incidentd/src/
IncidentService.cpp 517 int sectionId = atoi(args[2].string());
519 const Privacy* p = get_privacy_of_section(sectionId);
521 fprintf(err, "Can't find section id %d\n", sectionId);
524 fprintf(err, "Get privacy for %d\n", sectionId);
Reporter.cpp 70 static bool contains_section(const IncidentReportArgs& args, int sectionId) {
71 return args.containsSection(sectionId, section_requires_specific_mention(sectionId));
74 static bool contains_section(const sp<ReportRequest>& args, int sectionId) {
75 return args->containsSection(sectionId);
159 bool ReportRequest::containsSection(int sectionId) const {
160 return args.containsSection(sectionId, section_requires_specific_mention(sectionId));
238 void ReportBatch::forEachListener(int sectionId,
242 if (it->second->containsSection(sectionId)) {
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
PathHeader.java 81 private static EnumNames<SectionId> SectionIdNames = new EnumNames<SectionId>();
88 public enum SectionId {
92 private SectionId(String... alternateNames) {
96 public static SectionId forString(String name) {
106 private static Relation<SectionId, PageId> SectionIdToPageIds = Relation.of(new TreeMap<SectionId, Set<PageId>>(),
144 Alphabetic_Information(SectionId.Core_Data, "Alphabetic Information"), Numbering_Systems(SectionId.Core_Data,
145 "Numbering Systems"), Locale_Name_Patterns(SectionId.Locale_Display_Names, "Locale Name Patterns"), Languages_A_D(SectionId.Locale_Display_Names
    [all...]
  /cts/tests/camera/libctscamera2jni/
native-camera-jni.cpp     [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestPathHeader.java 40 import org.unicode.cldr.util.PathHeader.SectionId;
147 Multimap<PathHeader.PageId, PathHeader.SectionId> pageUniqueness = TreeMultimap.create();
148 Multimap<String, Pair<PathHeader.SectionId, PathHeader.PageId>> headerUniqueness = TreeMultimap.create();
186 final SectionId sectionId = ph.getSectionId();
187 if (sectionId != SectionId.Special) {
188 pageUniqueness.put(ph.getPageId(), sectionId);
189 headerUniqueness.put(ph.getHeader(), new Pair<>(sectionId, ph.getPageId()));
208 for (Entry<PageId, Collection<SectionId>> e : pageUniqueness.asMap().entrySet())
    [all...]

Completed in 119 milliseconds