Searched defs:Constant (Results 1 - 2 of 2) sorted by relevance

/frameworks/rs/api/
H A DSpecification.cpp277 Constant::~Constant() {
344 Constant* constant = systemSpecification.findOrCreateConstant(name, &created);
689 Constant* constant = spec->getConstant();
690 mDocumentedConstants.insert(pair<string, Constant*>(constant->getName(), constant));
792 Constant* SystemSpecification::findOrCreateConstant(const string& name, bool* created) {
793 return findOrCreate<Constant>(name, &mConstants, created);
H A DSpecification.h28 class Constant;
179 * We'll only have one instance of Constant for each name.
181 class Constant : public Definition { class in inherits:Definition
186 Constant(const std::string& name) : Definition(name) {} function in class:Constant
187 ~Constant();
259 Constant* mConstant; // Not owned
263 ConstantSpecification(Constant* constant) : mConstant(constant) {}
265 Constant* getConstant() const { return mConstant; }
493 std::map<std::string, Constant*> mDocumentedConstants;
516 const std::map<std::string, Constant*>
[all...]

Completed in 109 milliseconds