Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Categories

306   /// All of the categories that have been generated for this compilation units.
307 std::vector<llvm::Constant*> Categories;
399 /// This structure is used by both classes and categories, and contains a next
415 /// Generates a list of referenced protocols. Classes, categories, and
1705 // Create the protocol list structure used in classes, categories and so on
1982 Categories.push_back(llvm::ConstantExpr::getBitCast(
2075 Categories.push_back(llvm::ConstantExpr::getBitCast(
2382 if (Classes.empty() && Categories.empty() && ConstantStrings.empty() &&
2428 // Array of classes, categories, and constant objects
2430 Classes.size() + Categories.size() + 2);
2499 // Number of categories defined
2501 Categories.size()));
2502 // Create an array of classes, then categories, then static object instances
2503 Classes.insert(Classes.end(), Categories.begin(), Categories.end());