Home
last modified time | relevance | path

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

/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecatedAPIChecker.java354 List<String> nameList = new ArrayList<String>(); in getParamNames() local
392 nameList.add(p); in getParamNames()
396 return nameList; in getParamNames()
411 List<String> nameList = new ArrayList<String>(); in toTypeNameList() local
481 nameList.add(s.toString()); in toTypeNameList()
484 return nameList; in toTypeNameList()
/external/javassist/src/main/javassist/bytecode/
DClassFile.java525 public void setInterfaces(String[] nameList) { in setInterfaces() argument
527 if (nameList != null) { in setInterfaces()
528 int n = nameList.length; in setInterfaces()
531 interfaces[i] = constPool.addClassInfo(nameList[i]); in setInterfaces()
/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