/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 | 81 XsdType type = element.getType(); in CppCodeGenerator() 215 XsdType type = element.getType(); in print() 312 XsdType type = element.getType(); in printPrototype() 346 if (element.getRef() == null && element.getType().getRef() == null in printClass() 347 && element.getType() instanceof XsdComplexType) { in printClass() 351 XsdComplexType innerType = (XsdComplexType) element.getType(); in printClass() 356 cppType = parseType(elementValue.getType(), getElementName(elementValue)); in printClass() 368 XsdType type = resolveAttribute(attribute).getType(); in printClass() 445 CppType cppType = parseType(elementValue.getType(), elementValue.getName()); in printParser() 450 XsdType type = resolveAttribute(attribute).getType(); in printParser() [all …]
|
/system/tools/xsdc/src/com/android/xsdc/java/ |
D | JavaCodeGenerator.java | 72 XsdType type = element.getType(); in JavaCodeGenerator() 114 XsdType type = element.getType(); in print() 215 if (element.getRef() == null && element.getType().getRef() == null in printClass() 216 && element.getType() instanceof XsdComplexType) { in printClass() 219 XsdComplexType innerType = (XsdComplexType) element.getType(); in printClass() 225 javaType = parseType(elementValue.getType(), getElementName(elementValue)); in printClass() 237 XsdType type = resolveAttribute(attribute).getType(); in printClass() 300 JavaType javaType = parseType(elementValue.getType(), elementValue.getName()); in printParser() 305 XsdType type = resolveAttribute(attribute).getType(); in printParser() 387 JavaType javaType = parseType(elementValue.getType(), elementValue.getName()); in printWriter() [all …]
|
/system/chre/java/test/cross_validation/src/com/google/android/chre/test/crossvalidator/ |
D | ChreCrossValidatorSensor.java | 205 apSensorType, mSensor.getType())); in parseInfoResponseFromNanoappMessage() 231 sensorType, mSensor.getType())); in parseSensorDataFromNanoappMessage() 265 if (mSensor.getType() == Sensor.REPORTING_MODE_CONTINUOUS) { in getAwaitDataTimeoutInMs() 278 int sensorType = event.sensor.getType(); in onSensorChanged() 281 sensorType, mSensor.getType())); in onSensorChanged() 313 return sensorType == mSensor.getType(); in isSensorTypeCurrent() 484 return AP_TO_CHRE_SENSOR_TYPE.get(mSensor.getType()); in getChreSensorType() 545 if (apDp.sensor.getType() == Sensor.TYPE_PROXIMITY) { in datapointValuesAreSimilar()
|
/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 | 199 if (from->getType() != VolumeBase::Type::kEmulated) goto fail; in moveStorageInternal() 200 if (to->getType() != VolumeBase::Type::kEmulated) goto fail; in moveStorageInternal()
|
/system/libvintf/xsd/compatibilityMatrix/api/ |
D | current.txt | 18 method public String getType(); 43 method public String getType();
|
/system/vold/model/ |
D | VolumeBase.h | 85 Type getType() const { return mType; } in getType() function
|
D | Disk.cpp | 128 if (vol->getType() == type) { in listVolumes()
|
/system/nfc/utils/ |
D | config.cc | 69 ConfigValue::Type ConfigValue::getType() const { return type_; } in getType() function in ConfigValue
|
/system/extras/simpleperf/ |
D | ETMDecoder.cpp | 427 if (elem.getType() == OCSD_GEN_TRC_ELEM_INSTR_RANGE) { in ProcessElement() 461 } else if (elem.getType() == OCSD_GEN_TRC_ELEM_TRACE_ON) { in ProcessElement() 526 return pkt->getType() >= ETM4_PKT_I_ADDR_CTXT_L_32IS0 && in IsAddrPacket() 527 pkt->getType() <= ETM4_PKT_I_ADDR_L_64IS1; in IsAddrPacket()
|
D | read_elf.cpp | 237 llvm::object::SymbolRef::Type symbol_type = *symbol_ref->getType(); in ReadSymbolTable() 364 if (section_ref.getType() == llvm::ELF::SHT_NOTE) { in GetBuildId()
|
/system/chre/java/test/utils/src/com/google/android/utils/chre/ |
D | ChreTestUtil.java | 277 String type = ContextHubTransaction.typeToString(transaction.getType(), in assertTransactionSuccessSync()
|
/system/libvintf/xsd/halManifest/api/ |
D | current.txt | 60 method public String getType();
|
/system/tools/xsdc/src/com/android/xsdc/ |
D | XsdHandler.java | 623 element.getRef(), element.getType(), element.isMultiple()), in makeChoice() 639 element.getType(), element.isMultiple()), element.isDeprecated(), in makeAll()
|
/system/tools/xsdc/tests/resources/enum_type/api/ |
D | current.txt | 321 method public String getType(); 477 method public attr.enumtype.MixType getType();
|