Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Classes

254   /// All of the classes that have been generated for this compilation units.
255 std::vector<llvm::Constant*> Classes;
346 /// This structure is used by both classes and categories, and contains a next
362 /// Generates a list of referenced protocols. Classes, categories, and
1343 // anyway; the classes will still work with the GNU runtime, they will just
1430 // Create the protocol list structure used in classes, categories and so on
2107 Classes.push_back(ClassStruct);
2113 if (Classes.empty() && Categories.empty() && ConstantStrings.empty() &&
2157 // Array of classes, categories, and constant objects
2159 Classes.size() + Categories.size() + 2);
2224 // Number of classes defined.
2226 Classes.size()));
2230 // Create an array of classes, then categories, then static object instances
2231 Classes.insert(Classes.end(), Categories.begin(), Categories.end());
2233 Classes.push_back(Statics);
2234 Classes.push_back(NULLPtr);
2235 Classes);