Lines Matching refs:Scope
27 Scope::Scope(const char *localName, in Scope() function in android::Scope
31 Scope::~Scope(){} in ~Scope()
33 bool Scope::addType(NamedType *type, std::string *errorMsg) { in addType()
53 NamedType *Scope::lookupType(const FQName &fqName) const { in lookupType()
75 Scope *outerScope = static_cast<Scope *>(outerType); in lookupType()
82 LocalIdentifier *Scope::lookupIdentifier(const std::string & /*name*/) const { in lookupIdentifier()
86 bool Scope::isScope() const { in isScope()
90 Interface *Scope::getInterface() const { in getInterface()
98 bool Scope::containsSingleInterface(std::string *ifaceName) const { in containsSingleInterface()
109 bool Scope::containsInterfaces() const { in containsInterfaces()
119 status_t Scope::forEachType(std::function<status_t(Type *)> func) const { in forEachType()
131 status_t Scope::emitTypeDeclarations(Formatter &out) const { in emitTypeDeclarations()
137 status_t Scope::emitGlobalTypeDeclarations(Formatter &out) const { in emitGlobalTypeDeclarations()
143 status_t Scope::emitGlobalHwDeclarations(Formatter &out) const { in emitGlobalHwDeclarations()
149 status_t Scope::emitJavaTypeDeclarations( in emitJavaTypeDeclarations()
156 status_t Scope::emitTypeDefinitions( in emitTypeDefinitions()
163 const std::vector<NamedType *> &Scope::getSubTypes() const { in getSubTypes()
167 status_t Scope::emitVtsTypeDeclarations(Formatter &out) const { in emitVtsTypeDeclarations()
173 bool Scope::isJavaCompatible() const { in isJavaCompatible()
183 bool Scope::containsPointer() const { in containsPointer()
193 void Scope::appendToExportedTypesVector( in appendToExportedTypesVector()