Searched defs:mBase (Results 1 - 12 of 12) sorted by relevance

/frameworks/av/include/media/
H A DMidiIoWrapper.h41 off64_t mBase; member in class:android::MidiIoWrapper
/frameworks/base/services/core/java/com/android/server/policy/
H A DLogDecelerateInterpolator.java23 private int mBase; field in class:LogDecelerateInterpolator
28 mBase = base;
31 mLogScale = 1f / computeLog(1, mBase, mDrift);
40 return computeLog(t, mBase, mDrift) * mLogScale;
/frameworks/native/include/binder/
H A DMemoryHeapBase.h93 void* mBase; member in class:android::MemoryHeapBase
/frameworks/support/v17/leanback/src/android/support/v17/leanback/animation/
H A DLogAccelerateInterpolator.java23 int mBase; field in class:LogAccelerateInterpolator
28 mBase = base;
30 mLogScale = 1f / computeLog(1, mBase, mDrift);
39 return 1 - computeLog(1 - t, mBase, mDrift) * mLogScale;
H A DLogDecelerateInterpolator.java23 int mBase; field in class:LogDecelerateInterpolator
28 mBase = base;
31 mLogScale = 1f / computeLog(1, mBase, mDrift);
40 return computeLog(t, mBase, mDrift) * mLogScale;
/frameworks/base/core/java/android/widget/
H A DChronometer.java62 private long mBase; field in class:Chronometer
114 mBase = SystemClock.elapsedRealtime();
115 updateText(mBase);
125 mBase = base;
134 return mBase;
231 long seconds = now - mBase;
337 return formatDuration(mNow - mBase);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogMotion.java252 private final float mBase; field in class:VolumeDialogMotion.LogDecelerateInterpolator
262 mBase = base;
270 return 1f - (float) Math.pow(mBase, -t * mTimeScale) + (mDrift * t);
280 private final int mBase; field in class:VolumeDialogMotion.LogAccelerateInterpolator
289 mBase = base;
291 mLogScale = 1f / computeLog(1, mBase, mDrift);
300 return 1 - computeLog(1 - t, mBase, mDrift) * mLogScale;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleForeground.java360 private final float mBase; field in class:RippleForeground.LogDecelerateInterpolator
366 mBase = base;
374 return 1f - (float) Math.pow(mBase, -t * mTimeScale) + (mDrift * t);
/frameworks/native/libs/binder/
H A DIMemory.cpp108 mutable void* mBase; member in class:android::BpMemoryHeap
234 mHeapId(-1), mBase(MAP_FAILED), mSize(0), mFlags(0), mOffset(0), mRealHeap(false)
243 if (mBase != MAP_FAILED) {
252 munmap(mBase, mSize);
268 if (heap->mBase != MAP_FAILED) {
271 mBase = heap->mBase;
315 mBase = mmap(0, size, access, MAP_SHARED, fd, offset);
316 if (mBase == MAP_FAILED) {
337 return mBase;
[all...]
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java109 mBase = base;
194 if (s != mBase)
717 private CharSequence mBase; field in class:DynamicLayout
/frameworks/base/core/java/android/content/
H A DContextWrapper.java52 Context mBase; field in class:ContextWrapper
55 mBase = base;
66 if (mBase != null) {
69 mBase = base;
76 return mBase;
81 return mBase.getAssets();
87 return mBase.getResources();
92 return mBase.getPackageManager();
97 return mBase.getContentResolver();
102 return mBase
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp259 mBase = 0;
264 if (mBase) {
265 ArrayReleaser::Release(mEnv, mRef, mBase, mReleaseParam);
296 mBase = (T*) ArrayGetter::Get(mEnv, mRef, (jboolean *) 0);
297 mData = mBase + mOffset;
308 T* mBase; member in class:android::ArrayHelper

Completed in 224 milliseconds