/frameworks/base/core/java/android/content/ |
D | ContextWrapper.java | 46 Context mBase; field in ContextWrapper 49 mBase = base; in ContextWrapper() 60 if (mBase != null) { in attachBaseContext() 63 mBase = base; in attachBaseContext() 70 return mBase; in getBaseContext() 75 return mBase.getAssets(); in getAssets() 81 return mBase.getResources(); in getResources() 86 return mBase.getPackageManager(); in getPackageManager() 91 return mBase.getContentResolver(); in getContentResolver() 96 return mBase.getMainLooper(); in getMainLooper() [all …]
|
D | MutableContextWrapper.java | 36 mBase = base; in setBaseContext()
|
/frameworks/native/libs/binder/ |
D | MemoryHeapBase.cpp | 44 : mFD(-1), mSize(0), mBase(MAP_FAILED), in MemoryHeapBase() 50 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags), in MemoryHeapBase() 67 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags), in MemoryHeapBase() 86 : mFD(-1), mSize(0), mBase(MAP_FAILED), mFlags(flags), in MemoryHeapBase() 100 mBase = base; in init() 136 mBase = base; in mapfd() 139 mBase = 0; // not MAP_FAILED in mapfd() 159 munmap(mBase, mSize); in dispose() 161 mBase = 0; in dispose() 172 return mBase; in getBase()
|
D | IMemory.cpp | 108 mutable void* mBase; member in android::BpMemoryHeap 234 mHeapId(-1), mBase(MAP_FAILED), mSize(0), mFlags(0), mOffset(0), mRealHeap(false) in BpMemoryHeap() 243 if (mBase != MAP_FAILED) { in ~BpMemoryHeap() 254 munmap(mBase, mSize); in ~BpMemoryHeap() 270 if (heap->mBase != MAP_FAILED) { in assertMapped() 273 mBase = heap->mBase; in assertMapped() 316 mBase = mmap(0, size, access, MAP_SHARED, fd, offset); in assertReallyMapped() 317 if (mBase == MAP_FAILED) { in assertReallyMapped() 338 return mBase; in getBase() 474 h->mHeapId, h->mBase, h->mSize); in dump_heaps()
|
/frameworks/base/core/java/android/view/ |
D | ContextThemeWrapper.java | 29 private Context mBase; field in ContextThemeWrapper 40 mBase = base; in ContextThemeWrapper() 46 mBase = newBase; in attachBaseContext() 75 mInflater = LayoutInflater.from(mBase).cloneInContext(this); in getSystemService() 79 return mBase.getSystemService(name); in getSystemService() 101 Resources.Theme theme = mBase.getTheme(); in initializeTheme()
|
/frameworks/native/libs/utils/ |
D | RefBase.cpp | 57 RefBase* const mBase; member in android::RefBase::weakref_impl 65 , mBase(base) in weakref_impl() 84 , mBase(base) in weakref_impl() 191 sprintf(buf, "Strong references on RefBase %p (weakref_type %p):\n", mBase, this); in printRefs() 194 sprintf(buf, "Weak references on RefBase %p (weakref_type %p):\n", mBase, this); in printRefs() 263 id, mBase, this); in removeRef() 268 id, mBase, this); in removeRef() 344 refs->mBase->onFirstRef(); in incStrong() 357 refs->mBase->onLastStrongRef(id); in decStrong() 383 refs->mBase->onFirstRef(); in forceIncStrong() [all …]
|
/frameworks/base/core/java/android/widget/ |
D | Chronometer.java | 64 private long mBase; field in Chronometer 112 mBase = SystemClock.elapsedRealtime(); in init() 113 updateText(mBase); in init() 123 mBase = base; in setBase() 132 return mBase; in getBase() 228 long seconds = now - mBase; in updateText()
|
/frameworks/base/opengl/java/android/opengl/ |
D | Matrix.java | 110 int mBase = i * 4 + mOffset; in transposeM() local 111 mTrans[i + mTransOffset] = m[mBase]; in transposeM() 112 mTrans[i + 4 + mTransOffset] = m[mBase + 1]; in transposeM() 113 mTrans[i + 8 + mTransOffset] = m[mBase + 2]; in transposeM() 114 mTrans[i + 12 + mTransOffset] = m[mBase + 3]; in transposeM()
|
/frameworks/native/include/binder/ |
D | MemoryHeapBase.h | 90 void* mBase; variable
|
/frameworks/base/core/jni/android/opengl/ |
D | util.cpp | 164 mBase = 0; in ArrayHelper() 169 if (mBase) { in ~ArrayHelper() 170 mEnv->ReleasePrimitiveArrayCritical(mRef, mBase, mReleaseParam); in ~ArrayHelper() 201 mBase = (T*) mEnv->GetPrimitiveArrayCritical(mRef, (jboolean *) 0); in bind() 202 mData = mBase + mOffset; in bind() 213 T* mBase; member in android::ArrayHelper
|
/frameworks/base/core/java/android/text/ |
D | DynamicLayout.java | 106 mBase = base; in DynamicLayout() 189 if (s != mBase) in reflow() 676 private CharSequence mBase; field in DynamicLayout
|