Home
last modified time | relevance | path

Searched refs:mHistory (Results 1 – 3 of 3) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DMotionBlurComponent.java23 private BlurRecord[] mHistory; field in MotionBlurComponent
39 mHistory = new BlurRecord[STEP_COUNT]; in MotionBlurComponent()
41 mHistory[x] = new BlurRecord(); in MotionBlurComponent()
50 mHistory[x].texture = null; in reset()
51 mHistory[x].position.zero(); in reset()
72 mHistory[mCurrentStep].texture = currentTexture; in update()
73 mHistory[mCurrentStep].position.set(((GameObject)parent).getPosition()); in update()
74 mHistory[mCurrentStep].width = drawable.getWidth(); in update()
75 mHistory[mCurrentStep].height = drawable.getHeight(); in update()
77 mHistory[mCurrentStep].crop[0] = drawableCrop[0]; in update()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DDataUsageController.java162 final NetworkStatsHistory mHistory; in getDataUsageInfo() local
164 mHistory = session.getHistoryForNetwork(template, FIELDS); in getDataUsageInfo()
166 mHistory = session.getHistoryForUid(template, uId, SET_ALL, 0, FIELDS); in getDataUsageInfo()
181 final NetworkStatsHistory.Entry entry = mHistory.getValues(start, end, now, null); in getDataUsageInfo()
189 usage.usageLevel = mHistory.getTotalBytes(); in getDataUsageInfo()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptEditor.java78 private EditHistory mHistory; field in ScriptEditor
121 mHistory = new EditHistory(); in onCreate()
122 mWatcher = new ContentTextWatcher(mHistory); in onCreate()
536 EditItem edit = mHistory.getPrevious(); in undo()
554 EditItem edit = mHistory.getNext(); in redo()