HomeSort by relevance Sort by last modified time
    Searched refs:allTags (Results 1 - 6 of 6) sorted by null

  /build/make/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.js 3 var allTags = {};
57 * Populates the allTags array with tag data from the ANDROID_TAGS
63 allTags[tag] = {
86 if (tag in allTags) {
87 if (allTags[tag].tagClass == 'type') {
89 } else if (allTags[tag].tagClass == 'topic') {
96 return '<strong>' + allTags[item].displayTag + '</strong>';
114 if (tag.toLowerCase() in allTags) {
124 return '<strong>' + allTags[item].displayTag + '</strong>';
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionDescriptor.java 46 static int[] allTags() {
  /prebuilts/go/darwin-x86/src/go/build/
build.go 390 AllTags []string // tags that can influence file selection in this directory
720 allTags := make(map[string]bool)
737 match, data, filename, err := ctxt.matchFile(p.Dir, name, allTags, &p.BinaryOnly)
878 allTags["cgo"] = true
899 for tag := range allTags {
900 p.AllTags = append(p.AllTags, tag)
902 sort.Strings(p.AllTags)
1061 // If allTags is non-nil, matchFile records any encountered build tag
1062 // by setting allTags[tag] = true
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
build.go 390 AllTags []string // tags that can influence file selection in this directory
720 allTags := make(map[string]bool)
737 match, data, filename, err := ctxt.matchFile(p.Dir, name, allTags, &p.BinaryOnly)
878 allTags["cgo"] = true
899 for tag := range allTags {
900 p.AllTags = append(p.AllTags, tag)
902 sort.Strings(p.AllTags)
1061 // If allTags is non-nil, matchFile records any encountered build tag
1062 // by setting allTags[tag] = true
    [all...]
  /external/fonttools/Lib/fontTools/
merge.py 735 allTags = reduce(set.union, (list(font.keys()) for font in fonts), set())
736 allTags.remove('GlyphOrder')
737 allTags.remove('cmap')
738 allTags.remove('GSUB')
739 allTags = ['cmap', 'GSUB'] + list(allTags)
740 for tag in allTags:
  /frameworks/av/camera/
VendorTagDescriptor.cpp 134 Vector<uint32_t> allTags;
168 allTags.add(tag);
202 LOG_ALWAYS_FATAL_IF(static_cast<size_t>(tagCount) != allTags.size(),
203 "tagCount must be the same as allTags size");
206 uint32_t tag = allTags[i];

Completed in 574 milliseconds