/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 | 70 XsdType type = element.getType(); in CppCodeGenerator() 152 XsdType type = element.getType(); in print() 213 XsdType type = element.getType(); in printPrototype() 247 if (element.getRef() == null && element.getType().getRef() == null in printClass() 248 && element.getType() instanceof XsdComplexType) { in printClass() 252 XsdComplexType innerType = (XsdComplexType) element.getType(); in printClass() 257 cppType = parseType(elementValue.getType(), getElementName(elementValue)); in printClass() 269 XsdType type = resolveAttribute(attribute).getType(); in printClass() 345 CppType cppType = parseType(elementValue.getType(), elementValue.getName()); in printParser() 350 XsdType type = resolveAttribute(attribute).getType(); in printParser() [all …]
|
/system/tools/xsdc/src/com/android/xsdc/java/ |
D | JavaCodeGenerator.java | 63 XsdType type = element.getType(); in JavaCodeGenerator() 105 XsdType type = element.getType(); in print() 194 if (element.getRef() == null && element.getType().getRef() == null in printClass() 195 && element.getType() instanceof XsdComplexType) { in printClass() 198 XsdComplexType innerType = (XsdComplexType) element.getType(); in printClass() 204 javaType = parseType(elementValue.getType(), getElementName(elementValue)); in printClass() 216 XsdType type = resolveAttribute(attribute).getType(); in printClass() 279 JavaType javaType = parseType(elementValue.getType(), elementValue.getName()); in printParser() 284 XsdType type = resolveAttribute(attribute).getType(); in printParser() 364 JavaType javaType = parseType(elementValue.getType(), elementValue.getName()); in printWriter() [all …]
|
/system/netd/server/ |
D | NetworkController.cpp | 131 if (entry.second->getType() == Network::VIRTUAL) { in modifyFallthrough() 181 if (network->getType() != Network::PHYSICAL) { in setDefaultNetwork() 192 if (!network || network->getType() != Network::PHYSICAL) { in setDefaultNetwork() 232 if (network && network->getType() == Network::VIRTUAL && !resolv_has_nameservers(*netId)) { in getNetworkForDnsLocked() 360 return network && network->getType() == Network::VIRTUAL; in isVirtualNetworkLocked() 469 } else if (network->getType() == Network::VIRTUAL) { in destroyNetwork() 565 if (network->getType() != Network::PHYSICAL) { in setPermissionForNetworks() 584 if (network->getType() != Network::VIRTUAL) { in addUsersToNetwork() 601 if (network->getType() != Network::VIRTUAL) { in removeUsersFromNetwork() 712 if (network->getType() == Network::PHYSICAL) { in dump() [all …]
|
D | LocalNetwork.h | 29 Type getType() const override;
|
D | DummyNetwork.cpp | 37 Network::Type DummyNetwork::getType() const { in getType() function in android::net::DummyNetwork
|
D | DummyNetwork.h | 30 Type getType() const override;
|
D | Network.h | 41 virtual Type getType() const = 0;
|
D | LocalNetwork.cpp | 33 Network::Type LocalNetwork::getType() const { in getType() function in android::net::LocalNetwork
|
D | VirtualNetwork.h | 46 Type getType() const override;
|
D | PhysicalNetwork.h | 47 Type getType() const override;
|
D | Network.cpp | 65 switch (getType()) { in toString()
|
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 | 40 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
|