Home
last modified time | relevance | path

Searched refs:entry1 (Results 1 – 25 of 51) sorted by relevance

123

/external/mesa3d/src/util/tests/hash_table/
Dcollision.c40 struct hash_entry *entry1, *entry2, *search_entry; in main() local
56 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); in main()
57 assert(entry1->key == str1); in main()
63 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); in main()
64 assert(entry1->key == str1); in main()
67 _mesa_hash_table_remove(ht, entry1); in main()
87 entry1 = _mesa_hash_table_search_pre_hashed(ht, bad_hash, str1); in main()
88 assert(entry1->key == str1); in main()
/external/proguard/src/proguard/
DConfigurationChecker.java193 ClassPathEntry entry1 = classPath1.get(index1); in checkConflicts() local
201 if (entry2.getName().equals(entry1.getName())) in checkConflicts()
203 if (entry1.isOutput()) in checkConflicts()
208 … throw new IOException("The same output jar ["+entry1.getName()+"] is specified twice."); in checkConflicts()
213 … throw new IOException("Input jars and output jars must be different ["+entry1.getName()+"]."); in checkConflicts()
221 … throw new IOException("Input jars and output jars must be different ["+entry1.getName()+"]."); in checkConflicts()
223 else if (!entry1.isFiltered() || in checkConflicts()
227 … throw new IOException("The same input jar ["+entry1.getName()+"] is specified twice."); in checkConflicts()
/external/e2fsprogs/contrib/android/
De2fsdroid.c126 const struct ugid_map_entry *entry1 = &mapping->entries[i]; in is_valid_ugid_map() local
130 if (is_overlapping(entry1->child_id, entry1->length, in is_valid_ugid_map()
135 entry1->child_id, entry1->parent_id, in is_valid_ugid_map()
136 entry1->length, entry2->child_id, in is_valid_ugid_map()
140 if (is_overlapping(entry1->parent_id, entry1->length, in is_valid_ugid_map()
145 entry1->child_id, entry1->parent_id, in is_valid_ugid_map()
146 entry1->length, entry2->child_id, in is_valid_ugid_map()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestAttributeValues.java80 for (AttributeValueSpec entry1 : missing) { in TestSingleFile()
81 errln("Missing Tests: " + entry1); in TestSingleFile()
101 for (R3<DtdType, String, String> entry1 : AttributeValueValidity.getTodoTests()) { in TestCoreValidity()
102 …inished Test: " + ++count + "\t" + new AttributeValueSpec(entry1.get0(), entry1.get1(), entry1.get… in TestCoreValidity()
106 for (AttributeValueSpec entry1 : missing) { in TestCoreValidity()
107 errln("Missing Test: " + entry1); in TestCoreValidity()
DTestSubdivisions.java104 for (Entry<String, Map<String, Map<String, Status>>> entry1 : countryToNameToSubdivisions) { in checkSubdivisionFile()
105 String country = entry1.getKey().toUpperCase(Locale.ROOT); in checkSubdivisionFile()
106 for (Entry<String, Map<String, Status>> entry2 : entry1.getValue().entrySet()) { in checkSubdivisionFile()
/external/guava/guava-tests/test/com/google/common/collect/
DWellBehavedMapTest.java66 Map.Entry<Foo, Integer> entry1 = Iterables.getOnlyElement(map.entrySet()); in testEntriesAreMutableAndConsistent() local
70 assertNotSame(entry1, entry2); in testEntriesAreMutableAndConsistent()
74 assertTrue(entrySet.contains(entry1)); in testEntriesAreMutableAndConsistent()
78 entry1.setValue(2); in testEntriesAreMutableAndConsistent()
81 assertEquals(entry1.getValue(), entry2.getValue()); in testEntriesAreMutableAndConsistent()
84 assertTrue(entrySet.contains(entry1)); in testEntriesAreMutableAndConsistent()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Mem2Reg/
Ddebug-alloca-phi.ll8 %entry1 = alloca i8, align 8
9 call void @llvm.dbg.declare(metadata i8* %entry1, metadata !18, metadata !19), !dbg !20
10 store i8 0, i8* %entry1, align 8, !dbg !20
15 %entryN = load i8, i8* %entry1, align 8, !dbg !20
22 store i8 %0, i8* %entry1, align 8, !dbg !20
Ddebug-alloca-phi-2.ll8 %entry1 = alloca i1, align 8
9 call void @llvm.dbg.declare(metadata i1* %entry1, metadata !18, metadata !19), !dbg !20
10 store i1 0, i1* %entry1, align 8, !dbg !20
15 %entryN = load i1, i1* %entry1, align 8, !dbg !20
22 store i1 %0, i1* %entry1, align 8, !dbg !20
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/memory/
DMemoryArchiveTestCase.java39 final ArchiveEntry entry1 = is.getNextEntry(); in testReading() local
40 assertNotNull(entry1); in testReading()
41 assertEquals("test1", entry1.getName()); in testReading()
/external/guava/guava/src/com/google/common/collect/
DMultisets.java417 Entry<? extends E> entry1 = iterator1.next();
418 E element = entry1.getElement();
419 int count = Math.max(entry1.getCount(), multiset2.count(element));
481 Entry<E> entry1 = iterator1.next();
482 E element = entry1.getElement();
483 int count = Math.min(entry1.getCount(), multiset2.count(element));
558 Entry<? extends E> entry1 = iterator1.next();
559 E element = entry1.getElement();
560 int count = entry1.getCount() + multiset2.count(element);
619 Entry<E> entry1 = iterator1.next();
[all …]
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DZipArchiveEntryTest.java241 final ZipArchiveEntry entry1 = new ZipArchiveEntry("foo"); in testNotEquals() local
243 assertFalse(entry1.equals(entry2)); in testNotEquals()
252 final ZipArchiveEntry entry1 = new ZipArchiveEntry("foo"); in testNullCommentEqualsEmptyComment() local
255 entry1.setComment(null); in testNullCommentEqualsEmptyComment()
258 assertEquals(entry1, entry2); in testNullCommentEqualsEmptyComment()
259 assertFalse(entry1.equals(entry3)); in testNullCommentEqualsEmptyComment()
/external/cldr/tools/java/org/unicode/cldr/util/
DChainedMap.java57 … for (Entry<Object, Object> entry1 : ((Map<Object, Object>) entry0.getValue()).entrySet()) { in rows()
58 … R3<K2, K1, V> item = (R3<K2, K1, V>) Row.of(entry0.getKey(), entry1.getKey(), entry1.getValue()); in rows()
106 … for (Entry<Object, Object> entry1 : ((Map<Object, Object>) entry0.getValue()).entrySet()) { in rows()
107 … for (Entry<Object, Object> entry2 : ((Map<Object, Object>) entry1.getValue()).entrySet()) { in rows()
108 …R4<K3, K2, K1, V> item = (R4<K3, K2, K1, V>) Row.of(entry0.getKey(), entry1.getKey(), entry2.getKe… in rows()
154 … for (Entry<Object, Object> entry1 : ((Map<Object, Object>) entry0.getValue()).entrySet()) { in rows()
155 … for (Entry<Object, Object> entry2 : ((Map<Object, Object>) entry1.getValue()).entrySet()) { in rows()
158 … entry0.getKey(), entry1.getKey(), entry2.getKey(), entry3.getKey(), entry3.getValue()); in rows()
/external/volley/src/test/java/com/android/volley/toolbox/
DDiskBasedCacheTest.java202 Cache.Entry entry1 = randomData(MAX_SIZE / 3 - getEntrySizeOnDisk("entry1") - 1); in testTrimWithMultipleEvictions_underHysteresisThreshold() local
203 cache.put("entry1", entry1); in testTrimWithMultipleEvictions_underHysteresisThreshold()
209 assertThatEntriesAreEqual(cache.get("entry1"), entry1); in testTrimWithMultipleEvictions_underHysteresisThreshold()
227 Cache.Entry entry1 = randomData(MAX_SIZE / 3 - getEntrySizeOnDisk("entry1") - 1); in testTrimWithMultipleEvictions_atHysteresisThreshold() local
228 cache.put("entry1", entry1); in testTrimWithMultipleEvictions_atHysteresisThreshold()
234 assertThatEntriesAreEqual(cache.get("entry1"), entry1); in testTrimWithMultipleEvictions_atHysteresisThreshold()
253 Cache.Entry entry1 = randomData(MAX_SIZE / 3 - getEntrySizeOnDisk("entry1") - 1); in testTrimWithPartialEvictions() local
254 cache.put("entry1", entry1); in testTrimWithPartialEvictions()
260 assertThatEntriesAreEqual(cache.get("entry1"), entry1); in testTrimWithPartialEvictions()
/external/giflib/
Dquantize.c316 QuantizedColorType *entry1 = (*((QuantizedColorType **) Entry1)); in SortCmpRtn() local
320 int hash1 = entry1->RGB[SortRGBAxis] * 256 * 256 in SortCmpRtn()
321 + entry1->RGB[(SortRGBAxis+1) % 3] * 256 in SortCmpRtn()
322 + entry1->RGB[(SortRGBAxis+2) % 3]; in SortCmpRtn()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy52 …final entry1 = new FileEntry(path: p(DIR, "abc.txt"), lastModified: LAST_MODIFIED, contents: "abc")
55 fileSystem.add(entry1)
64 listingFor(entry1),

123