Searched defs:ensureCapacity (Results 1 - 25 of 62) sorted by path

123

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DIntArray.java35 * get dynamic sizing. Make sure to call ensureCapacity() when you are
50 ensureCapacity(p+1);
73 public void ensureCapacity(int index) { method in class:IntArray
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DIntArray.h35 * get dynamic sizing. Make sure to call ensureCapacity() when you are
50 ensureCapacity(p+1);
73 public void ensureCapacity(int index) { function in class:IntArray
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntArrayList.java70 ensureCapacity(newSize);
76 ensureCapacity((elements.length * 3)/2 + 1);
89 public void ensureCapacity(int newCapacity) { method in class:IntArrayList
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java189 public void ensureCapacity(int required) { method in class:CharArrayBuffer
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/icu/source/common/
H A Dbytestriebuilder.cpp373 BytesTrieBuilder::ensureCapacity(int32_t length) { function in class:BytesTrieBuilder
402 if(ensureCapacity(newLength)) {
412 if(ensureCapacity(newLength)) {
H A Dcharstr.cpp23 if(U_SUCCESS(errorCode) && this!=&s && ensureCapacity(s.len+1, 0, errorCode)) {
41 if(ensureCapacity(len+2, 0, errorCode)) {
74 } else if(ensureCapacity(len+sLength+1, 0, errorCode)) {
95 if(ensureCapacity(len+minCapacity+1, len+desiredCapacityHint+1, errorCode)) {
104 if(ensureCapacity(len+s.length()+1, 0, errorCode)) {
110 UBool CharString::ensureCapacity(int32_t capacity, function in class:CharString
H A Ducharstriebuilder.cpp321 UCharsTrieBuilder::ensureCapacity(int32_t length) { function in class:UCharsTrieBuilder
350 if(ensureCapacity(newLength)) {
360 if(ensureCapacity(newLength)) {
H A Duvector.cpp97 if (ensureCapacity(other.count, ec)) {
126 if (ensureCapacity(count + 1, status)) {
132 if (ensureCapacity(count + 1, status)) {
163 if (0 <= index && index <= count && ensureCapacity(count + 1, status)) {
175 if (0 <= index && index <= count && ensureCapacity(count + 1, status)) {
329 UBool UVector::ensureCapacity(int32_t minimumCapacity, UErrorCode &status) { function in class:UVector
372 if (!ensureCapacity(newSize, status)) {
475 if (ensureCapacity(count + 1, ec)) {
H A Duvectr32.h129 inline UBool ensureCapacity(int32_t minimumCapacity, UErrorCode &status);
131 // Out-of-line, handles actual growth. Called by ensureCapacity() when necessary.
213 inline UBool UVector32::ensureCapacity(int32_t minimumCapacity, UErrorCode &status) { function in class:UVector32
227 if (ensureCapacity(count + 1, status)) {
234 if (ensureCapacity(count+size, status) == FALSE) {
H A Duvectr64.h128 inline UBool ensureCapacity(int32_t minimumCapacity, UErrorCode &status);
130 // Out-of-line, handles actual growth. Called by ensureCapacity() when necessary.
202 inline UBool UVector64::ensureCapacity(int32_t minimumCapacity, UErrorCode &status) { function in class:UVector64
216 if (ensureCapacity(count + 1, status)) {
223 if (ensureCapacity(count+size, status) == FALSE) {
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol.cpp4400 UBool ensureCapacity(int32_t appendCapacity);
4407 if(len < buffer.getCapacity() || ensureCapacity(1)) {
4412 UBool SortKeyLevel::ensureCapacity(int32_t appendCapacity) { function in class:SortKeyLevel
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtextfile.cpp53 if (!ensureCapacity((int32_t)(uprv_strlen(testDir) + uprv_strlen(name) + 1))) {
80 // Note: 'buffer' may change after ensureCapacity() is called,
134 if (!ensureCapacity(index+1)) {
149 UBool TextFile::ensureCapacity(int32_t mincapacity) { function in class:TextFile
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dbitset.cpp41 ensureCapacity(longIndex+1);
50 void BitSet::ensureCapacity(uint32_t minLen) { function in class:BitSet
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpcore-4.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/message/ ...
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DInterferenceGraph.java65 ensureCapacity(Math.max(regV, regW) + 1);
104 private void ensureCapacity(int size) { method in class:InterferenceGraph
107 interference.ensureCapacity(size);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DBitIntSet.java40 ensureCapacity(value);
49 private void ensureCapacity(int value) { method in class:BitIntSet
74 ensureCapacity(Bits.getMax(o.bits) + 1);
81 ensureCapacity(o.ints.get(sz - 1));
H A DByteArrayAnnotatedOutput.java162 ensureCapacity(end);
178 ensureCapacity(end);
195 ensureCapacity(end);
214 ensureCapacity(end);
238 ensureCapacity(cursor + 5); // pessimistic
248 ensureCapacity(cursor + 5); // pessimistic
262 ensureCapacity(end);
286 ensureCapacity(end);
310 ensureCapacity(end);
335 ensureCapacity(en
536 private void ensureCapacity(int desiredSize) { method in class:ByteArrayAnnotatedOutput
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 9437 milliseconds

123