/frameworks/support/recommendation/src/android/support/app/recommendation/ |
D | RecommendationExtender.java | 63 private String[] mTypes; field in RecommendationExtender 87 mTypes = contentBundle.getStringArray(KEY_CONTENT_TYPE); in RecommendationExtender() 106 if (mTypes != null) { in extend() 107 contentBundle.putStringArray(KEY_CONTENT_TYPE, mTypes); in extend() 141 mTypes = types; in setContentTypes() 155 return mTypes; in getContentTypes() 166 if (mTypes == null || mTypes.length == 0) { in getPrimaryContentType() 169 return mTypes[0]; in getPrimaryContentType()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
D | CachedPathIteratorFactory.java | 45 private final int[] mTypes; field in CachedPathIteratorFactory 67 mTypes = new int[typesArray.size()]; in CachedPathIteratorFactory() 68 mCoordinates = new float[mTypes.length][]; in CachedPathIteratorFactory() 70 mTypes[i] = typesArray.get(i); in CachedPathIteratorFactory() 75 mSegmentsLength = new float[mTypes.length]; in CachedPathIteratorFactory() 83 for (int i = 0; i < mTypes.length; i++) { in CachedPathIteratorFactory() 84 switch (mTypes[i]) { in CachedPathIteratorFactory() 106 mTypes[i] = PathIterator.SEG_LINETO; in CachedPathIteratorFactory() 331 if (mNextIndex >= mTypes.length) { in next() 344 mCurrentType = mTypes[mNextIndex]; in next() [all …]
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/ |
D | FakeAdapter.java | 43 private final List<ResourceReference> mTypes = new ArrayList<ResourceReference>(); field in FakeAdapter 66 int typeIndex = mTypes.indexOf(viewRef); in FakeAdapter() 68 typeIndex = mTypes.size(); in FakeAdapter() 69 mTypes.add(viewRef); in FakeAdapter() 122 return mTypes.size(); in getViewTypeCount()
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/ |
D | AnnotationTypeUtil.java | 31 javax.lang.model.util.Types mTypes; field in AnnotationTypeUtil 35 mTypes = annotationAnalyzer.getTypeUtils(); in AnnotationTypeUtil() 73 … return CLASS_PREFIX + mTypes.erasure(typeMirror).toString().replace('.', '/') + CLASS_SUFFIX; in getDescription() 86 final int argStart = mTypes.erasure(executableType).toString().indexOf('('); in getDescription()
|
/frameworks/rs/ |
D | rsType.cpp | 36 for (uint32_t ct = 0; ct < mRSC->mStateType.mTypes.size(); ct++) { in preDestroy() 37 if (mRSC->mStateType.mTypes[ct] == this) { in preDestroy() 38 mRSC->mStateType.mTypes.removeAt(ct); in preDestroy() 72 rsAssert(!mTypes.size()); in ~TypeState() 232 for (uint32_t ct=0; ct < stc->mTypes.size(); ct++) { in getTypeRef() 233 Type *t = stc->mTypes[ct]; in getTypeRef() 290 stc->mTypes.push(nt); in getTypeRef()
|
D | rsScriptC.cpp | 127 if (mSlots[ct].get() && !mTypes[ct].get()) { in setupScript() 128 mTypes[ct].set(mSlots[ct]->getType()); in setupScript() 131 if (!mTypes[ct].get()) in setupScript() 454 mTypes = new ObjectBaseRef<const Type>[mHal.info.exportedVariableCount]; in runCompiler()
|
D | rsScript.cpp | 28 mTypes = nullptr; in Script() 39 if (mTypes) { in ~Script() 40 delete [] mTypes; in ~Script() 41 mTypes = nullptr; in ~Script()
|
D | rsScriptIntrinsic.cpp | 38 mTypes = new ObjectBaseRef<const Type>[2]; in init()
|
D | rsScript.h | 158 ObjectBaseRef<const Type> *mTypes; variable
|
D | rsType.h | 164 Vector<Type *> mTypes; variable
|
/frameworks/rs/api/ |
D | Specification.cpp | 856 for (auto i : mTypes) { in ~SystemSpecification() 886 return findOrCreate<Type>(name, &mTypes, created); in findOrCreateType() 919 for (auto i : mTypes) { in getMaximumApiLevel() 938 cout << "Successfully processed " << mTypes.size() << " types, " << mConstants.size() in generateFiles() 950 auto t = mTypes.find(name); in getHtmlAnchor() 951 if (t != mTypes.end()) { in getHtmlAnchor()
|
D | Specification.h | 580 std::map<std::string, Type*> mTypes; variable 602 const std::map<std::string, Type*>& getTypes() const { return mTypes; } in getTypes()
|
/frameworks/av/media/libstagefright/ |
D | MediaCodecList.cpp | 304 for (size_t j = 0; j < mTypes.size(); ++j) { in parseTopLevelXMLFile() 305 uint32_t value = mTypes.valueAt(j); in parseTopLevelXMLFile() 307 if (info.mTypes & (1ul << value)) { in parseTopLevelXMLFile() 308 line.append(mTypes.keyAt(j)); in parseTopLevelXMLFile()
|
/frameworks/base/media/java/android/media/ |
D | MediaRouter.java | 2620 int mTypes; field in MediaRouter.RouteCategory 2626 mTypes = types; in RouteCategory() 2632 mTypes = types; in RouteCategory() 2694 return mTypes; in getSupportedTypes() 2719 return "RouteCategory{ name=" + mName + " types=" + typesToString(mTypes) + in toString()
|
/frameworks/base/tools/aapt/ |
D | ResourceTable.h | 550 const DefaultKeyedVector<String16, sp<Type> >& getTypes() const { return mTypes; } in getTypes() 562 DefaultKeyedVector<String16, sp<Type> > mTypes; variable
|
D | ResourceTable.cpp | 4107 sp<Type> t = mTypes.valueFor(type); in getType() 4110 mTypes.add(type, t); in getType() 4218 sp<Type> attr = mTypes.valueFor(String16("attr")); in movePrivateAttrs()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerService.java | 18042 private int mTypes; field in PackageManagerService.DumpState 18051 if (mTypes == 0 && type != DUMP_PREFERRED_XML) { in isDumping() 18055 return (mTypes & type) != 0; in isDumping() 18059 mTypes |= type; in setDump()
|