Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DExpandableListConnector.java378 boolean retValue; in isEnabled()
380 retValue = mExpandableListAdapter.isChildSelectable(pos.groupPos, pos.childPos); in isEnabled()
383 retValue = true; in isEnabled()
388 return retValue; in isEnabled()
403 Object retValue; in getItem() local
405 retValue = mExpandableListAdapter in getItem()
408 retValue = mExpandableListAdapter.getChild(posMetadata.position.groupPos, in getItem()
417 return retValue; in getItem()
424 long retValue; in getItemId() local
426 retValue = mExpandableListAdapter.getCombinedGroupId(groupId); in getItemId()
[all …]
DExpandableListView.java759 boolean retValue = mConnector.expandGroup(pm); in expandGroup()
774 return retValue; in expandGroup()
785 boolean retValue = mConnector.collapseGroup(groupPos); in collapseGroup()
791 return retValue; in collapseGroup()
DZoomButtonsController.java592 boolean retValue = targetView.dispatchTouchEvent(containerEvent); in onTouch()
594 return retValue; in onTouch()
DGallery.java986 boolean retValue = mGestureDetector.onTouchEvent(event); in onTouchEvent()
996 return retValue; in onTouchEvent()
DListView.java3377 boolean retValue = (mCachingActive && mIsCacheColorOpaque && mDividerIsOpaque &&
3379 if (retValue) {
3393 return retValue;
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dsingle_source_ref_count.rscript25 rs_allocation retValue = {};
29 return retValue;
35 return retValue;
38 retValue = rsCreateAllocation(type);
39 if (!rsIsObject(retValue)) {
40 rsDebug("rs_allocation retValue is null.", retValue.p);
43 return retValue;
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dsingle_source_ref_count.rscript27 rs_allocation retValue = {};
31 return retValue;
37 return retValue;
40 retValue = rsCreateAllocation(type);
41 if (!rsIsObject(retValue)) {
42 rsDebug("rs_allocation retValue is null.", retValue.p);
45 return retValue;
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DTrackerEntry.java246 Float retValue = null; in getNullableFloat() local
249 retValue = cursor.getFloat(colIndex); in getNullableFloat()
251 return retValue; in getNullableFloat()
/frameworks/native/cmds/idlcli/
Dutils.h123 T retValue; in get() local
130 stream >> std::setbase(0) >> retValue; in get()
139 return retValue; in get()
/frameworks/av/media/libeffects/proxy/
DEffectProxy.cpp81 int retValue = EffectGetSubEffects(uuid, sube, SUB_FX_COUNT); in EffectProxyCreate() local
83 if (retValue != SUB_FX_COUNT) { in EffectProxyCreate()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java12979 ArrayList<SharedLibraryInfo> retValue = new ArrayList<>(); in findSharedLibraries() local
12982 findSharedLibrariesRecursive(info, retValue, collectedNames); in findSharedLibraries()
12984 return retValue; in findSharedLibraries()
13007 List<PackageSetting> retValue = new ArrayList<>(); in findSharedNonSystemLibraries() local
13013 retValue.add(depPackageSetting); in findSharedNonSystemLibraries()
13017 return retValue; in findSharedNonSystemLibraries()