Home
last modified time | relevance | path

Searched refs:localName (Results 1 – 19 of 19) sorted by relevance

/system/tools/hidl/
DTypeDef.cpp25 TypeDef::TypeDef(const std::string& localName, const FQName& fullName, const Location& location, in TypeDef() argument
27 : NamedType(localName, fullName, location, parent), mReferencedType(type) {} in TypeDef()
81 out << "typedef " << mReferencedType.localName() << " " << definedName() << ";\n"; in emitHidlDefinition()
DReference.h39 Reference(const std::string& localName, const FQName& fqName, const Location& location,
45 mLocalName(localName) {} in mResolved()
47 Reference(const std::string& localName, T* type, const Location& location,
52 mLocalName(localName) { in mResolved()
125 const std::string& localName() const { return mLocalName; } in localName() function
DNamedType.cpp23 NamedType::NamedType(const std::string& localName, const FQName& fullName, const Location& loc, in NamedType() argument
25 : Type(parent, localName), mFullName(fullName), mLocation(loc) {} in NamedType()
DScope.cpp33 Scope::Scope(const std::string& localName, const FQName& fullName, const Location& location, in Scope() argument
35 : NamedType(localName, fullName, location, parent) {} in Scope()
250 RootScope::RootScope(const char* localName, const FQName& fullName, const Location& location, in RootScope() argument
252 : Scope(localName, fullName, location, parent) {} in RootScope()
DScope.h37 Scope(const std::string& localName, const FQName& fullName, const Location& location,
99 RootScope(const char* localName, const FQName& fullName, const Location& location,
DNamedType.h31 NamedType(const std::string& localName, const FQName& fullName, const Location& loc,
DTypeDef.h28 TypeDef(const std::string& localName, const FQName& fullName, const Location& location,
DInterface.h41 Interface(const std::string& localName, const FQName& fullName, const Location& location,
DCompoundType.h36 CompoundType(Style style, const std::string& localName, const FQName& fullName,
DEnumType.cpp31 EnumType::EnumType(const std::string& localName, const FQName& fullName, const Location& location, in EnumType() argument
33 : Scope(localName, fullName, location, parent), mValues(), mStorageType(storageType) {} in EnumType()
264 out << typeName() << " : " << mStorageType.localName() << " {\n"; in emitHidlDefinition()
DEnumType.h34 EnumType(const std::string& localName, const FQName& fullName, const Location& location,
DInterface.cpp46 Interface::Interface(const std::string& localName, const FQName& fullName, const Location& location, in Interface() argument
48 : Scope(localName, fullName, location, parent), mSuperType(superType), mFileHash(fileHash) {} in Interface()
DAST.h66 FQName makeFullName(const char* localName, Scope* scope) const;
DMethod.cpp258 std::string out = arg->localName() + " " + arg->name(); in fillHidlArgResultTokens()
DAST.cpp506 FQName AST::makeFullName(const char* localName, Scope* scope) const { in makeFullName() argument
507 std::vector<std::string> pathComponents{{localName}}; in makeFullName()
DArrayType.cpp28 : Type(parent, elementType.localName()), mElementType(elementType) { in ArrayType()
DCompoundType.cpp34 CompoundType::CompoundType(Style style, const std::string& localName, const FQName& fullName, in CompoundType() argument
36 : Scope(localName, fullName, location, parent), mStyle(style) {} in CompoundType()
633 out << ref.localName() << " " << ref.name() << ";\n"; in emitFieldHidlDefinition()
DType.cpp749 mDefinedName = mDefinedName + "<" + mElementType.localName() + ">"; in setElementType()
/system/tools/xsdc/src/com/android/xsdc/
DXsdHandler.java114 String uri, String localName, String qName, Attributes attributes) { in startElement() argument
121 stateStack.push(new State(localName, attributeMap)); in startElement()
123 if (localName == "documentation") { in startElement()
129 public void endElement(String uri, String localName, String qName) throws SAXException { in endElement() argument
130 if (documentationFlag && localName != "documentation") { in endElement()