HomeSort by relevance Sort by last modified time
    Searched defs:newCount (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/rendering/
CounterNode.cpp 121 int newCount = node->computeCountInParent();
122 if (oldCount == newCount)
124 node->m_countInParent = newCount;
  /libcore/luni/src/main/java/java/lang/
CaseMapper.java 54 int newCount = 0;
68 newCount = i - offset;
69 System.arraycopy(value, offset, newValue, 0, newCount);
72 newValue[newCount++] = newCh;
75 return newValue != null ? new String(0, newCount, newValue) : s;
AbstractStringBuilder.java 94 int newCount = ((value.length >> 1) + value.length) + 2;
95 char[] newData = new char[min > newCount ? min : newCount];
102 int newCount = count + 4;
103 if (newCount > value.length) {
104 enlargeBuffer(newCount);
113 int newCount = count + chars.length;
114 if (newCount > value.length) {
115 enlargeBuffer(newCount);
118 count = newCount;
    [all...]
  /external/skia/src/animator/
SkAnimateActive.cpp 68 int newCount = animates.count();
70 int total = oldCount + newCount;
74 memset(&fInterpolators.begin()[oldCount], 0, newCount * sizeof(SkOperandInterpolator*));
79 newCount);
83 for (index = 0; index < newCount; index++) {
118 // total = oldCount + newCount;
126 int newCount = fAnimators.count();
130 int newTotal = records * newCount;
134 newTotal -= newCount;
139 sizeof(fSaveRestore[0]) * (newCount - oldCount))
    [all...]
SkDisplayApply.cpp 109 int newCount = fActive->fAnimators.count();
110 for (int index = oldCount; index < newCount; index++)
  /libcore/luni/src/main/java/java/util/
Vector.java 832 int newCount = elementCount - (end - start);
833 Arrays.fill(elementData, newCount, elementCount, null);
834 elementCount = newCount;
    [all...]
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 750 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos
752 seek(currentPos + newCount);
753 return newCount;
    [all...]
  /external/webkit/WebKit/win/
WebHistory.cpp 509 int newCount = CFArrayGetCount(entries);
512 *count = newCount;
516 if (*count < newCount) {
517 *count = newCount;
521 *count = newCount;
522 for (int i = 0; i < newCount; i++) {
    [all...]
  /frameworks/base/core/jni/
android_server_BluetoothEventLoop.cpp 532 int newCount = --nat->pollMemberCount;
534 nat->pollData[y].fd = nat->pollData[newCount].fd;
535 nat->pollData[y].events = nat->pollData[newCount].events;
536 nat->pollData[y].revents = nat->pollData[newCount].revents;
537 nat->watchData[y] = nat->watchData[newCount];
    [all...]
android_util_Process.cpp 612 jsize newCount = (curCount == 0) ? 10 : (curCount*2);
613 jintArray newArray = env->NewIntArray(newCount);
625 curCount = newCount;
  /external/chromium/net/third_party/nss/ssl/
ssl3con.c     [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 245 milliseconds