Home
last modified time | relevance | path

Searched defs:result (Results 1 – 25 of 1213) sorted by relevance

12345678910>>...49

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DThumbnailCacheTest.java74 Result result = mCache.getThumbnail(URI_1, USER_ID_0, MID_SIZE); in testMiss() local
82 Result result = mCache.getThumbnail(URI_0, USER_ID_1, MID_SIZE); in testMiss_DifferentUser() local
90 Result result = mCache.getThumbnail(URI_0, USER_ID_0, MID_SIZE); in testHit_Exact() local
100 Result result = mCache.getThumbnail(URI_0, USER_ID_0, LARGE_SIZE); in testHit_Smaller() local
110 Result result = mCache.getThumbnail(URI_0, USER_ID_0, SMALL_SIZE); in testHit_Larger() local
121 Result result = mCache.getThumbnail(URI_0, USER_ID_0, MID_SIZE); in testHit_Larger_HasBothSize() local
135 Result result = mCache.getThumbnail(URI_0, USER_ID_0, MID_SIZE); in testHit_Exact_MultiplePut() local
145 Result result = mCache.getThumbnail(URI_0, USER_ID_0, MID_SIZE); in testHit_EqualLastModified() local
156 Result result = mCache.getThumbnail(URI_0, USER_ID_0, MID_SIZE); in testEvictOldest_SizeExceeded() local
169 Result result = mCache.getThumbnail(URI_0, USER_ID_0, MID_SIZE); in testCacheShrink_OnTrimMemory_Moderate() local
[all …]
DGlobalSearchLoaderTest.java133 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_includeDirectory() local
151 DirectoryResult result = mLoader.loadInBackground(); in testShowOrHideHiddenFiles() local
161 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_isNotMovable() local
193 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_includeDirectory_excludedOtherUsers() local
223 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_includeSearchString() local
257 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_includeDifferentRoot() local
289 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_includeCurrentUserRootOnly() local
323 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_includeBothUsersRoots() local
352 final DirectoryResult result = mLoader.loadInBackground(); in testSearchResult_emptyCurrentUsersRoot() local
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/mschapv2/
DEapMsChapV2SuccessRequestTest.java63 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequest() local
77 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestEmptyMessage() local
92 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestMissingMessage() local
107 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestMissingMessageWithSpace() local
124 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestWrongOpCode() local
133 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestShortMessage() local
142 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestInvalidPrefix() local
151 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestShortAuthString() local
160 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestInvalidAuthString() local
169 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestExtraAttribute() local
DEapMsChapV2FailureRequestTest.java61 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequest() local
78 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestMissingMessage() local
96 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestMissingMessageWithSpace() local
116 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestInvalidErrorCode() local
124 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestInvalidChallenge() local
132 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestShortChallenge() local
140 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestInvalidPasswordChangeProtocol() local
149 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureExtraAttribute() local
DEapMsChapV2ChallengeRequestTest.java58 DecodeResult<EapMsChapV2ChallengeRequest> result = in testDecodeChallengeRequest() local
72 DecodeResult<EapMsChapV2ChallengeRequest> result = in testDecodeChallengeRequestWrongOpCode() local
81 DecodeResult<EapMsChapV2ChallengeRequest> result = in testDecodeChallengeRequestShortChallenge() local
90 DecodeResult<EapMsChapV2ChallengeRequest> result = in testDecodeChallengeRequestShortMsLength() local
99 DecodeResult<EapMsChapV2ChallengeRequest> result = in testDecodeChallengeRequestLongMsLength() local
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/security/
DInitialLockSetupServiceTest.java106 int result = service.checkValidLock(LockTypes.PASSWORD, "hi".getBytes()); in testCheckValidLock_tooShort() local
115 int result = service.checkValidLock(LockTypes.PASSWORD, "password".getBytes()); in testCheckValidLock_longEnough() local
124 int result = service.checkValidLock(LockTypes.PIN, "12a3".getBytes()); in testCheckValidLockPin_withLetters() local
137 int result = service.checkValidLock(LockTypes.PATTERN, pattern); in testCheckValidLockPattern_tooShort() local
150 int result = service.checkValidLock(LockTypes.PATTERN, pattern); in testCheckValidLockPattern_longEnough() local
160 int result = service.setLock(LockTypes.PASSWORD, "password".getBytes()); in testSetLockPassword_doesNotWorkWithExistingPassword() local
168 int result = service.setLock(LockTypes.PASSWORD, "hi".getBytes()); in testSetLockPassword_doesNotWorkWithInvalidPassword() local
179 int result = service.setLock(LockTypes.PASSWORD, password); in testSetLockPassword_setsDevicePassword() local
191 int result = service.setLock(LockTypes.PIN, password); in testSetLockPin_setsDevicePin() local
212 int result = service.setLock(LockTypes.PATTERN, patternBytes); in testSetLockPattern_setsDevicePattern() local
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoaderTest.java95 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLoadingApps() local
106 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testGamesAreFiltered() local
119 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLegacyGamesAreFiltered() local
130 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testCacheIsNotIgnored() local
146 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testMultipleUsers() local
159 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testUpdatedSystemAppCodeSizeIsCounted() local
169 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testVideoAppsAreFiltered() local
185 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testRemovedPackageDoesNotCrash() local
206 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testPackageIsNotDoubleCounted() local
218 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testCacheOveragesAreCountedAsFree() local
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/storage/
DStorageAsyncLoaderTest.java105 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLoadingApps() local
116 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testGamesAreFiltered() local
129 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLegacyGamesAreFiltered() local
140 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testCacheIsNotIgnored() local
155 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testMultipleUsers() local
168 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testUpdatedSystemAppCodeSizeIsCounted() local
178 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testVideoAppsAreFiltered() local
194 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testRemovedPackageDoesNotCrash() local
215 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testPackageIsNotDoubleCounted() local
227 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testCacheOveragesAreCountedAsFree() local
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
DEapStateTest.java77 EapResult result = mEapState.process(null); in testProcessNullPacket() local
86 EapResult result = mEapState.process(REQUEST_UNSUPPORTED_TYPE_PACKET); in testProcessUnsupportedEapDataType() local
95 EapResult result = mEapState.process(SHORT_PACKET); in testProcessDecodeFailure() local
104 EapResult result = mEapState.process(EAP_RESPONSE_NOTIFICATION_PACKET); in testProcessResponse() local
113 EapResult result = mEapState.process(EAP_REQUEST_NAK_PACKET); in testProcessNakRequest() local
122 EapResult result = mEapState.process(EAP_REQUEST_MD5_CHALLENGE); in testProcessMd5Challenge() local
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/
DEapSimTypeDataTest.java84 DecodeResult<EapSimTypeData> result = mEapSimTypeDataDecoder.decode(EAP_SIM_START_SUBTYPE); in testDecode() local
104 DecodeResult<EapSimTypeData> result = mEapSimTypeDataDecoder.decode(null); in testDecodeNullTypeData() local
111 DecodeResult<EapSimTypeData> result = mEapSimTypeDataDecoder.decode(INVALID_SUBTYPE); in testDecodeInvalidSubtype() local
118 DecodeResult<EapSimTypeData> result = in testDecodeInvalidAtRand() local
126 DecodeResult<EapSimTypeData> result = mEapSimTypeDataDecoder.decode(SHORT_TYPE_DATA); in testDecodeShortPacket() local
133 DecodeResult<EapSimTypeData> result = in testDecodeInvalidEapAttribute() local
152 DecodeResult<EapSimTypeData> result = in testDecodeDuplicateAttributes() local
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sidebar/
DRootItemListBuilderTest.java71 List<RootItem> result = mBuilder.getList(); in testGetList_empty() local
84 List<RootItem> result = mBuilder.getList(); in testGetList_singleUser() local
105 List<RootItem> result = mBuilder.getList(); in testGetList_twoUsers_allMultiProfileRootsMatchOther_defaultUser() local
130 List<RootItem> result = mBuilder.getList(); in testGetList_twoUsers_allMultiProfileRootsMatchOther_otherUser() local
152 List<RootItem> result = mBuilder.getList(); in testGetList_twoUsers_defaultUserHasAllMatchingRoots() local
174 List<RootItem> result = mBuilder.getList(); in testGetList_twoUsers_secondUserFillsUpNonMatchingRoots() local
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/user/
DUserSwitchResultTest.java30 UserSwitchResult result = in testIUserSwitchResult_checkStatusAndMessage() local
38 UserSwitchResult result = in testIUserSwitchResult_isSuccess_failure() local
45 UserSwitchResult result = in testIUserSwitchResult_isSuccess_success() local
52 UserSwitchResult result = in testIUserSwitchResult_isSuccess_requestedState() local
DCarUserManagerUnitTest.java178 UserSwitchResult result = getResult(future); in testSwitchUser_success() local
191 UserSwitchResult result = getResult(future); in testSwitchUser_noUserSwitchability() local
204 UserSwitchResult result = getResult(future); in testSwitchUser_remoteException() local
215 UserRemovalResult result = mMgr.removeUser(11); in testRemoveUser_success() local
226 UserRemovalResult result = mMgr.removeUser(11); in testRemoveUser_remoteException() local
253 UserCreationResult result = getResult(future); in testCreateUser_withType_success() local
274 UserCreationResult result = getResult(future); in testCreateUser_withType_remoteException() local
289 UserCreationResult result = getResult(future); in testCreateUser_success() local
310 UserCreationResult result = getResult(future); in testCreateUser_remoteException() local
325 UserCreationResult result = getResult(future); in testCreateGuest_success() local
[all …]
/packages/apps/TV/tests/robotests/src/com/android/tv/util/
DTvTrackInfoUtilsTest.java74 TvTrackInfo result = getBestTrackInfo(Collections.emptyList(), UN_MATCHED_ID, "en", 1); in testGetBestTrackInfo_empty() local
80 TvTrackInfo result = getBestTrackInfo(allTracks, "track_1", "en", 1); in testGetBestTrackInfo_exactMatch() local
86 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, "en", 5); in testGetBestTrackInfo_langAndChannelCountMatch() local
92 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, "fr", 1); in testGetBestTrackInfo_languageOnlyMatch() local
101 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 8); in testGetBestTrackInfo_channelCountOnlyMatchWithNullLanguage_23() local
111 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 8); in testGetBestTrackInfo_channelCountOnlyMatchWithNullLanguage() local
117 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, "kr", 1); in testGetBestTrackInfo_noMatches() local
126 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 0); in testGetBestTrackInfo_noMatchesWithNullLanguage_23() local
136 TvTrackInfo result = getBestTrackInfo(allTracks, UN_MATCHED_ID, null, 0); in testGetBestTrackInfo_noMatchesWithNullLanguage() local
142 TvTrackInfo result = getBestTrackInfo(nullLanguageTracks, "track_5", null, 6); in testGetBestTrackInfo_channelCountAndIdMatch() local
/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/
DDownloadsDeletionTypeTest.java72 DownloadsResult result = new DownloadsResult(); in testFetchDownloads() local
86 DownloadsResult result = new DownloadsResult(); in testSetChecked() local
107 DownloadsResult result = new DownloadsResult(); in testUncheckedFilesDoNotCountForSize() local
126 DownloadsResult result = new DownloadsResult(); in testSaveAndRestoreRemembersUncheckedFiles() local
145 DownloadsResult result = new DownloadsResult(); in testCallbackOnFileLoad() local
171 DownloadsResult result = new DownloadsResult(); in testLoadingState_completeEmptyOnNothingFound() local
179 DownloadsResult result = new DownloadsResult(); in testLoadingState_completeOnDeletableContentFound() local
/packages/apps/UniversalMediaPlayer/java/com/android/pump/provider/
DKnowledgeGraph.java60 JSONObject result = getResultFromKG(artist.getName(), "Person", "MusicGroup"); in populateArtist() local
81 JSONObject result = getResultFromKG(album.getTitle(), "MusicAlbum"); in populateAlbum() local
98 JSONObject result = getResultFromKG(movie.getTitle(), "Movie"); in populateMovie() local
114 JSONObject result = getResultFromKG(series.getTitle(), "TVSeries"); in populateSeries() local
130 JSONObject result = getResultFromKG(episode.getSeries().getTitle(), "TVEpisode"); in populateEpisode() local
148 JSONObject result = item.getJSONObject("result"); in getResultFromKG() local
158 private @Nullable String getImageUrl(@NonNull JSONObject result) { in getImageUrl()
175 private @Nullable String getDescription(@NonNull JSONObject result) { in getDescription()
185 private @Nullable String getDetailedDescription(@NonNull JSONObject result) { in getDetailedDescription()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/utils/
DLogTest.java36 String result = new Log(TAG, false, false).pii(PII); in testPii() local
37 assertEquals(Integer.toString(PII.hashCode()), result); in testPii() local
40 assertEquals(Integer.toString(PII.hashCode()), result); in testPii() local
43 assertEquals(Integer.toString(PII.hashCode()), result); in testPii() local
/packages/services/Car/surround_view/service-impl/
DAnimationModuleTests.cpp241 std::vector<AnimationParam> result = in TEST() local
249 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
263 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
277 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
291 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
305 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
319 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
333 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
347 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
361 std::vector<AnimationParam> result = animationModule.getUpdatedAnimationParams( in TEST() local
[all …]
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtIdReqTest.java60 EapSimAkaAttribute result = mAttributeFactory.getAttribute(input); in testDecodeAtPermanentIdReq() local
82 ByteBuffer result = ByteBuffer.allocate(EXPECTED_LENGTH); in testEncodeAtPermanentIdReq() local
91 EapSimAkaAttribute result = mAttributeFactory.getAttribute(input); in testDecodeAtAnyIdReq() local
113 ByteBuffer result = ByteBuffer.allocate(EXPECTED_LENGTH); in testEncodeAtAnyIdReq() local
122 EapSimAkaAttribute result = mAttributeFactory.getAttribute(input); in testDecodeAtFullauthIdReq() local
144 ByteBuffer result = ByteBuffer.allocate(EXPECTED_LENGTH); in testEncodeAtFullauthIdReq() local
DAtBiddingTest.java51 EapSimAkaAttribute result = mAttributeFactory.getAttribute(input); in testDecodeServerSupportsAkaPrime() local
63 EapSimAkaAttribute result = mAttributeFactory.getAttribute(input); in testDecodeDoesNotSupportAkaPrime() local
86 ByteBuffer result = ByteBuffer.allocate(AT_BIDDING_SUPPORTS_AKA_PRIME.length); in testEncodeServerSupportsAkaPrime() local
95 ByteBuffer result = ByteBuffer.allocate(AT_BIDDING_DOES_NOT_SUPPORT_AKA_PRIME.length); in testEncodeDoesNotSupportAkaPrime() local
/packages/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/
DFetchDownloadsLoaderTest.java42 DownloadsResult result = in testEmptyDirectory() local
54 DownloadsResult result = in testFilesInDirectory() local
68 DownloadsResult result = in testNestedDirectories() local
91 DownloadsResult result = in testSumFileSizes() local
107 DownloadsResult result = in testFetchesThumbnailsForImages() local
/packages/apps/TV/common/tests/robotests/src/com/android/tv/common/
DTvContentRatingCacheTest.java67 ImmutableList<TvContentRating> result = in testGetRatings_US_TV_MA() local
100 String result = TvContentRatingCache.contentRatingsToString(null); in testContentRatingsToString_null() local
106 String result = TvContentRatingCache.contentRatingsToString(ImmutableList.of()); in testContentRatingsToString_none() local
112 String result = in testContentRatingsToString_one() local
122 String result = in testContentRatingsToString_twoInOrder() local
132 String result = in testContentRatingsToString_twoNotInOrder() local
142 String result = in testContentRatingsToString_double() local
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DCachedStorageValuesHelperTest.java128 final SparseArray<StorageAsyncLoader.AppsStorageResult> result = in getCachedAppsStorageResult_cachedValuesAreLoaded() local
193 final SparseArray<StorageAsyncLoader.AppsStorageResult> result = in getCachedAppsStorageResult_nullIfDataIsStale() local
246 final SparseArray<StorageAsyncLoader.AppsStorageResult> result = in getCachedAppsStorageResult_nullIfWrongUser() local
259 final SparseArray<StorageAsyncLoader.AppsStorageResult> result = in getCachedAppsStorageResult_nullIfEmpty() local
269 final StorageAsyncLoader.AppsStorageResult result = in cacheResult_succeeds() local
/packages/apps/Test/connectivity/sl4n/facades/wifi/
Dwifi_facade.cpp74 int result = hal_fn.wifi_get_ifaces(wifi_hal_handle, &num_ifaces, in WifiGetInterfaces() local
100 int result = hal_fn.wifi_get_iface_name(wifi_iface_handles[i], buf, in WifiGetInterfaces() local
142 int result = hal_fn.wifi_get_supported_feature_set( in WifiGetSupportedFeatureSet() local
162 bool result; in wifi_init_wrapper() local
179 int result; in wifi_get_supported_feature_set_wrapper() local
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/audio/
DFocusInteractionTest.java104 int result = mFocusInteraction.evaluateRequest(CarAudioContext.INVALID, focusEntry, mLosers, in evaluateResult_forRejectPair_returnsFailed() local
119 int result = mFocusInteraction.evaluateRequest(CarAudioContext.NAVIGATION, focusEntry, in evaluateResult_forCallAndNavigation_withNavigationNotRejected_returnsConcurrent() local
133 int result = mFocusInteraction.evaluateRequest(CarAudioContext.NAVIGATION, focusEntry, in evaluateResult_forCallAndNavigation_withNavigationRejected_returnsConcurrent() local
154 int result = mFocusInteraction.evaluateRequest(CarAudioContext.MUSIC, focusEntry, mLosers, in evaluateRequest_forExclusivePair_returnsGranted() local
175 int result = mFocusInteraction.evaluateRequest(CarAudioContext.MUSIC, focusEntry, mLosers, in evaluateResult_forConcurrentPair_returnsGranted() local
248 int result = mFocusInteraction.evaluateRequest(CarAudioContext.MUSIC, focusEntry, mLosers, in evaluateRequest_forExclusivePair_withDelayedFocus_returnsGranted() local
258 int result = mFocusInteraction.evaluateRequest(CarAudioContext.MUSIC, focusEntry, mLosers, in evaluateRequest_forRejectPair_withDelayedFocus_returnsDelayed() local
268 int result = mFocusInteraction.evaluateRequest(CarAudioContext.MUSIC, focusEntry, mLosers, in evaluateRequest_forRejectPair_withoutDelayedFocus_returnsReject() local

12345678910>>...49