/system/tools/hidl/c2hal/ |
D | FunctionDeclaration.cpp | 51 const Type* FunctionDeclaration::getType() const { in getType() function in android::FunctionDeclaration 60 if (!getType()->isVoid()) { in generateSource() 62 << getType()->decorateName(getName() + "Ret") in generateSource() 70 out << getType()->decorateName("(*" + getName() + ")"); in generateParameterSource() 80 if (var->getType()->isVoid()) { in processContents()
|
D | Expression.cpp | 89 Type getType(const AST &ast) override { in getType() function 90 return mInner->getType(ast); in getType() 107 Type getType(const AST &ast) override { in getType() function 141 Type getType(const AST &ast) override { in getType() function 142 return mRhs->getType(ast); in getType() 164 Type getType(const AST &ast) override { in getType() function 165 return coalesceTypes(mLhs->getType(ast), mRhs->getType(ast)); in getType() 189 Type getType(const AST &ast) override { in getType() function 190 return coalesceTypes(mMhs->getType(ast), mRhs->getType(ast)); in getType() 212 Type getType(const AST &) override { in getType() function [all …]
|
D | VarDeclaration.cpp | 40 Type* VarDeclaration::getType() const { in getType() function in android::VarDeclaration 45 out << getType()->decorateName(getName()) in generateSource() 50 out << getType()->decorateName(getName()); in generateParameterSource()
|
D | VarDeclaration.h | 31 Type* getType() const;
|
D | FunctionDeclaration.h | 37 const Type * getType() const;
|
D | Define.cpp | 58 mExpressionType = mExpression->getType(ast); in processContents()
|
D | Expression.h | 77 virtual Type getType(const AST &scope) = 0;
|
D | CompositeDeclaration.cpp | 126 if(var->getType()->isHwDevice()) { in processContents()
|
/system/tools/xsdc/src/com/android/xsdc/cpp/ |
D | CppCodeGenerator.java | 68 XsdType type = element.getType(); in CppCodeGenerator() 137 XsdType type = element.getType(); in print() 185 XsdType type = element.getType(); in printPrototype() 215 if (element.getRef() == null && element.getType().getRef() == null in printClass() 216 && element.getType() instanceof XsdComplexType) { in printClass() 220 XsdComplexType innerType = (XsdComplexType) element.getType(); in printClass() 225 cppType = parseType(elementValue.getType(), getElementName(elementValue)); in printClass() 231 XsdType type = resolveAttribute(attribute).getType(); in printClass() 295 CppType cppType = parseType(elementValue.getType(), elementValue.getName()); in printParser() 300 XsdType type = resolveAttribute(attribute).getType(); in printParser() [all …]
|
/system/tools/xsdc/src/com/android/xsdc/java/ |
D | JavaCodeGenerator.java | 61 XsdType type = element.getType(); in JavaCodeGenerator() 103 XsdType type = element.getType(); in print() 171 if (element.getRef() == null && element.getType().getRef() == null in printClass() 172 && element.getType() instanceof XsdComplexType) { in printClass() 175 XsdComplexType innerType = (XsdComplexType) element.getType(); in printClass() 181 javaType = parseType(elementValue.getType(), getElementName(elementValue)); in printClass() 187 XsdType type = resolveAttribute(attribute).getType(); in printClass() 247 JavaType javaType = parseType(elementValue.getType(), elementValue.getName()); in printParser() 252 XsdType type = resolveAttribute(attribute).getType(); in printParser() 349 JavaType javaType = parseType(element.getType(), element.getName()); in printXmlParser() [all …]
|
/system/netd/server/ |
D | NetworkController.cpp | 132 if (entry.second->getType() == Network::VIRTUAL) { in modifyFallthrough() 166 if (network->getType() != Network::PHYSICAL) { in setDefaultNetwork() 177 if (!network || network->getType() != Network::PHYSICAL) { in setDefaultNetwork() 217 if (network && network->getType() == Network::VIRTUAL && in getNetworkForDnsLocked() 351 return network && network->getType() == Network::VIRTUAL; in isVirtualNetworkLocked() 460 } else if (network->getType() == Network::VIRTUAL) { in destroyNetwork() 548 if (network->getType() != Network::PHYSICAL) { in setPermissionForNetworks() 567 if (network->getType() != Network::VIRTUAL) { in addUsersToNetwork() 584 if (network->getType() != Network::VIRTUAL) { in removeUsersFromNetwork() 690 if (network->getType() == Network::PHYSICAL) { in dump() [all …]
|
D | DummyNetwork.cpp | 37 Network::Type DummyNetwork::getType() const { in getType() function in android::net::DummyNetwork
|
D | LocalNetwork.h | 31 Type getType() const override;
|
D | DummyNetwork.h | 32 Type getType() const override;
|
D | LocalNetwork.cpp | 33 Network::Type LocalNetwork::getType() const { in getType() function in android::net::LocalNetwork
|
D | Network.h | 43 virtual Type getType() const = 0;
|
D | VirtualNetwork.h | 49 Type getType() const override;
|
D | Network.cpp | 65 switch (getType()) { in toString()
|
D | PhysicalNetwork.h | 49 Type getType() const override;
|
D | VirtualNetwork.cpp | 93 Network::Type VirtualNetwork::getType() const { in getType() function in android::net::VirtualNetwork
|
/system/tools/xsdc/src/com/android/xsdc/tag/ |
D | XsdAttribute.java | 38 public XsdType getType() { in getType() method in XsdAttribute
|
D | XsdElement.java | 41 public XsdType getType() { in getType() method in XsdElement
|
/system/nfc/utils/include/ |
D | config.h | 30 Type getType() const;
|
/system/vold/ |
D | MoveStorage.cpp | 201 if (from->getType() != VolumeBase::Type::kEmulated) goto fail; in moveStorageInternal() 202 if (to->getType() != VolumeBase::Type::kEmulated) goto fail; in moveStorageInternal()
|
/system/vold/model/ |
D | VolumeBase.h | 84 Type getType() const { return mType; } in getType() function
|