Home
last modified time | relevance | path

Searched refs:mCurrentType (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/xmlparser/
DMediaCodecsXmlParser.cpp350 mCurrentType == mCurrentCodec->second.typeMap.end(); in startElementHandler()
406 mCurrentType = mCurrentCodec->second.typeMap.end(); in endElementHandler()
553 mCurrentType = mCurrentCodec->second.typeMap.insert( in addMediaCodecFromAttributes()
556 mCurrentType = mCurrentCodec->second.typeMap.end(); in addMediaCodecFromAttributes()
566 mCurrentType = mCurrentCodec->second.typeMap.find(type); in addMediaCodecFromAttributes()
567 if (mCurrentType == mCurrentCodec->second.typeMap.end()) { in addMediaCodecFromAttributes()
573 mCurrentType = mCurrentCodec->second.typeMap.begin(); in addMediaCodecFromAttributes()
637 mCurrentType = mCurrentCodec->second.typeMap.find(name); in addTypeFromAttributes()
639 if (mCurrentType != mCurrentCodec->second.typeMap.end()) { in addTypeFromAttributes()
643 mCurrentType = mCurrentCodec->second.typeMap.insert( in addTypeFromAttributes()
[all …]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
DCachedPathIteratorFactory.java287 private int mCurrentType; field in CachedPathIteratorFactory.CachedPathIterator
339 getShapeEndPoint(mCurrentType, mCurrentCoords, mLastPoint); in next()
344 mCurrentType = mTypes[mNextIndex]; in next()
347 if (mOffsetLength > 0f && (mCurrentType == SEG_CUBICTO || mCurrentType == SEG_QUADTO)) { in next()
362 if (mCurrentType == SEG_CUBICTO) { in next()
379 System.arraycopy(mCurrentCoords, 0, coords, 0, getNumberOfPoints(mCurrentType) * 2); in currentSegment()
380 return mCurrentType; in currentSegment()
420 mCurrentType = PathIterator.SEG_MOVETO; in jumpToSegment()
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DHumanInteractionClassifier.java54 private int mCurrentType = Classifier.GENERIC; field in HumanInteractionClassifier
117 mCurrentType = type; in setType()
133 if (mCurrentType == Classifier.NOTIFICATION_DRAG_DOWN) { in onTouchEvent()
171 float e = c.getFalseTouchEvaluation(mCurrentType, stroke); in addTouchEvent()
190 float e = c.getFalseTouchEvaluation(mCurrentType); in addTouchEvent()
/frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
DMediaCodecsXmlParser.h148 TypeMap::iterator mCurrentType; variable