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

1 2 3

  /frameworks/base/include/utils/
StringArray.h 65 const char* getEntry(int idx) const {
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 126 return zip.getEntry("File1.txt");
149 * zip.getEntry("File1.txt"); assertNotNull("Did not find entry",
170 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt"));
171 InputStream is2 = zf.getInputStream(zf.getEntry("File2.txt"));
228 * @tests java.util.zip.ZipFile#getEntry(java.lang.String)
232 // java.util.zip.ZipFile.getEntry(java.lang.String)
233 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
238 zentry = zfile.getEntry("testdir1/File1.txt");
240 zentry = zfile.getEntry("testdir1/");
248 zentry = zfile.getEntry("testdir1/testdir1")
    [all...]
ZipEntryTest.java 67 zentry = zfile.getEntry("File3.txt");
70 zentry = zfile.getEntry(null);
145 zentry = zfile.getEntry("File1.txt");
148 zentry = zfile.getEntry("File3.txt");
198 zentry = zfile.getEntry("File1.txt");
272 zentry = zfile.getEntry("File1.txt");
312 zentry = zfile.getEntry("File3.txt");
469 zentry = zfile.getEntry("File1.txt");
  /frameworks/base/media/libmedia/
MediaScannerClient.cpp 159 uint8_t* src = (uint8_t *)mValues->getEntry(i);
173 const char* source = mValues->getEntry(i);
207 encoding &= possibleEncodings(mValues->getEntry(i));
215 if (!handleStringTag(mNames->getEntry(i), mValues->getEntry(i)))
  /development/simulator/app/
PhoneCollection.cpp 130 if (!tmpPhone.Create(strArr.getEntry(i))) {
131 fprintf(stderr, "Sim: Abandoning phone '%s'\n", strArr.getEntry(i));
137 tmpPhone.GetName(), strArr.getEntry(i));
  /frameworks/base/tests/CoreTests/android/core/
ZipFileTest.java 136 entry1 = zipFile.getEntry("file-1");
137 entry2 = zipFile.getEntry("file-2");
182 stream1 = zipFile.getInputStream(zipFile.getEntry("file-0"));
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipEntryTest.java 48 assertNotNull(filename, zipFile.getEntry(filename));
  /packages/apps/Contacts/src/com/android/contacts/
ContactEntryAdapter.java 171 return getEntry(mSections, position, mSeparators);
181 public final static <T extends Entry> T getEntry(ArrayList<ArrayList<T>> sections,
225 Entry entry = getEntry(mSections, position, mSeparators);
243 bindView(v, getEntry(mSections, position, mSeparators));
  /libcore/luni/src/test/java/libcore/java/security/
KeyStoreTest.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarPreferenceActivity.java 119 CharSequence tzName = mHomeTZ.getEntry();
177 mHomeTZ.setSummary(mHomeTZ.getEntry());
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 99 snooze.setSummary(snooze.getEntry());
  /libcore/luni/src/main/java/java/util/jar/
JarFile.java 280 return (JarEntry) getEntry(name);
422 public ZipEntry getEntry(String name) {
423 ZipEntry ze = super.getEntry(name);
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarEntryTest.java 90 zipEntry = jarFile.getEntry(entryName);
145 zipEntry = jarFile.getEntry(entryName2);
216 zipEntry = jarFile.getEntry(entryName);
JarFileTest.java 225 assertTrue(new JarFile(f).getEntry(entryName).getName().equals(
227 assertTrue(new JarFile(f.getPath()).getEntry(entryName).getName()
280 assertEquals("Error in returned entry", 311, jarFile.getEntry(
293 jarFile.getEntry(je.getName());
301 jarFile.getEntry(je.getName());
353 assertEquals("Error in returned entry", 311, jarFile.getEntry(
696 ZipEntry zipEntry = jarFile.getEntry("Test.class");
805 java.io.InputStream is = jf.getInputStream(jf.getEntry(entryName));
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.java 773 * java.security.KeyStore#getEntry(String,
788 keyTest.getEntry("anAlias", new KeyStore.PasswordProtection(new char[] {}));
    [all...]
KeyStore4Test.java 614 method="getEntry",
619 Entry entry = keyStore.getEntry("certalias", null);
631 Entry entry = keyStore.getEntry("certalias", new KeyStore.ProtectionParameter() {});
644 Entry entry = keyStore.getEntry("keyalias", new KeyStore.PasswordProtection(new char[] {} ));
656 keyStore.getEntry("unknownalias", new KeyStore.PasswordProtection(new char[] {}));
669 keyStore.getEntry(null, new KeyStore.ProtectionParameter() {});
  /external/srec/portable/src/
phashtable.c 159 static PHashTableEntry *getEntry(PHashTable *table,
219 if ((entry = getEntry(table, key, hashCode, idx)) != NULL)
267 result = getEntry(table, key, hashCode, idx);
351 entry = getEntry(table, key, hashCode, idx);
440 entry = getEntry(table, key, hashCode, idx);
  /libcore/luni/src/main/java/java/util/
IdentityHashMap.java 165 .getEntry(position);
221 .getEntry(((Map.Entry) object).getKey());
381 private IdentityHashMapEntry<K, V> getEntry(Object key) {
388 return getEntry(index);
399 private IdentityHashMapEntry<K, V> getEntry(int index) {
  /packages/apps/Camera/src/com/android/camera/
ListPreference.java 104 public String getEntry() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegate.java 152 URL jarUrl = bundle.getEntry(AndroidConstants.WS_SEP + JUNIT_JAR);
  /libcore/dalvik/src/main/java/dalvik/system/
PathClassLoader.java 368 entry = zip.getEntry(name);
403 return zip.getEntry(name) != null;
TouchDexLoader.java 275 entry = zip.getEntry(name);
310 return zip.getEntry(name) != null;
  /libcore/luni/src/main/java/java/util/zip/
ZipFile.java 228 public ZipEntry getEntry(String entryName) {
256 entry = getEntry(entry.getName());
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 116 ZipEntry entry = zipFile.getEntry(CLASSES_DEX);
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
AbstractConnPool.java 160 BasicPoolEntry getEntry(

Completed in 2934 milliseconds

1 2 3