Home
last modified time | relevance | path

Searched refs:toReturn (Results 1 – 10 of 10) sorted by relevance

/frameworks/layoutlib/validator/src/com/android/tools/idea/validator/hierarchy/
DCustomHierarchyHelper.java55 Object toReturn = isCheckable.invoke(fromView); in isCheckable() local
56 return (toReturn instanceof Boolean) && ((Boolean) toReturn); in isCheckable()
63 Object toReturn = isCheckable.invoke(fromView); in isCheckable() local
64 return (toReturn instanceof Boolean) && ((Boolean) toReturn); in isCheckable()
71 Object toReturn = isCheckable.invoke(fromView); in isCheckable() local
72 return (toReturn instanceof Boolean) && ((Boolean) toReturn); in isCheckable()
/frameworks/layoutlib/validator/src/
DResourceConverter.java77 Map<String, String> toReturn = new LinkedHashMap<>(); in loadStrings() local
82 return toReturn; in loadStrings()
120 toReturn.put(name, finalString); in loadStrings()
125 return toReturn; in loadStrings()
/frameworks/base/core/java/android/net/
DLocalSocketImpl.java421 Object toReturn; in getOption() local
426 toReturn = (int) timeval.toMillis(); in getOption()
432 toReturn = Os.getsockoptInt(fd, OsConstants.SOL_SOCKET, osOpt); in getOption()
438 toReturn = -1; in getOption()
440 toReturn = linger.l_linger; in getOption()
444 toReturn = Os.getsockoptInt(fd, OsConstants.IPPROTO_TCP, in getOption()
450 return toReturn; in getOption()
/frameworks/base/core/tests/timetests/src/android/app/time/
DParcelableTestSupport.java45 T toReturn = parcel.readTypedObject(creator); in roundTripParcelable() local
47 return toReturn; in roundTripParcelable()
/frameworks/layoutlib/validator/src/com/android/tools/idea/validator/
DAtfBufferedImage.java135 int[] toReturn = ((DataBufferInt) raster.getDataBuffer()).getData(); in getPixels() local
136 mMetric.mImageMemoryBytes += toReturn.length * 4; in getPixels()
142 return toReturn; in getPixels()
DValidatorUtil.java141 Class<?> toReturn = sDefaultCustomViewBuilderAndroid.getClassByName( in buildHierarchy()
143 if (toReturn == null) { in buildHierarchy()
144 toReturn = CustomHierarchyHelper.getClassByName(className); in buildHierarchy()
146 return toReturn; in buildHierarchy()
/frameworks/base/core/java/android/timezone/
DCountryTimeZones.java266 List<TimeZoneMapping> toReturn = new ArrayList<>(delegateList.size()); in getEffectiveTimeZoneMappingsAt() local
269 toReturn.add(new TimeZoneMapping(delegateMapping)); in getEffectiveTimeZoneMappingsAt()
271 return Collections.unmodifiableList(toReturn); in getEffectiveTimeZoneMappingsAt()
/frameworks/base/services/tests/powerservicetests/src/com/android/server/power/
DNotifierTest.java393 Runnable toReturn = mLastCommand; in getAndResetLastCommand() local
395 return toReturn; in getAndResetLastCommand()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DTakeScreenshotExecutorTest.kt306 requestProcessor.toReturn = toBeReturnedByProcessor in <lambda>()
474 var toReturn: ScreenshotData? = null in <lambda>() variable in com.android.systemui.screenshot.TakeScreenshotExecutorTest.FakeRequestProcessor
480 return toReturn ?: screenshot in <lambda>()
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
DJobStatus.java2287 boolean toReturn = isReady(satisfied); in readinessStatusWithConstraint()
2307 return toReturn; in readinessStatusWithConstraint()