Home
last modified time | relevance | path

Searched refs:ab (Results 1 – 11 of 11) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/app/
DAppCompatDelegateImplBase.java187 ActionBar ab = getSupportActionBar();
188 if (ab != null) {
189 context = ab.getThemedContext();
218 final ActionBar ab = getSupportActionBar();
219 return ab != null && (ab.getDisplayOptions() & ActionBar.DISPLAY_HOME_AS_UP) != 0;
224 ActionBar ab = getSupportActionBar();
225 if (ab != null) {
226 ab.setHomeAsUpIndicator(upDrawable);
227 ab.setHomeActionContentDescription(contentDescRes);
233 ActionBar ab = getSupportActionBar();
[all …]
DAppCompatDelegateImplV9.java157 ActionBar ab = peekSupportActionBar();
158 if (ab == null) {
161 ab.setDefaultDisplayHomeAsUpEnabled(true);
199 final ActionBar ab = getSupportActionBar();
200 if (ab instanceof WindowDecorActionBar) {
211 if (ab != null) {
212 ab.onDestroy();
244 ActionBar ab = getSupportActionBar();
245 if (ab != null) {
246 ab.onConfigurationChanged(newConfig);
[all …]
DAppCompatActivity.java200 final ActionBar ab = getSupportActionBar(); in onMenuItemSelected() local
201 if (item.getItemId() == android.R.id.home && ab != null && in onMenuItemSelected()
202 (ab.getDisplayOptions() & ActionBar.DISPLAY_HOME_AS_UP) != 0) { in onMenuItemSelected()
/frameworks/native/libs/gui/
DCpuConsumer.cpp177 AcquiredBuffer &ab = mAcquiredBuffers.editItemAt(lockedIdx); in lockNextBuffer() local
178 ab.mSlot = slot; in lockNextBuffer()
179 ab.mBufferPointer = bufferPointer; in lockNextBuffer()
180 ab.mGraphicBuffer = mSlots[slot].mGraphicBuffer; in lockNextBuffer()
254 AcquiredBuffer &ab = mAcquiredBuffers.editItemAt(lockedIdx); in releaseAcquiredBufferLocked() local
255 ab.mSlot = BufferQueue::INVALID_BUFFER_SLOT; in releaseAcquiredBufferLocked()
256 ab.mBufferPointer = NULL; in releaseAcquiredBufferLocked()
257 ab.mGraphicBuffer.clear(); in releaseAcquiredBufferLocked()
/frameworks/native/libs/math/tests/
Dquat_test.cpp290 quatd ab = a * b; in TEST_F() local
294 ASSERT_NEAR(ab.x, ab_other.x, value_eps); in TEST_F()
295 ASSERT_NEAR(ab.y, ab_other.y, value_eps); in TEST_F()
296 ASSERT_NEAR(ab.z, ab_other.z, value_eps); in TEST_F()
297 ASSERT_NEAR(ab.w, ab_other.w, value_eps); in TEST_F()
/frameworks/base/tests/LegacyRestoreTest/
DREADME1 The file "jbmr2-encrypted-settings-abcd.ab" in this directory is an encrypted
12 The file "kk-fixed-encrypted-settings-abcd.ab" is a similar encrypted "adb backup"
/frameworks/base/core/java/android/content/pm/
DPackageItemInfo.java420 public final int compare(PackageItemInfo aa, PackageItemInfo ab) { in compare() argument
423 CharSequence sb = ab.loadLabel(mPM); in compare()
424 if (sb == null) sb = ab.name; in compare()
DApplicationInfo.java1111 public final int compare(ApplicationInfo aa, ApplicationInfo ab) { in compare() argument
1116 CharSequence sb = mPM.getApplicationLabel(ab); in compare()
1118 sb = ab.packageName; in compare()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DGenericSource.cpp1264 sp<ABuffer> ab; in mediaBufferToABuffer() local
1272 ab = new ABuffer(NULL, mb->range_length()); in mediaBufferToABuffer()
1274 ab->setMediaBufferBase(mb); in mediaBufferToABuffer()
1286 ab = new ABuffer(outLength); in mediaBufferToABuffer()
1287 memcpy(ab->data(), in mediaBufferToABuffer()
1298 uint8_t* abEnd = ab->data() + mb->range_length(); in mediaBufferToABuffer()
1302 sp<AMessage> meta = ab->meta(); in mediaBufferToABuffer()
1350 return ab; in mediaBufferToABuffer()
/frameworks/av/media/libstagefright/omx/
DGraphicBufferSource.cpp837 status_t GraphicBufferSource::acquireBuffer_l(VideoBuffer *ab) { in acquireBuffer_l() argument
891 *ab = videoBuffer; in acquireBuffer_l()
/frameworks/base/core/java/android/app/
DActivity.java2593 final ActionBar ab = getActionBar(); in setActionBar() local
2594 if (ab instanceof WindowDecorActionBar) { in setActionBar()
2605 if (ab != null) { in setActionBar()
2606 ab.onDestroy(); in setActionBar()