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

1 2

  /frameworks/base/tests/CoreTests/android/core/
ZipStreamTest.java 100 ZipEntry newEntry = new ZipEntry("file-" + i);
103 newEntry.setComment("this is file " + i);
104 out.putNextEntry(newEntry);
123 ZipEntry newEntry = new ZipEntry("file-" + i);
126 newEntry.setComment("this is file " + i);
127 newEntry.setMethod(ZipEntry.STORED);
128 newEntry.setSize(128 * 1024);
129 newEntry.setCrc(crcs[i]);
130 out.putNextEntry(newEntry);
ZipFileTest.java 88 ZipEntry newEntry = new ZipEntry("file-" + i);
91 newEntry.setComment("this is file " + i);
93 out.putNextEntry(newEntry);
  /cts/tools/host/src/com/android/cts/
MultiplexingLogListener.java 57 public void newEntry(LogEntry entry) {
59 listener.newEntry(entry);
ReferenceAppTestPackage.java 153 // use newEntry instead
156 public void newEntry(LogEntry entry) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ExportHelper.java 140 ZipEntry newEntry;
144 newEntry = new JarEntry(entry);
147 newEntry = new JarEntry(name);
151 zos.putNextEntry(newEntry);
  /external/guava/src/com/google/common/collect/
MapMaker.java 353 @Override <K, V> ReferenceEntry<K, V> newEntry(
382 @Override <K, V> ReferenceEntry<K, V> newEntry(
411 @Override <K, V> ReferenceEntry<K, V> newEntry(
451 abstract <K, V> ReferenceEntry<K, V> newEntry(
540 public ReferenceEntry<K, V> newEntry(
542 return keyStrength.newEntry(internals, key, hash, next);
549 ReferenceEntry<K, V> newEntry
550 = newEntry(key, original.getHash(), newNext);
551 newEntry.setValueReference(
552 new FutureValueReference(original, newEntry));
    [all...]
CustomConcurrentHashMap.java 81 * public InternalEntry<K, V> newEntry(K key, int hash,
318 abstract E newEntry(K key, int hash, E next);
394 * that was provided to {@link Strategy#newEntry} when the given entry was
398 * {@link Strategy#newEntry}
403 * Returns the hash code that was passed to {@link Strategy#newEntry})
472 * placeholder value in {@link #newEntry(Object, int, Object)} so that
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
LogReceiver.java 57 * <li>{@link #newEntry(com.android.ddmlib.log.LogReceiver.LogEntry)} provides a
68 public void newEntry(LogEntry entry);
173 mListener.newEntry(mCurrentEntry);
  /external/emma/core/java12/com/vladium/util/
IntObjectMap.java 192 final Entry newEntry = new Entry (key, value, bucketListHead);
193 buckets [bucketIndex] = newEntry;
IntSet.java 164 final Entry newEntry = new Entry (key, bucketListHead);
165 buckets [bucketIndex] = newEntry;
IntIntMap.java 203 final Entry newEntry = new Entry (key, value, bucketListHead);
204 buckets [bucketIndex] = newEntry;
ObjectIntMap.java 196 final Entry newEntry = new Entry (key, value, bucketListHead);
197 buckets [bucketIndex] = newEntry;
SoftValueMap.java 284 final SoftEntry newEntry = new SoftEntry (m_valueReferenceQueue, key, value, bucketListHead, bucketIndex);
285 buckets [bucketIndex] = newEntry;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
SignedJarBuilder.java 222 JarEntry newEntry;
226 newEntry = new JarEntry(entry);
229 newEntry = new JarEntry(name);
232 writeEntry(zis, newEntry);
  /external/chromium/third_party/icu/source/i18n/
zonemeta.cpp 441 CanonicalMapEntry* newEntry = (CanonicalMapEntry*)uprv_malloc(sizeof(CanonicalMapEntry));
443 if (newEntry == NULL) {
456 newEntry->id = allocUStringInTable(idLen);
457 if (newEntry->id == NULL) {
459 uprv_free(newEntry);
463 derefZone.extract((UChar*)(newEntry->id), idLen, status);
466 uprv_free(newEntry);
470 newEntry->country = NULL;
473 newEntry->id = entry->id;
474 newEntry->country = entry->country
    [all...]
colldata.cpp 521 CollDataCacheEntry *entry = NULL, *newEntry = NULL;
530 newEntry = new CollDataCacheEntry(newData);
532 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
541 uhash_put(cache, newData->key, newEntry, &status);
545 delete newEntry;
563 if (newEntry != NULL) {
564 delete newEntry;
  /libcore/luni/src/main/java/java/util/zip/
ZipFile.java 380 ZipEntry newEntry = new ZipEntry(ler, bin);
381 mEntries.put(newEntry.getName(), newEntry);
  /sdk/dumpeventlog/src/com/android/dumpeventlog/
DumpEventLog.java 59 public void newEntry(LogEntry entry) {
  /external/icu4c/i18n/
colldata.cpp 519 CollDataCacheEntry *entry = NULL, *newEntry = NULL;
528 newEntry = new CollDataCacheEntry(newData);
530 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
539 uhash_put(cache, newData->key, newEntry, &status);
543 delete newEntry;
561 if (newEntry != NULL) {
562 delete newEntry;
  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.h 329 SymbolTableEntry newEntry(index, global.attributes);
330 symbolTable().add(global.identifier.ustring().rep(), newEntry);
  /external/chromium/third_party/icu/source/tools/gennorm/
store.c 327 uint32_t newEntry;
330 newEntry=code|((uint32_t)flags<<24);
336 if(newEntry==combiningCPs[i]) {
341 newEntry|=combiningCPs[i];
363 flags=(uint8_t)(newEntry>>24);
373 /* move the following code points up one and insert newEntry at i */
377 combiningCPs[i]=newEntry;
    [all...]
  /external/icu4c/tools/gennorm/
store.c 327 uint32_t newEntry;
330 newEntry=code|((uint32_t)flags<<24);
336 if(newEntry==combiningCPs[i]) {
341 newEntry|=combiningCPs[i];
363 flags=(uint8_t)(newEntry>>24);
373 /* move the following code points up one and insert newEntry at i */
377 combiningCPs[i]=newEntry;
    [all...]
  /frameworks/base/libs/ui/
InputDispatcher.cpp 579 KeyEntry* newEntry = mAllocator.obtainKeyEntry(currentTime,
584 mKeyRepeatState.lastKeyEntry = newEntry;
587 entry = newEntry;
    [all...]
  /sdk/eventanalyzer/src/com/android/eventanalyzer/
EventAnalyzer.java 404 // we ignore raw data. New entries are processed in #newEntry(LogEntry)
409 * @see com.android.ddmlib.log.LogReceiver.ILogListener#newEntry(com.android.ddmlib.log.LogReceiver.LogEntry)
411 public void newEntry(LogEntry entry) {
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 169 SymbolTableEntry newEntry(index, isConstant ? ReadOnly : 0);
170 pair<SymbolTable::iterator, bool> result = symbolTable().add(ident.ustring().rep(), newEntry);
185 SymbolTableEntry newEntry(index, isConstant ? ReadOnly : 0);
186 pair<SymbolTable::iterator, bool> result = symbolTable().add(ident.ustring().rep(), newEntry);
    [all...]

Completed in 428 milliseconds

1 2