Home
last modified time | relevance | path

Searched refs:entry3 (Results 1 – 25 of 33) sorted by relevance

12

/external/deqp-deps/amber/src/
Dpipeline_test.cc519 Pipeline::ShaderInfo::DescriptorMapEntry entry3; in TEST_F() local
574 Pipeline::ShaderInfo::DescriptorMapEntry entry3; in TEST_F() local
575 entry3.kind = Pipeline::ShaderInfo::DescriptorMapEntry::Kind::POD; in TEST_F()
576 entry3.descriptor_set = 4; in TEST_F()
577 entry3.binding = 4; in TEST_F()
578 entry3.arg_name = "arg_c"; in TEST_F()
579 entry3.arg_ordinal = 0; in TEST_F()
580 entry3.pod_offset = 0; in TEST_F()
581 entry3.pod_arg_size = 4; in TEST_F()
582 p.GetShaders()[0].AddDescriptorEntry("my_main", std::move(entry3)); in TEST_F()
[all …]
/external/google-breakpad/src/common/
Dmodule_unittest.cc329 Module::StackFrameEntry* entry3 = new Module::StackFrameEntry(); in TEST() local
330 entry3->address = 0x5e8d0db0a7075c6cULL; in TEST()
331 entry3->size = 0x1c7edb12a7aea229ULL; in TEST()
332 entry3->initial_rules[".cfa"] = "Whose woods are these"; in TEST()
333 entry3->rule_changes[0x47ceb0f63c269d7fULL]["calzone"] = in TEST()
335 entry3->rule_changes[0x47ceb0f63c269d7fULL]["cannoli"] = in TEST()
337 entry3->rule_changes[0x36682fad3763ffffULL]["stromboli"] = in TEST()
339 entry3->rule_changes[0x36682fad3763ffffULL][".cfa"] = in TEST()
341 m.AddStackFrameEntry(entry3); in TEST()
589 Module::StackFrameEntry* entry3 = new Module::StackFrameEntry(); in TEST() local
[all …]
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/memory/
DMemoryArchiveTestCase.java51 final ArchiveEntry entry3 = is.getNextEntry(); in testReading() local
52 assertNull(entry3); in testReading()
/external/volley/src/test/java/com/android/volley/toolbox/
DDiskBasedCacheTest.java206 Cache.Entry entry3 = randomData(MAX_SIZE / 3 - getEntrySizeOnDisk("entry3") - 1); in testTrimWithMultipleEvictions_underHysteresisThreshold() local
207 cache.put("entry3", entry3); in testTrimWithMultipleEvictions_underHysteresisThreshold()
211 assertThatEntriesAreEqual(cache.get("entry3"), entry3); in testTrimWithMultipleEvictions_underHysteresisThreshold()
231 Cache.Entry entry3 = randomData(MAX_SIZE / 3 - getEntrySizeOnDisk("entry3") - 1); in testTrimWithMultipleEvictions_atHysteresisThreshold() local
232 cache.put("entry3", entry3); in testTrimWithMultipleEvictions_atHysteresisThreshold()
236 assertThatEntriesAreEqual(cache.get("entry3"), entry3); in testTrimWithMultipleEvictions_atHysteresisThreshold()
257 Cache.Entry entry3 = randomData(MAX_SIZE / 3 - getEntrySizeOnDisk("entry3") - 1); in testTrimWithPartialEvictions() local
258 cache.put("entry3", entry3); in testTrimWithPartialEvictions()
262 assertThatEntriesAreEqual(cache.get("entry3"), entry3); in testTrimWithPartialEvictions()
269 assertThatEntriesAreEqual(cache.get("entry3"), entry3); in testTrimWithPartialEvictions()
/external/cldr/tools/java/org/unicode/cldr/util/
DGrammarInfo.java182 … for (Entry<GrammaticalScope, Set<String>> entry3 : entry2.getValue().entrySet()) { in forEach()
183 final GrammaticalScope usage = entry3.getKey(); in forEach()
184 for (String value : entry3.getValue()) { in forEach()
205 … for (Entry<GrammaticalScope, Set<String>> entry3 : entry2.getValue().entrySet()) { in forEach3()
206 final GrammaticalScope usage = entry3.getKey(); in forEach3()
207 final Collection<String> values = entry3.getValue(); in forEach3()
DChainedMap.java156 … for (Entry<Object, Object> entry3 : ((Map<Object, Object>) entry2.getValue()).entrySet()) { in rows()
158 … entry0.getKey(), entry1.getKey(), entry2.getKey(), entry3.getKey(), entry3.getValue()); in rows()
DWikiSubdivisionLanguages.java234 for (Entry<String, Collection<String>> entry3 : inverse.asMap().entrySet()) { in main()
235 String name = entry3.getKey(); in main()
242 Collection<String> paths = entry3.getValue(); in main()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DZipArchiveEntryTest.java254 final ZipArchiveEntry entry3 = new ZipArchiveEntry("foo"); in testNullCommentEqualsEmptyComment() local
257 entry3.setComment("bar"); in testNullCommentEqualsEmptyComment()
259 assertFalse(entry1.equals(entry3)); in testNullCommentEqualsEmptyComment()
260 assertFalse(entry2.equals(entry3)); in testNullCommentEqualsEmptyComment()
/external/cldr/tools/java/org/unicode/cldr/tool/
DChartUnitPreferences.java85 …for (Entry<Set<String>, Collection<UnitPreference>> entry3 : entry2.getValue().asMap().entrySet())… in writeContents()
87 Set<String> regions = entry3.getKey(); in writeContents()
91 for (UnitPreference pref : entry3.getValue()) { in writeContents()
DCompareIso3166_1Status.java111 … for (Entry<Iso3166Status, Map<String, Boolean>> entry3 : entry2.getValue().entrySet()) { in main()
112 Iso3166Status isoStatus2 = entry3.getKey(); in main()
113 Set<String> codes = entry3.getValue().keySet(); in main()
DListCoverageLevels.java125 … for (Entry<CLDRLocale, Map<List<String>, Boolean>> entry3 : entry2.getValue().entrySet()) { in main()
126 CLDRLocale locale = entry3.getKey(); in main()
127 Set<List<String>> attrs = entry3.getValue().keySet(); in main()
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DListCommandHandlerTest.groovy54 …final entry3 = new FileEntry(path: p(DIR, "another_file.doc"), lastModified: LAST_MODIFIED, conten…
57 fileSystem.add(entry3)
66 listingFor(entry3)] as Set
/external/mesa3d/src/util/tests/set/
Dset_test.cpp143 struct set_entry *entry3 = _mesa_set_search_or_add(s, &d); in TEST() local
144 EXPECT_EQ(entry3->key, &d); in TEST()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestAttributeValues.java338 … for (Entry<String, Map<String, Boolean>> entry3 : entry2.getValue().entrySet()) { in show()
339 String attributeName = entry3.getKey(); in show()
340 Set<String> validFound = entry3.getValue().keySet(); in show()

12