/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/ |
H A D | ListsTest.java | 56 * Unit test for {@code Lists}. 86 private static final List<Integer> SOME_LIST = Lists.newArrayList(1, 2, 3, 4); 88 private static final List<Integer> SOME_SEQUENTIAL_LIST = Lists.newLinkedList(asList(1, 2, 3, 4)); 116 return Lists.asList(elements[0], rest); in suite() 119 .named("Lists.asList, 2 parameter") in suite() 134 return Lists.asList(elements[0], elements[1], rest); in suite() 137 .named("Lists.asList, 3 parameter") in suite() 151 List<String> fromList = Lists.newArrayList(); in suite() 155 return Lists.transform(fromList, removeFirst); in suite() 158 .named("Lists.transform, random access, no nulls") in suite() [all …]
|
H A D | FluentIterableTest.java | 19 import static com.google.common.collect.Lists.newArrayList; 76 Lists.newArrayList(FluentIterable.from(ImmutableList.of(1, 2, 3, 4)))); in testFrom() 86 assertEquals(ImmutableList.of(1, 2, 3, 4), Lists.newArrayList(FluentIterable.of(1, 2, 3, 4))); in testOf() 92 Lists.newArrayList(FluentIterable.from(new Object[] {"1", "2", "3", "4"}))); in testFromArray() 96 assertEquals(ImmutableList.of(), Lists.newArrayList(FluentIterable.of())); in testOf_empty() 307 FluentIterable.<Integer>from(asList(1, 2, 3)).append(Lists.newArrayList(4, 5, 6)); in testAppend() 308 assertEquals(asList(1, 2, 3, 4, 5, 6), Lists.newArrayList(result)); in testAppend() 312 assertEquals(asList(1, 2, 3, 4, 5, 6), Lists.newArrayList(result)); in testAppend() 318 FluentIterable.<Integer>of().append(Lists.newArrayList(1, 2, 3)); in testAppend_toEmpty() 319 assertEquals(asList(1, 2, 3), Lists.newArrayList(result)); in testAppend_toEmpty() [all …]
|
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | ListsTest.java | 56 * Unit test for {@code Lists}. 86 private static final List<Integer> SOME_LIST = Lists.newArrayList(1, 2, 3, 4); 88 private static final List<Integer> SOME_SEQUENTIAL_LIST = Lists.newLinkedList(asList(1, 2, 3, 4)); 116 return Lists.asList(elements[0], rest); in suite() 119 .named("Lists.asList, 2 parameter") in suite() 134 return Lists.asList(elements[0], elements[1], rest); in suite() 137 .named("Lists.asList, 3 parameter") in suite() 151 List<String> fromList = Lists.newArrayList(); in suite() 155 return Lists.transform(fromList, removeFirst); in suite() 158 .named("Lists.transform, random access, no nulls") in suite() [all …]
|
H A D | FluentIterableTest.java | 19 import static com.google.common.collect.Lists.newArrayList; 76 Lists.newArrayList(FluentIterable.from(ImmutableList.of(1, 2, 3, 4)))); in testFrom() 86 assertEquals(ImmutableList.of(1, 2, 3, 4), Lists.newArrayList(FluentIterable.of(1, 2, 3, 4))); in testOf() 92 Lists.newArrayList(FluentIterable.from(new Object[] {"1", "2", "3", "4"}))); in testFromArray() 96 assertEquals(ImmutableList.of(), Lists.newArrayList(FluentIterable.of())); in testOf_empty() 307 FluentIterable.<Integer>from(asList(1, 2, 3)).append(Lists.newArrayList(4, 5, 6)); in testAppend() 308 assertEquals(asList(1, 2, 3, 4, 5, 6), Lists.newArrayList(result)); in testAppend() 312 assertEquals(asList(1, 2, 3, 4, 5, 6), Lists.newArrayList(result)); in testAppend() 318 FluentIterable.<Integer>of().append(Lists.newArrayList(1, 2, 3)); in testAppend_toEmpty() 319 assertEquals(asList(1, 2, 3), Lists.newArrayList(result)); in testAppend_toEmpty() [all …]
|
/aosp_15_r20/external/zopfli/src/zopfli/ |
H A D | katajainen.c | 62 lists: The lists of chains. 63 maxbits: Number of lists. 69 static void BoundaryPM(Node* (*lists)[2], Node* leaves, int numsymbols, in BoundaryPM() 73 int lastcount = lists[index][1]->count; /* Count of last chain of list. */ in BoundaryPM() 78 oldchain = lists[index][1]; in BoundaryPM() 82 lists[index][0] = oldchain; in BoundaryPM() 83 lists[index][1] = newchain; in BoundaryPM() 89 size_t sum = lists[index - 1][0]->weight + lists[index - 1][1]->weight; in BoundaryPM() 95 InitNode(sum, lastcount, lists[index - 1][1], newchain); in BoundaryPM() 97 BoundaryPM(lists, leaves, numsymbols, pool, index - 1); in BoundaryPM() [all …]
|
/aosp_15_r20/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/ |
D | UserManagerStateTest.java | 53 import com.google.common.collect.Lists; 160 initializeUserManagerState(currentUser, Lists.newArrayList(mSystemUser)); in testGetUserIds_onlySystemUser_returnsSystemUser() 171 Lists.newArrayList(mSystemUser, mManagedUser, mPrivateUser, mOtherUser, in testGetUserIds_allProfilesCurrentUserSystem_allShowInSharingSurfacesSeparate() 185 Lists.newArrayList(mSystemUser, mManagedUser, mPrivateUser, mOtherUser, in testGetUserIds_allProfilesCurrentUserManaged_allShowInSharingSurfacesSeparate() 199 Lists.newArrayList(mSystemUser, mManagedUser, mPrivateUser, mOtherUser)); in testGetUserIds_allProfilesCurrentUserPrivate_allShowInSharingSurfacesSeparate() 210 initializeUserManagerState(currentUser, Lists.newArrayList(mSystemUser, mManagedUser)); in testGetUserIds_systemAndManagedUserCurrentUserSystem_returnsBoth() 220 initializeUserManagerState(currentUser, Lists.newArrayList(mSystemUser, mManagedUser)); in testGetUserIds_systemAndManagedUserCurrentUserManaged_returnsBoth() 231 initializeUserManagerState(currentUser, Lists.newArrayList(mSystemUser, mPrivateUser)); in testGetUserIds_systemAndPrivateUserCurrentUserSystem_returnsBoth() 242 initializeUserManagerState(currentUser, Lists.newArrayList(mSystemUser, mPrivateUser)); in testGetUserIds_systemAndPrivateUserCurrentUserPrivate_returnsBoth() 253 initializeUserManagerState(currentUser, Lists.newArrayList(mSystemUser, mOtherUser)); in testGetUserIds_systemAndOtherUserCurrentUserOtherPreV_returnsCurrentUser() [all …]
|
/aosp_15_r20/external/freetype/builds/meson/ |
H A D | parse_modules_cfg.py | 36 lists = { 54 assert items[0] in lists, ( 58 lists[items[0]].append(items[2]) 60 return lists 63 def generate_ftmodule(lists): argument 65 for driver in lists["FONT_MODULES"]: 81 for module in lists["HINTING_MODULES"]: 86 for module in lists["RASTER_MODULES"]: 98 for module in lists["AUX_MODULES"]: 112 def generate_main_modules(lists): argument [all …]
|
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
D | tasks.v1.json | 18 "description": "The Google Tasks API lets you manage your tasks and task lists.", 115 "flatPath": "tasks/v1/users/@me/lists/{tasklist}", 129 "path": "tasks/v1/users/@me/lists/{tasklist}", 136 "flatPath": "tasks/v1/users/@me/lists/{tasklist}", 150 "path": "tasks/v1/users/@me/lists/{tasklist}", 160 … "description": "Creates a new task list and adds it to the authenticated user's task lists.", 161 "flatPath": "tasks/v1/users/@me/lists", 166 "path": "tasks/v1/users/@me/lists", 178 "description": "Returns all the authenticated user's task lists.", 179 "flatPath": "tasks/v1/users/@me/lists", [all …]
|
/aosp_15_r20/external/toybox/www/ |
H A D | cleanup.html | 64 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000850.html>Error mess… 65 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000891.html>Why not "c… 69 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000893.html>Why not to… 70 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-June/001044.html>Relationshi… 100 <li>commit: <a href=/hg/toybox/rev/830>830</a>: first pass, description: <a href=http://lists.landl… 101 <a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000903.html>part 2</a></li> 103 second pass, description: <a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/… 128 description: <a href=http://lists.landley.net/pipermail/toybox-landley.net/2014-January/001532.html… 130 description: <a href=http://lists.landley.net/pipermail/toybox-landley.net/2014-January/001533.html… 159 <li>commit: <a href=/hg/toybox/rev/843>843</a>, description: <a href=http://lists.landley.net/piper… [all …]
|
/aosp_15_r20/packages/apps/Settings/tests/robotests/src/com/android/settings/display/ |
D | WallpaperPreferenceControllerTest.java | 33 import com.google.common.collect.Lists; 78 mWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerEnabledAndStylePickerEnabled_returnsTrue() 80 mStylesAndWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerEnabledAndStylePickerEnabled_returnsTrue() 88 mWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerEnabledAndStylePickerDisabled_returnsTrue() 90 mStylesAndWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerEnabledAndStylePickerDisabled_returnsTrue() 98 mWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerDisabledAndStylePickerEnabled_returnsTrue() 100 mStylesAndWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerDisabledAndStylePickerEnabled_returnsTrue() 108 mWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerDisabledAndStylePickerDisabled_returnsFalse() 110 mStylesAndWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerDisabledAndStylePickerDisabled_returnsFalse() 119 Lists.newArrayList(mock(ResolveInfo.class))); in getComponentClassString_stylesAvailable_returnsStylePickerClassString() [all …]
|
D | TopLevelWallpaperPreferenceControllerTest.java | 34 import com.google.common.collect.Lists; 79 mWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerEnabledAndStylePickerEnabled_returnsTrue() 81 mStylesAndWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerEnabledAndStylePickerEnabled_returnsTrue() 89 mWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerEnabledAndStylePickerDisabled_returnsTrue() 91 mStylesAndWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerEnabledAndStylePickerDisabled_returnsTrue() 99 mWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerDisabledAndStylePickerEnabled_returnsTrue() 101 mStylesAndWallpaperIntent, Lists.newArrayList(mock(ResolveInfo.class))); in isAvailable_wallpaperPickerDisabledAndStylePickerEnabled_returnsTrue() 109 mWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerDisabledAndStylePickerDisabled_returnsFalse() 111 mStylesAndWallpaperIntent, Lists.newArrayList()); in isAvailable_wallpaperPickerDisabledAndStylePickerDisabled_returnsFalse() 120 Lists.newArrayList(mock(ResolveInfo.class))); in getComponentClassString_stylesAvailable_returnsStylePickerClassString() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/util/ |
D | idle_notified_set.rs | 24 lists: Arc<Lists<T>>, field 33 /// The main consequence of being stored in one of the lists is that the `value` 43 type Lists<T> = Mutex<ListsInner<T>>; typedef 45 /// The linked lists hold strong references to the `ListEntry` items, and the 46 /// `ListEntry` items also hold a strong reference back to the Lists object, but 47 /// the destructor of the `IdleNotifiedSet` will clear the two lists, so once 57 /// Which of the two lists in the shared Lists object is this entry stored in? 89 /// two linked lists are emptied in the destructor of `IdleNotifiedSet`, the 94 /// Pointer to the shared `Lists` struct. 95 parent: Arc<Lists<T>>, [all …]
|
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/ |
H A D | Lists.java | 59 * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#lists">{@code Lists}</a>. 68 public final class Lists { class 69 private Lists() {} in Lists() method in Lists 335 /** @see Lists#asList(Object, Object[]) */ 362 /** @see Lists#asList(Object, Object, Object[]) */ 400 * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian 401 * product</a>" of the lists. For example: 404 * Lists.cartesianProduct(ImmutableList.of( 409 * <p>returns a list containing six lists in the following order: 424 * for (B b0 : lists.get(0)) { [all …]
|
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/ |
H A D | Lists.java | 60 * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#lists">{@code Lists}</a>. 69 public final class Lists { class 70 private Lists() {} in Lists() method in Lists 336 /** @see Lists#asList(Object, Object[]) */ 363 /** @see Lists#asList(Object, Object, Object[]) */ 401 * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian 402 * product</a>" of the lists. For example: 405 * Lists.cartesianProduct(ImmutableList.of( 410 * <p>returns a list containing six lists in the following order: 425 * for (B b0 : lists.get(0)) { [all …]
|
/aosp_15_r20/external/google-styleguide/docguide/ |
H A D | style.md | 22 1. [Lists](#lists) 23 1. [Use lazy numbering for long lists](#use-lazy-numbering-for-long-lists) 30 1. [Nest codeblocks within lists](#nest-codeblocks-within-lists) 34 1. [Prefer lists to tables](#prefer-lists-to-tables) 152 ## Lists section in Markdown style guide 154 ### Use lazy numbering for long lists 156 Markdown is smart enough to let the resulting HTML render your numbered lists 157 correctly. For longer lists that may change, especially long nested lists, use 169 numbered lists, because it's nicer to read in source: 179 When nesting lists, use a 4 space indent for both numbered and bulleted lists: [all …]
|
/aosp_15_r20/packages/apps/Settings/tests/unit/src/com/android/settings/applications/credentials/ |
D | CredentialManagerPreferenceControllerTest.java | 51 import com.google.android.collect.Lists; 124 createControllerWithServices(Lists.newArrayList(createCredentialProviderInfo())); in getAvailabilityStatus_withServices_returnsAvailable() 135 createControllerWithServices(Lists.newArrayList(createCredentialProviderInfo())); in isHiddenDueToNoProviderSet_hiddenDueToEmptyPair() 142 createControllerWithServices(Lists.newArrayList(createCredentialProviderInfo())); in isHiddenDueToNoProviderSet_hiddenDueToNoPrimaryProvider() 145 new Pair<>(Lists.newArrayList(createCombinedProviderInfo()), null); in isHiddenDueToNoProviderSet_hiddenDueToNoPrimaryProvider() 152 createControllerWithServices(Lists.newArrayList(createCredentialProviderInfo())); in isHiddenDueToNoProviderSet_validDataSoNotHidden() 156 Lists.newArrayList(createCombinedProviderInfo()), in isHiddenDueToNoProviderSet_validDataSoNotHidden() 164 createControllerWithServices(Lists.newArrayList(createCredentialProviderInfo())); in displayPreference_withServices_preferencesAdded() 188 createControllerWithServices(Lists.newArrayList(providerInfo1, providerInfo2)); in buildPreference() 225 Lists.newArrayList( in getAvailabilityStatus_handlesToggleAndSave() [all …]
|
/aosp_15_r20/libcore/jsr166-tests/src/test/java/jsr166/ |
H A D | CopyOnWriteArrayListTest.java | 177 * lists with same elements are equal and have same hashCode 534 List[] lists = { c, c.subList(1, c.size() - 1) }; in testGet1_IndexOutOfBoundsException() local 535 for (List list : lists) { in testGet1_IndexOutOfBoundsException() 548 List[] lists = { c, c.subList(1, c.size() - 1) }; in testGet2_IndexOutOfBoundsException() local 549 for (List list : lists) { in testGet2_IndexOutOfBoundsException() 562 List[] lists = { c, c.subList(1, c.size() - 1) }; in testSet1_IndexOutOfBoundsException() local 563 for (List list : lists) { in testSet1_IndexOutOfBoundsException() 576 List[] lists = { c, c.subList(1, c.size() - 1) }; in testSet2() local 577 for (List list : lists) { in testSet2() 590 List[] lists = { c, c.subList(1, c.size() - 1) }; in testAdd1_IndexOutOfBoundsException() local [all …]
|
/aosp_15_r20/external/googleapis/google/analytics/data/v1alpha/ |
H A D | analytics_data_api.proto | 78 // for an introduction to Audience Lists with examples. 81 // the time of audience list creation. Creating audience lists for one 87 // https://support.google.com/analytics/answer/9267572. Audience lists contain 115 // for an introduction to Audience Lists with examples. 142 // for an introduction to Audience Lists with examples. 167 // for an introduction to Audience Lists with examples. 181 // Lists all audience lists for a property. This method can be used for you to 182 // find and reuse existing audience lists rather than creating unnecessary new 183 // audience lists. The same audience can have multiple audience lists that 188 // for an introduction to Audience Lists with examples. [all …]
|
/aosp_15_r20/external/apache-commons-io/src/site/xdoc/ |
H A D | mail-lists.xml | 25 | TEMPLATE FILE: mail-lists-template.xml | 44 <title>Apache Commons IO Mailing Lists</title> 51 <a href="index.html">Apache Commons IO</a> shares mailing lists with all the other 62 <a href="https://lists.apache.org/[email protected]">User List</a>. 64 The <a href="https://lists.apache.org/[email protected]">Developer List</a> 69 You must be subscribed to post to the mailing lists. Follow the Subscribe links below 73 <strong>Note:</strong> please don't send patches or attachments to any of the mailing lists; 74 most of the lists are set up to drop attachments. 81 <section name="Apache Commons IO Mailing Lists"> 111 … <a href="https://lists.apache.org/[email protected]">lists.apache.org</a> [all …]
|
/aosp_15_r20/libcore/ojluni/src/test/java/util/concurrent/tck/ |
H A D | CopyOnWriteArrayListTest.java | 239 * lists with same elements are equal and have same hashCode 620 List[] lists = { c, c.subList(1, c.size() - 1) }; in testGet1_IndexOutOfBoundsException() local 621 for (List list : lists) { in testGet1_IndexOutOfBoundsException() 635 List[] lists = { c, c.subList(1, c.size() - 1) }; in testGet2_IndexOutOfBoundsException() local 636 for (List list : lists) { in testGet2_IndexOutOfBoundsException() 650 List[] lists = { c, c.subList(1, c.size() - 1) }; in testSet1_IndexOutOfBoundsException() local 651 for (List list : lists) { in testSet1_IndexOutOfBoundsException() 665 List[] lists = { c, c.subList(1, c.size() - 1) }; in testSet2() local 666 for (List list : lists) { in testSet2() 680 List[] lists = { c, c.subList(1, c.size() - 1) }; in testAdd1_IndexOutOfBoundsException() local [all …]
|
/aosp_15_r20/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/ |
H A D | ReportFeaturesMessageTest.java | 36 import com.google.android.collect.Lists; 78 Lists.newArrayList(HdmiDeviceInfo.DEVICE_TV), Constants.RC_PROFILE_TV, in build_basicTv_1_4() 79 Lists.newArrayList(Constants.RC_PROFILE_TV_NONE), in build_basicTv_1_4() 90 Lists.newArrayList(HdmiDeviceInfo.DEVICE_PLAYBACK), Constants.RC_PROFILE_TV, in build_basicPlayback_1_4() 91 Lists.newArrayList(Constants.RC_PROFILE_TV_NONE), in build_basicPlayback_1_4() 102 Lists.newArrayList(HdmiDeviceInfo.DEVICE_PLAYBACK, in build_basicPlaybackAudioSystem_1_4() 104 Lists.newArrayList(Constants.RC_PROFILE_TV_NONE), in build_basicPlaybackAudioSystem_1_4() 115 Lists.newArrayList(HdmiDeviceInfo.DEVICE_TV), Constants.RC_PROFILE_TV, in build_basicTv_2_0() 116 Lists.newArrayList(Constants.RC_PROFILE_TV_NONE), in build_basicTv_2_0() 127 Lists.newArrayList(HdmiDeviceInfo.DEVICE_TV), Constants.RC_PROFILE_TV, in build_remoteControlTv_2_0() [all …]
|
/aosp_15_r20/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/ |
H A D | MultimapPutIterableTester.java | 28 import com.google.common.collect.Lists; 56 return Lists.newArrayList(v3(), v4()).iterator(); in testPutAllNonEmptyIterableOnPresentKey() 65 assertTrue(multimap().putAll(k0(), Lists.newArrayList(v3(), v4()))); in testPutAllNonEmptyCollectionOnPresentKey() 78 return Lists.newArrayList(v3(), v4()).iterator(); in testPutAllNonEmptyIterableOnAbsentKey() 86 assertTrue(multimap().putAll(k3(), Lists.newArrayList(v3(), v4()))); in testPutAllNonEmptyCollectionOnAbsentKey() 93 assertTrue(multimap().putAll(k0(), Lists.newArrayList(v3(), null))); in testPutAllNullValueOnPresentKey_supported() 99 assertTrue(multimap().putAll(k3(), Lists.newArrayList(v3(), null))); in testPutAllNullValueOnAbsentKey_supported() 105 multimap().putAll(k1(), Lists.newArrayList((V) null)); in testPutAllNullValueSingle_unsupported() 116 multimap().putAll(k3(), Lists.newArrayList(v3(), null)); in testPutAllNullValueNullLast_unsupported() 125 assertEquals(Lists.newArrayList(), Lists.newArrayList(values)); in testPutAllNullValueNullLast_unsupported() [all …]
|
/aosp_15_r20/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
H A D | MultimapPutIterableTester.java | 28 import com.google.common.collect.Lists; 56 return Lists.newArrayList(v3(), v4()).iterator(); in testPutAllNonEmptyIterableOnPresentKey() 65 assertTrue(multimap().putAll(k0(), Lists.newArrayList(v3(), v4()))); in testPutAllNonEmptyCollectionOnPresentKey() 78 return Lists.newArrayList(v3(), v4()).iterator(); in testPutAllNonEmptyIterableOnAbsentKey() 86 assertTrue(multimap().putAll(k3(), Lists.newArrayList(v3(), v4()))); in testPutAllNonEmptyCollectionOnAbsentKey() 93 assertTrue(multimap().putAll(k0(), Lists.newArrayList(v3(), null))); in testPutAllNullValueOnPresentKey_supported() 99 assertTrue(multimap().putAll(k3(), Lists.newArrayList(v3(), null))); in testPutAllNullValueOnAbsentKey_supported() 105 multimap().putAll(k1(), Lists.newArrayList((V) null)); in testPutAllNullValueSingle_unsupported() 116 multimap().putAll(k3(), Lists.newArrayList(v3(), null)); in testPutAllNullValueNullLast_unsupported() 125 assertEquals(Lists.newArrayList(), Lists.newArrayList(values)); in testPutAllNullValueNullLast_unsupported() [all …]
|
/aosp_15_r20/external/trusty/arm-trusted-firmware/docs/about/ |
D | contact.rst | 11 Mailing Lists 14 Public mailing lists for TF-A and the wider Trusted Firmware project are 15 hosted on TrustedFirmware.org. The mailing lists can be used for general 20 The relevant lists for the TF-A project are: 25 You can see a `summary of all the lists`_ on the TrustedFirmware.org website. 49 .. _`TF-A development`: https://lists.trustedfirmware.org/mailman3/lists/tf-a.lists.trustedfirmware… 50 .. _`TF-A-Tests development`: https://lists.trustedfirmware.org/mailman3/lists/tf-a-tests.lists.tru… 51 .. _`summary of all the lists`: https://lists.trustedfirmware.org/mailman3/lists/
|
/aosp_15_r20/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | DisplayAreaPolicyBuilderTest.java | 61 import com.google.android.collect.Lists; 302 .setTaskDisplayAreas(Lists.newArrayList( in testBuilder_singleRoot_validateSettings() 334 .setTaskDisplayAreas(Lists.newArrayList(mTda1))); in testBuilder_displayAreaGroup_validateSettings() 359 .setTaskDisplayAreas(Lists.newArrayList(mTda1))); in testBuilder_displayAreaGroup_validateSettings() 375 .setTaskDisplayAreas(Lists.newArrayList(mTda1))); in testBuilder_rootHasUniqueId() 383 .setTaskDisplayAreas(Lists.newArrayList( in testBuilder_rootHasUniqueId() 406 final List<TaskDisplayArea> tdaList = Lists.newArrayList( in testBuilder_taskDisplayAreaHasUniqueId() 420 .setTaskDisplayAreas(Lists.newArrayList( in testBuilder_taskDisplayAreaHasUniqueId() 456 .setTaskDisplayAreas(Lists.newArrayList(mTda1)) in testBuilder_featureHasUniqueId() 480 .setTaskDisplayAreas(Lists.newArrayList( in testBuilder_idsNotGreaterThanFeatureVendorLast() [all …]
|