HomeSort by relevance Sort by last modified time
    Searched refs:currentCapacity (Results 1 - 4 of 4) sorted by null

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DirectoryFullException.java 35 private final int currentCapacity;
38 DirectoryFullException(int currentCapacity, int requestedCapacity) {
39 this("directory is full", currentCapacity, requestedCapacity);
43 int currentCapacity, int requestedCapacity) {
47 this.currentCapacity = currentCapacity;
57 return currentCapacity;
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.h 593 size_t currentCapacity = m_structure->propertyStorageCapacity();
595 if (currentCapacity != m_structure->propertyStorageCapacity())
596 allocatePropertyStorage(currentCapacity, m_structure->propertyStorageCapacity());
607 size_t currentCapacity = m_structure->propertyStorageCapacity();
609 if (currentCapacity != structure->propertyStorageCapacity())
610 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
659 if (currentCapacity != structure->propertyStorageCapacity())
660 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
718 size_t currentCapacity = m_structure->propertyStorageCapacity();
720 if (currentCapacity != m_structure->propertyStorageCapacity()
    [all...]
  /libcore/luni/src/main/java/java/util/
ArrayList.java 173 private static int newCapacity(int currentCapacity) {
174 int increment = (currentCapacity < (MIN_CAPACITY_INCREMENT / 2) ?
175 MIN_CAPACITY_INCREMENT : currentCapacity >> 1);
176 return currentCapacity + increment;
  /prebuilts/devtools/tools/lib/
fat32lib.jar 

Completed in 197 milliseconds