Searched refs:oldLength (Results 1 – 6 of 6) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/ |
D | encoder.js | 411 var oldLength = this.buffer_.length; 428 var length = this.buffer_.length - oldLength;
|
D | writer.js | 150 var oldLength = bookmark.pop(); 151 var messageLength = this.totalLength_ + this.encoder_.length() - oldLength;
|
/frameworks/base/core/java/android/net/ |
D | Uri.java | 1877 int oldLength = s.length(); in encode() local 1883 while (current < oldLength) { in encode() 1888 while (nextToEncode < oldLength in encode() 1894 if (nextToEncode == oldLength) { in encode() 1900 encoded.append(s, current, oldLength); in encode() 1921 while (nextAllowed < oldLength in encode()
|
/frameworks/base/core/java/android/text/ |
D | SpannableStringBuilder.java | 141 final int oldLength = mText.length; in resizeFor() local 142 if (size + 1 <= oldLength) { in resizeFor() 149 final int delta = newLength - oldLength; in resizeFor() 150 final int after = oldLength - (mGapStart + mGapLength); in resizeFor() 151 System.arraycopy(mText, oldLength - after, newText, newLength - after, after); in resizeFor()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | PointerLocationView.java | 914 final int oldLength = mLength; 921 System.arraycopy(oldChars, 0, newChars, 0, oldLength); 924 return oldLength;
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountManagerService.java | 5830 int oldLength = (accountsForType != null) ? accountsForType.length : 0; 5831 Account[] newAccountsForType = new Account[oldLength + 1]; 5833 System.arraycopy(accountsForType, 0, newAccountsForType, 0, oldLength); 5837 newAccountsForType[oldLength] = new Account(account, token); 5839 return newAccountsForType[oldLength];
|