HomeSort by relevance Sort by last modified time
    Searched refs:entry2 (Results 1 - 25 of 281) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/chips/tests/src/com/android/ex/chips/
RecipientAlternatesAdapterTest.java 118 final RecipientEntry entry2 = null; local
120 assertEquals(RecipientAlternatesAdapter.getBetterRecipient(entry1, entry2), entry1);
121 assertEquals(RecipientAlternatesAdapter.getBetterRecipient(entry2, entry1), entry1);
130 final RecipientEntry entry2 = RecipientEntry.constructFakeEntry("1@android.com", true); local
132 assertEquals(RecipientAlternatesAdapter.getBetterRecipient(entry1, entry2), entry1);
133 assertEquals(RecipientAlternatesAdapter.getBetterRecipient(entry2, entry1), entry1);
143 final RecipientEntry entry2 = local
148 assertEquals(RecipientAlternatesAdapter.getBetterRecipient(entry1, entry2), entry1);
149 assertEquals(RecipientAlternatesAdapter.getBetterRecipient(entry2, entry1), entry1);
158 final RecipientEntry entry2 local
    [all...]
  /system/media/camera/docs/
metadata_model_test.py 18 entry2 = Entry(name="entry2", type="int32", kind="static",
27 ins1a._entries = [entry2]
47 self.assertIn(entry2, new_ins.entries)
64 entry2 = Entry(name="entry2", type="int32", kind="static",
71 kind_dynamic._entries = [entry2]
84 self.assertIn(entry2, combined_kind.entries)
98 entry2 = Entry(name="entry2", type="int32", kind="static"
    [all...]
  /cts/tests/tests/sax/src/android/sax/cts/
ElementTest.java 44 + "<entry2 year=\"2000\"><id>jim</id></entry2>"
50 private static final String ENTRY2 = "entry2";
94 Element entry2 = root.requireChild(ATOM_NAMESPACE, ENTRY2); local
95 entry2.setStartElementListener(new StartElementListener() {
101 entry2.setEndElementListener(new EndElementListener() {
106 entry2.getChild(ATOM_NAMESPACE, ID).setTextElementListener(new TextElementListener() {
  /external/libcxx/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
copy_assign.pass.cpp 81 const path entry2 = *it2; local
82 TEST_CHECK(entry2 != entry);
move_assign.pass.cpp 85 const path entry2 = *it2; local
86 TEST_CHECK(entry2 != entry);
increment.pass.cpp 85 const path entry2 = *it++; local
86 TEST_CHECK(entry2 == entry);
  /external/guava/guava-tests/test/com/google/common/collect/
WellBehavedMapTest.java 67 Map.Entry<Foo, Integer> entry2 = Iterables.getOnlyElement(map.entrySet()); local
70 assertNotSame(entry1, entry2);
75 assertTrue(entrySet.contains(entry2));
80 // entry2 is also modified
81 assertEquals(entry1.getValue(), entry2.getValue());
85 assertTrue(entrySet.contains(entry2));
  /external/proguard/src/proguard/
ConfigurationChecker.java 188 ClassPathEntry entry2 = classPath2.get(index2); local
190 if (entry2.getName().equals(entry1.getName()))
194 if (entry2.isOutput())
207 if (entry2.isOutput())
213 !entry2.isFiltered())
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
MetadataEntryParserTest.java 244 private void assertMetaDataEntry(MetadataEntry entry1, MetadataEntry entry2) {
245 assertRawContactInfoEquals(entry1.mRawContactInfo, entry2.mRawContactInfo);
246 assertEquals(entry1.mSendToVoicemail, entry2.mSendToVoicemail);
247 assertEquals(entry1.mStarred, entry2.mStarred);
248 assertEquals(entry1.mPinned, entry2.mPinned);
249 assertAggregationDataListEquals(entry1.mAggregationDatas, entry2.mAggregationDatas);
250 assertFieldDataListEquals(entry1.mFieldDatas, entry2.mFieldDatas);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipFileTest.java 125 ZipEntry entry1, entry2; local
133 entry2 = zipFile.getEntry("file-2");
137 assertEquals("file-2", entry2.getName());
141 stream2 = zipFile.getInputStream(entry2);
ZipFileTest.java 58 ZipEntry entry2 = entries.nextElement(); local
68 assertNotNull(zipFile.getEntry(entry2.getName()));
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
ListCommandHandlerTest.groovy 53 final entry2 = new DirectoryEntry(path: p(DIR, "OtherFiles"), lastModified: LAST_MODIFIED)
56 fileSystem.add(entry2)
65 listingFor(entry2),
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapSizeTester.java 53 for (Entry<K, Collection<V>> entry2 : multimap.asMap().entrySet()) {
54 size2 += entry2.getValue().size();
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientAlternatesAdapter.java 291 * contains more complete information for display purposes. Defaults to <code>entry2</code> if
295 final RecipientEntry entry2) {
297 if (entry2 == null) {
302 return entry2;
307 && TextUtils.isEmpty(entry2.getDisplayName())) {
311 if (!TextUtils.isEmpty(entry2.getDisplayName())
313 return entry2;
318 && TextUtils.equals(entry2.getDisplayName(), entry2.getDestination())) {
322 if (!TextUtils.equals(entry2.getDisplayName(), entry2.getDestination()
    [all...]
  /frameworks/base/wifi/tests/src/android/net/wifi/aware/
TlvBufferUtilsTest.java 77 byte[] entry2 = { 4, 5 };
81 data.add(entry2);
91 equalTo(entry1.length + 1 + entry2.length + 1 + entry3.length + 1 + 1));
94 collector.checkThat("parsedList-entry2", parsedList.get(1), equalTo(entry2));
109 collector.checkThat("parsedList-entry2", parsedList.get(1), equalTo(new byte[] { 55 }));
  /frameworks/compile/mclinker/include/mcld/Target/
KeyEntryMap.h 29 : entry1(pEntry1), entry2(pEntry2) {}
32 EntryType* entry2; member in struct:mcld::KeyEntryMap::EntryPair
144 return mapping->entry.pair_ptr->entry2;
157 return mapping->entry.pair_ptr->entry2;
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
UnitTestZipArchive.java 59 public static final UnitTestZipEntry entry2 = field in class:UnitTestZipArchive
129 Arrays.asList(new UnitTestZipEntry[] {entry1, entry2, entry3, entry4}));
142 * described by {@link #entry1}, {@link #entry2}, {@link #entry3}, and {@link #entry4}. In
  /libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
Handler.java 75 String entry2 = file2.substring(sep2 + 2); local
77 if (!entry1.equals(entry2))
  /tools/test/connectivity/acts/framework/tests/
acts_proto_utils_test.py 102 entry2 = test_proto.entries[1]
103 self.compare_test_entry(entry2, "TestName2", 43,
  /external/giflib/
quantize.c 44 static int SortCmpRtn(const void *Entry1, const void *Entry2);
315 const void *Entry2) {
317 QuantizedColorType *entry2 = (*((QuantizedColorType **) Entry2)); local
323 int hash2 = entry2->RGB[SortRGBAxis] * 256 * 256
324 + entry2->RGB[(SortRGBAxis+1) % 3] * 256
325 + entry2->RGB[(SortRGBAxis+2) % 3];
  /external/webrtc/webrtc/base/
diskcache.cc 331 Entry* entry2 = this2->GetOrCreateEntry(id, false); local
336 entry2->size += new_size;
340 entry2->last_modified = time(0);
341 entry2->lock_state = LS_UNLOCKED;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryViewPage.java 412 Map.Entry<?, ?> entry2; local
416 entry2 = (Map.Entry<?, ?>) e2;
419 entry2 = (Map.Entry<?, ?>) e1;
423 String k2 = entry2.getKey().toString();
426 PerCallStats stats2 = (PerCallStats) entry2.getValue();
  /external/google-breakpad/src/common/
module_unittest.cc 302 Module::StackFrameEntry *entry2 = new Module::StackFrameEntry(); local
303 entry2->address = 0x8064f3af5e067e38ULL;
304 entry2->size = 0x0de2a5ee55509407ULL;
305 entry2->initial_rules[".cfa"] = "I think that I shall never see";
306 entry2->initial_rules["stromboli"] = "a poem lovely as a tree";
307 entry2->initial_rules["cannoli"] = "a tree whose hungry mouth is prest";
308 m.AddStackFrameEntry(entry2);
  /frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp 1451 camera_metadata_entry entry2 = local
1486 camera_metadata_entry entry2 = characteristics.find(ANDROID_SENSOR_COLOR_TRANSFORM2); local
1519 camera_metadata_entry entry2 = local
1553 camera_metadata_entry entry2 = local
1693 camera_metadata_entry entry2 = results.find(ANDROID_STATISTICS_LENS_SHADING_MAP); local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
plugin.go 105 entry2 := uintptr(0)
109 entry2 = f2.entry
112 println("ftab entry outside pc range: ", hex(entry), "/", hex(entry2), ": ", name, "/", name2)

Completed in 1725 milliseconds

1 2 3 4 5 6 7 8 91011>>