Home
last modified time | relevance | path

Searched refs:mResultType (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/app/search/
DSearchTarget.java100 private final int mResultType; field in SearchTarget
147 mResultType = parcel.readInt(); in SearchTarget()
176 mResultType = resultType; in SearchTarget()
195 return mResultType; in getResultType()
310 parcel.writeInt(mResultType); in writeToParcel()
347 private int mResultType; field in SearchTarget.Builder
376 mResultType = resultType; in Builder()
501 return new SearchTarget(mResultType, mLayoutType, mId, mParentId, mScore, mHidden, in build()
/frameworks/base/services/core/java/com/android/server/vcn/routeselection/
DIpSecPacketLossDetector.java548 @PacketLossResultType private final int mResultType; field in IpSecPacketLossDetector.PacketLossCalculationResult
552 mResultType = type; in PacketLossCalculationResult()
574 return mResultType; in getResultType()
583 return Objects.hash(mResultType, mPacketLossRatePercent); in hashCode()
593 return mResultType == rhs.mResultType in equals()
600 + mResultType in toString()
/frameworks/compile/slang/
Dslang_rs_export_reduce.h78 RSExportType *mResultType; variable
98 mResultType(nullptr) { in RSExportReduce()
158 const RSExportType *getResultType() const { return mResultType; } in getResultType()
Dslang_rs_export_foreach.cpp73 mResultType = FD->getReturnType().getCanonicalType(); in validateAndConstructParams()
96 if (mResultType != C.VoidTy) { in validateAndConstructOldStyleParams()
182 mHasReturnType = (mResultType != C.VoidTy); in validateAndConstructKernelParams()
184 if (mResultType->isPointerType()) { in validateAndConstructKernelParams()
188 << FD->getName() << mResultType.getAsString(); in validateAndConstructKernelParams()
405 const clang::Type *ReturnType = FE->mResultType.getTypePtr(); in Create()
Dslang_rs_export_foreach.h68 clang::QualType mResultType; // return type (if present). variable
81 mResultType(clang::QualType()), mHasReturnType(false), in RSExportForEach()
Dslang_rs_export_reduce.cpp719 if ((mResultType = RSExportType::Create(&S.RSC, PointeeQType.getTypePtr(), in analyzeResultType()
721 const RSExportType *CheckType = mResultType; in analyzeResultType()
723 if (mResultType->getClass() == RSExportType::ExportClassConstantArray) { in analyzeResultType()
724 CheckType = static_cast<const RSExportConstantArrayType *>(mResultType)->getElementType(); in analyzeResultType()
736 mResultType = nullptr; in analyzeResultType()
745 if (mResultType) in analyzeResultType()
746 S.RSC.insertExportReduceResultType(mResultType); in analyzeResultType()