Home | History | Annotate | Download | only in api

Lines Matching defs:Constant

308 Constant::~Constant() {
375 Constant* constant = systemSpecification.findOrCreateConstant(name, &created);
376 ConstantSpecification* spec = new ConstantSpecification(constant);
377 constant->addSpecification(spec);
378 constant->updateFinalVersion(info);
385 constant->scanDocumentationTags(scanner, created, specFile);
778 Constant* constant = spec->getConstant();
779 mDocumentedConstants.insert(pair<string, Constant*>(constant->getName(), constant));
840 } else if (tag == "constant:") {
843 scanner.error() << "Expected function:, type:, or constant:. Found: " << tag << "\n";
881 Constant* SystemSpecification::findOrCreateConstant(const string& name, bool* created) {
882 return findOrCreate<Constant>(name, &mConstants, created);