Home | History | Annotate | Download | only in bcinfo

Lines Matching refs:NameList

85 // NameList - A reference that will hold an allocated array of strings
94 // Upon success, the function sets NameList to an array of strings
96 // Count to the number of entries in NameList.
101 const char **&NameList, size_t &Count) {
103 NameList = nullptr;
110 NameList = nullptr;
114 NameList = new const char *[Count];
119 NameList[i] = createStringFromValue(Name->getOperand(0));
123 delete [] NameList[AllocatedIndex];
125 delete [] NameList;
126 NameList = nullptr;