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

  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
PropertyResourceBundleTest.java 61 int keyCount = 0;
64 keyCount++;
67 assertEquals("Returned the wrong number of keys", 2, keyCount);
  /external/webkit/WebKit/win/
WebHistoryItem.cpp 215 int keyCount = 0;
220 keys[keyCount] = urlKey;
221 values[keyCount++] = m_historyItem->urlString().createCFString();
224 keys[keyCount] = lastVisitedDateKey;
225 values[keyCount++] = lastVisitedStringRef;
228 keys[keyCount] = titleKey;
229 values[keyCount++] = m_historyItem->title().createCFString();
232 keys[keyCount] = visitCountKey;
234 values[keyCount++] = CFNumberCreate(0, kCFNumberIntType, &visitCount);
237 keys[keyCount] = lastVisitWasFailureKey
    [all...]
  /external/webkit/JavaScriptCore/runtime/
PropertyMapHashTable.h 62 unsigned keyCount;
Structure.cpp 170 unsigned entryCount = m_propertyTable->keyCount + m_propertyTable->deletedSentinelCount;
233 static unsigned sizeForKeyCount(size_t keyCount)
235 if (keyCount == notFound)
238 if (keyCount < 8)
241 if (isPowerOf2(keyCount))
242 return keyCount * 4;
244 return nextPowerOf2(keyCount) * 2;
523 Vector<PropertyMapEntry*> sortedPropertyEntries(m_propertyTable->keyCount);
525 unsigned entryCount = m_propertyTable->keyCount + m_propertyTable->deletedSentinelCount;
635 unsigned entryCount = m_propertyTable->keyCount + m_propertyTable->deletedSentinelCount
    [all...]
Structure.h 105 unsigned propertyStorageSize() const { return m_anonymousSlotCount + (m_propertyTable ? m_propertyTable->keyCount + (m_propertyTable->deletedOffsets ? m_propertyTable->deletedOffsets->size() : 0) : static_cast<unsigned>(m_offset + 1)); }
133 bool isEmpty() const { return m_propertyTable ? !m_propertyTable->keyCount : m_offset == noOffset; }
  /frameworks/base/core/jni/
android_backup_FileBackupHelperBase.cpp 60 const int keyCount = env->GetArrayLength(keys);
61 char const** keysUTF = (char const**)malloc(sizeof(char*)*keyCount);
62 for (int i=0; i<keyCount; i++) {
73 for (int i=0; i<keyCount; i++) {
  /external/guava/src/com/google/common/collect/
LinkedListMultimap.java 125 private transient Multiset<K> keyCount; // the number of values for each key
161 keyCount = LinkedHashMultiset.create();
167 keyCount = LinkedHashMultiset.create(expectedKeys);
220 keyCount.add(key);
254 keyCount.remove(node.key);
342 int size = keyCount.count(key);
420 return keyCount.size();
546 keyCount.clear();
565 return keyCount.count(key);
586 return keyCount.elementSet().size()
    [all...]
ImmutableListMultimap.java 303 int keyCount = stream.readInt();
304 if (keyCount < 0) {
305 throw new InvalidObjectException("Invalid key count " + keyCount);
311 for (int i = 0; i < keyCount; i++) {
ImmutableSetMultimap.java 349 int keyCount = stream.readInt();
350 if (keyCount < 0) {
351 throw new InvalidObjectException("Invalid key count " + keyCount);
357 for (int i = 0; i < keyCount; i++) {
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 241 int keyCount;
243 keyCount = repeater == -1 ? 1 : Integer.parseInt(key.substring(0, repeater));
253 for (int j = 0; j < keyCount; j++) {
317 final int keyCount = keys[i];
319 for (int j = 0; j < keyCount; j++) {
  /external/webkit/WebKitTools/QtLauncher/
utils.cpp 58 for (int i = 0; i < enumerator.keyCount(); i++) {
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 660 final int keyCount = keys.length;
661 for (int i = 0; i < keyCount; i++) {
742 final int keyCount = nearestKeyIndices.length;
743 for (int i = 0; i < keyCount; i++) {
    [all...]
  /external/icu4c/test/intltest/
loctest.cpp     [all...]
  /external/icu4c/test/cintltst/
cloctst.c     [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 479 milliseconds