Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/cpp/evs/support_library/
H A DConfigManager.cpp40 const char* childName, in readChildNodeAsFloat() argument
45 Json::Value childNode = parentNode[childName]; in readChildNodeAsFloat()
47 printf("Missing or invalid field %s in record %s", childName, groupName); in readChildNodeAsFloat()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DClusterAlbumSet.java106 String childName = clustering.getClusterName(i); in updateClusters() local
108 childPath = mPath.getChild(Uri.encode(childName)); in updateClusters()
124 album.setName(childName); in updateClusters()
/aosp12/packages/services/Car/cpp/evs/apps/default/
H A DConfigManager.cpp36 const char* childName, in readChildNodeAsFloat() argument
41 Json::Value childNode = parentNode[childName]; in readChildNodeAsFloat()
43 printf("Missing or invalid field %s in record %s", childName, groupName); in readChildNodeAsFloat()
/aosp12/frameworks/layoutlib/bridge/src/android/view/
H A DLayoutInflater_Delegate.java158 final String childName = childParser.getName(); in parseInclude() local
160 if (TAG_MERGE.equals(childName)) { in parseInclude()
164 final View view = thisInflater.createViewFromTag(parent, childName, in parseInclude()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DUserTypeFactory.java382 final String childName = parser.getName(); in customizeBuilders() local
383 if ("default-restrictions".equals(childName)) { in customizeBuilders()
387 } else if (isProfile && "badge-labels".equals(childName)) { in customizeBuilders()
389 } else if (isProfile && "badge-colors".equals(childName)) { in customizeBuilders()
391 } else if (isProfile && "badge-colors-dark".equals(childName)) { in customizeBuilders()
394 Slog.w(LOG_TAG, "Unrecognized tag " + childName + " in " in customizeBuilders()
/aosp12/system/tools/hidl/
H A DVectorType.cpp298 const std::string childName = "_hidl_" + sanitizedName + "_child"; in emitReaderWriterEmbedded() local
299 out << "size_t " << childName << ";\n\n"; in emitReaderWriterEmbedded()
312 childName, in emitReaderWriterEmbedded()
348 childName, in emitReaderWriterEmbedded()
H A DType.cpp551 const std::string &childName, in emitReaderWriterEmbeddedForTypeName() argument
591 if (!childName.empty()) { in emitReaderWriterEmbeddedForTypeName()
593 << childName; in emitReaderWriterEmbeddedForTypeName()
H A DType.h334 const std::string &childName,
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/indexing/
H A DIndexDataConverter.java141 final String childName = classToTitleMap.get(pair.second); in convertSiteMapPairs() local
142 if (TextUtils.isEmpty(parentName) || TextUtils.isEmpty(childName)) { in convertSiteMapPairs()
144 + pair + parentName + childName); in convertSiteMapPairs()
146 pairs.add(new SiteMapPair(pair.first, parentName, pair.second, childName)); in convertSiteMapPairs()
/aosp12/build/soong/finder/
H A Dfinder.go1472 for childName := range node.children {
1473 entries.DirNames = append(entries.DirNames, childName)
1484 for _, childName := range dirNames {
1485 child, ok := node.children[childName]
/aosp12/frameworks/base/core/java/android/view/
H A DLayoutInflater.java1230 final String childName = childParser.getName(); in parseInclude() local
1232 if (TAG_MERGE.equals(childName)) { in parseInclude()
1237 final View view = createViewFromTag(parent, childName, in parseInclude()