Home
last modified time | relevance | path

Searched refs:getKeys (Results 1 – 25 of 117) sorted by relevance

12345

/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/hls/src/test/java/com/google/android/exoplayer2/source/hls/offline/
DHlsDownloaderTest.java125 getHlsDownloader(MULTIVARIANT_PLAYLIST_URI, getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX)); in counterMethods()
134 getHlsDownloader(MULTIVARIANT_PLAYLIST_URI, getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX)); in downloadRepresentation()
153 getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX, MULTIVARIANT_MEDIA_PLAYLIST_2_INDEX)); in downloadMultipleRepresentations()
172 HlsDownloader downloader = getHlsDownloader(MULTIVARIANT_PLAYLIST_URI, getKeys()); in downloadAllRepresentations()
183 getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX, MULTIVARIANT_MEDIA_PLAYLIST_2_INDEX)); in remove()
192 HlsDownloader downloader = getHlsDownloader(MEDIA_PLAYLIST_1_URI, getKeys()); in downloadMediaPlaylist()
216 HlsDownloader downloader = getHlsDownloader(ENC_MEDIA_PLAYLIST_URI, getKeys()); in downloadEncMediaPlaylist()
231 private static ArrayList<StreamKey> getKeys(int... variantIndices) { in getKeys() method in HlsDownloaderTest
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/hls/src/test/java/com/google/android/exoplayer2/source/hls/offline/
DHlsDownloaderTest.java125 getHlsDownloader(MULTIVARIANT_PLAYLIST_URI, getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX)); in counterMethods()
134 getHlsDownloader(MULTIVARIANT_PLAYLIST_URI, getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX)); in downloadRepresentation()
153 getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX, MULTIVARIANT_MEDIA_PLAYLIST_2_INDEX)); in downloadMultipleRepresentations()
172 HlsDownloader downloader = getHlsDownloader(MULTIVARIANT_PLAYLIST_URI, getKeys()); in downloadAllRepresentations()
183 getKeys(MULTIVARIANT_MEDIA_PLAYLIST_1_INDEX, MULTIVARIANT_MEDIA_PLAYLIST_2_INDEX)); in remove()
192 HlsDownloader downloader = getHlsDownloader(MEDIA_PLAYLIST_1_URI, getKeys()); in downloadMediaPlaylist()
216 HlsDownloader downloader = getHlsDownloader(ENC_MEDIA_PLAYLIST_URI, getKeys()); in downloadEncMediaPlaylist()
231 private static ArrayList<StreamKey> getKeys(int... variantIndices) { in getKeys() method in HlsDownloaderTest
/external/perfetto/ui/src/common/
Dschema_unittest.ts31 expect(schema.getKeys('slice')).toEqual(new Set(['id', 'ts', 'dur']));
39 expect(() => schema.getKeys('foo')).toThrow(SchemaError);
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/
DTestUExtension.java28 assertTrue("", uExtension.getKeys().contains("co")); in TestBasic()
32 assertTrue("", uExtension.getKeys().contains("vt")); in TestBasic()
/external/cbor-java/src/test/java/co/nstant/in/cbor/builder/
DMapBuilderTest.java57 assertEquals(19, map.getKeys().size()); in testMapBuilder()
74 rootMap.getKeys().toArray(keys); in startMapInMap()
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/context/
DChainedInternalContextAdapter.java117 public String[] getKeys() in getKeys() method in ChainedInternalContextAdapter
119 return wrappedContext.getKeys(); in getKeys()
DInternalContextAdapterImpl.java292 public String[] getKeys() in getKeys() method in InternalContextAdapterImpl
294 return context.getKeys(); in getKeys()
DContext.java69 String[] getKeys(); in getKeys() method
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/java/security/
DAbstractKeyFactoryTest.java63 for (KeyPair pair : getKeys()) { in testKeyFactory()
107 protected List<KeyPair> getKeys() throws NoSuchAlgorithmException, InvalidKeySpecException { in getKeys() method in AbstractKeyFactoryTest
/external/conscrypt/testing/src/main/java/org/conscrypt/java/security/
DAbstractKeyFactoryTest.java60 for (KeyPair pair : getKeys()) { in testKeyFactory()
98 protected List<KeyPair> getKeys() throws NoSuchAlgorithmException, InvalidKeySpecException { in getKeys() method in AbstractKeyFactoryTest
/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/
DCommonsExtPropTestCase.java87 showIterator(result, c.getKeys()); in testExtendedProperties()
94 showIterator(result, subset.getKeys()); in testExtendedProperties()
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/util/
DExtProperties.java916 for (Iterator it = props.getKeys(); it.hasNext();) in combine()
953 public Iterator<String> getKeys() in getKeys() method in ExtProperties
965 public Iterator<String> getKeys(String prefix) in getKeys() method in ExtProperties
967 Iterator<String> keys = getKeys(); in getKeys()
993 Iterator<String> keys = getKeys(); in subset()
1049 Iterator<String> i = getKeys(); in display()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/cache/
DCachedContentIndexTest.java257 Set<String> keys = index.getKeys(); in addGetRemove()
456 Set<String> keys = index.getKeys(); in assertStoredAndLoadedEqual()
457 Set<String> keys2 = index2.getKeys(); in assertStoredAndLoadedEqual()
DCacheDataSourceTest2.java185 for (String key : cache.getKeys()) { in emptyCache()
191 assertThat(cache.getKeys().isEmpty()).isTrue(); in emptyCache()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/cache/
DCachedContentIndexTest.java257 Set<String> keys = index.getKeys(); in addGetRemove()
456 Set<String> keys = index.getKeys(); in assertStoredAndLoadedEqual()
457 Set<String> keys2 = index2.getKeys(); in assertStoredAndLoadedEqual()
DCacheDataSourceTest2.java185 for (String key : cache.getKeys()) { in emptyCache()
191 assertThat(cache.getKeys().isEmpty()).isTrue(); in emptyCache()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DICUResourceBundleTest.java907 public Enumeration getKeys() {return null;} in TestCoverage() method in ICUResourceBundleTest.Stub
969 Enumeration keys = bundle.getKeys(); in TestJavaULocaleBundleLoading()
1013 Set<String> te_set = setFromEnumeration(te.getKeys()); in TestICUGetKeysAtTopLevel()
1014 Set<String> te_IN_set = setFromEnumeration(te_IN.getKeys()); in TestICUGetKeysAtTopLevel()
1032 Set<String> keys = setFromEnumeration(tagged_array_in_Root_te.getKeys()); in TestICUGetKeysForResourceItem()
1038 …assertFalse("array_in_Root_te.getKeys().hasMoreElements()", array_in_Root_te.getKeys().hasMoreElem… in TestICUGetKeysForResourceItem()
1040 …assertFalse("string_in_Root_te.getKeys().hasMoreElements()", string_in_Root_te.getKeys().hasMoreEl… in TestICUGetKeysForResourceItem()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DICUResourceBundleTest.java904 public Enumeration getKeys() {return null;} in TestCoverage() method in ICUResourceBundleTest.Stub
966 Enumeration keys = bundle.getKeys(); in TestJavaULocaleBundleLoading()
1010 Set<String> te_set = setFromEnumeration(te.getKeys()); in TestICUGetKeysAtTopLevel()
1011 Set<String> te_IN_set = setFromEnumeration(te_IN.getKeys()); in TestICUGetKeysAtTopLevel()
1029 Set<String> keys = setFromEnumeration(tagged_array_in_Root_te.getKeys()); in TestICUGetKeysForResourceItem()
1035 …assertFalse("array_in_Root_te.getKeys().hasMoreElements()", array_in_Root_te.getKeys().hasMoreElem… in TestICUGetKeysForResourceItem()
1037 …assertFalse("string_in_Root_te.getKeys().hasMoreElements()", string_in_Root_te.getKeys().hasMoreEl… in TestICUGetKeysForResourceItem()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DResourceBundleWrapper.java75 public Enumeration<String> getKeys(){ in getKeys() method in ResourceBundleWrapper
83 Enumeration<String> e = current.bundle.getKeys(); in initKeysVector()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DResourceBundleWrapper.java77 public Enumeration<String> getKeys(){ in getKeys() method in ResourceBundleWrapper
85 Enumeration<String> e = current.bundle.getKeys(); in initKeysVector()
/external/replicaisland/src/com/replica/replicaisland/
DInputKeyboard.java55 public InputButton[] getKeys() {
/external/testng/src/main/java/org/testng/reporters/jq/
DResultsByClass.java37 return m_results.getKeys(); in getClasses()
/external/conscrypt/common/src/test/java/org/conscrypt/java/security/
DKeyFactoryTestRSACustom.java52 protected List<KeyPair> getKeys() throws NoSuchAlgorithmException, InvalidKeySpecException { in getKeys() method in KeyFactoryTestRSACustom
DKeyFactoryTestXDH.java49 protected List<KeyPair> getKeys() throws NoSuchAlgorithmException, InvalidKeySpecException { in getKeys() method in KeyFactoryTestXDH
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/java/security/
DKeyFactoryTestRSACustom.java56 protected List<KeyPair> getKeys() throws NoSuchAlgorithmException, InvalidKeySpecException { in getKeys() method in KeyFactoryTestRSACustom

12345