Home
last modified time | relevance | path

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

/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecatedAPIChecker.java366 List<String> nameList = new ArrayList<>(); in getParamNames() local
406 nameList.add(p); in getParamNames()
410 return nameList; in getParamNames()
425 List<String> nameList = new ArrayList<>(); in toTypeNameList() local
495 nameList.add(s.toString()); in toTypeNameList()
498 return nameList; in toTypeNameList()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServiceConfigInterceptor.java95 List<Map<String, Object>> nameList = in handleUpdate() local
99 nameList != null && !nameList.isEmpty(), "no names in method config %s", methodConfig); in handleUpdate()
100 for (Map<String, Object> name : nameList) { in handleUpdate()
/external/harfbuzz_ng/src/
Dhb-open-file.hh395 Offset16 nameList; /* Offset from beginning of map to member
/external/libxml2/python/
Dlibxml.c1311 PyObject *nameList; in pythonAttributeDecl() local
1323 nameList = PyList_New(count); in pythonAttributeDecl()
1327 PyList_SetItem(nameList, count, newName); in pythonAttributeDecl()
1333 def, defaultValue, nameList); in pythonAttributeDecl()
1336 Py_XDECREF(nameList); in pythonAttributeDecl()
Dlibxml.py236 def attributeDecl(self, elem, name, type, defi, defaultValue, nameList): argument