/system/tools/hidl/ |
D | TypeDef.cpp | 25 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()
|
D | Reference.h | 39 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
|
D | NamedType.cpp | 23 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()
|
D | Scope.cpp | 33 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()
|
D | Scope.h | 37 Scope(const std::string& localName, const FQName& fullName, const Location& location, 99 RootScope(const char* localName, const FQName& fullName, const Location& location,
|
D | NamedType.h | 31 NamedType(const std::string& localName, const FQName& fullName, const Location& loc,
|
D | TypeDef.h | 28 TypeDef(const std::string& localName, const FQName& fullName, const Location& location,
|
D | Interface.h | 41 Interface(const std::string& localName, const FQName& fullName, const Location& location,
|
D | CompoundType.h | 36 CompoundType(Style style, const std::string& localName, const FQName& fullName,
|
D | EnumType.cpp | 31 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()
|
D | EnumType.h | 34 EnumType(const std::string& localName, const FQName& fullName, const Location& location,
|
D | Interface.cpp | 46 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()
|
D | AST.h | 66 FQName makeFullName(const char* localName, Scope* scope) const;
|
D | Method.cpp | 258 std::string out = arg->localName() + " " + arg->name(); in fillHidlArgResultTokens()
|
D | AST.cpp | 506 FQName AST::makeFullName(const char* localName, Scope* scope) const { in makeFullName() argument 507 std::vector<std::string> pathComponents{{localName}}; in makeFullName()
|
D | ArrayType.cpp | 28 : Type(parent, elementType.localName()), mElementType(elementType) { in ArrayType()
|
D | CompoundType.cpp | 34 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()
|
D | Type.cpp | 749 mDefinedName = mDefinedName + "<" + mElementType.localName() + ">"; in setElementType()
|
/system/tools/xsdc/src/com/android/xsdc/ |
D | XsdHandler.java | 114 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()
|