/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | Platform.java | 40 static <T> T[] newArray(Class<T> type, int length) { method in class:Platform 42 "Platform.newArray is not supported in GWT yet."); 45 static <T> T[] newArray(T[] reference, int length) { method in class:Platform 46 return GwtPlatform.newArray(reference, length);
|
H A D | ObjectArrays.java | 42 public static <T> T[] newArray(T[] reference, int length) { method in class:ObjectArrays 43 return Platform.newArray(reference, length); 56 T[] result = newArray(array, array.length + 1); 79 T[] copy = newArray(original, newLength); 112 array = newArray(array, size);
|
H A D | GwtPlatform.java | 41 public static <T> T[] newArray(T[] reference, int length) { method in class:GwtPlatform
|
H A D | ImmutableCollection.java | 46 Object[] newArray = new Object[size()]; 47 return toArray(newArray); 53 other = ObjectArrays.newArray(other, size);
|
/external/javassist/src/main/javassist/compiler/ast/ |
H A D | NewExpr.java | 25 protected boolean newArray; field in class:NewExpr 30 newArray = false; 36 newArray = true; 45 e.newArray = true; 52 public boolean isArray() { return newArray; } 75 return newArray ? "new[]" : "new";
|
/external/guava/guava/src/com/google/common/collect/ |
H A D | ObjectArrays.java | 43 public static <T> T[] newArray(Class<T> type, int length) { method in class:ObjectArrays 44 return Platform.newArray(type, length); 54 public static <T> T[] newArray(T[] reference, int length) { method in class:ObjectArrays 55 return Platform.newArray(reference, length); 67 T[] result = newArray(type, first.length + second.length); 83 T[] result = newArray(array, array.length + 1); 106 T[] copy = newArray(original, newLength); 139 array = newArray(array, size);
|
H A D | Platform.java | 64 static <T> T[] newArray(Class<T> type, int length) { method in class:Platform 75 static <T> T[] newArray(T[] reference, int length) { method in class:Platform
|
H A D | RegularImmutableList.java | 72 Object[] newArray = new Object[size()]; 73 System.arraycopy(array, offset, newArray, 0, size); 74 return newArray; 79 other = ObjectArrays.newArray(other, size);
|
H A D | ForwardingCollection.java | 251 Object[] newArray = new Object[size()]; 252 return toArray(newArray);
|
H A D | SingletonImmutableSet.java | 83 array = ObjectArrays.newArray(array, 1);
|
/external/chromium-trace/src/shared/js/cr/ui/ |
H A D | array_data_model.js | 143 var newArray = []; 148 newIndexes.push(newArray.length); 150 newArray.push(this.array_[this.indexes_[i]]); 159 newIndexes.push(newArray.length); 160 newArray.push(arguments[j + 2]); 164 newIndexes.push(newArray.length); 166 newArray.push(this.array_[this.indexes_[i]]); 171 this.array_ = newArray;
|
/external/srec/shared/include/ |
H A D | IntArrayList.h | 106 * @param newArray Pointer to resulting array 108 ESR_ReturnCode(*toStaticArray)(struct IntArrayList_t* self, int** newArray); 198 * @param newArray Pointer to resulting array 200 ESR_SHARED_API ESR_ReturnCode IntArrayListToStaticArray(IntArrayList* self, int** newArray);
|
H A D | IntArrayListImpl.h | 91 ESR_SHARED_API ESR_ReturnCode IntArrayList_ToStaticArray(IntArrayList* self, int** newArray);
|
H A D | Int8ArrayList.h | 114 * @param newArray Pointer to resulting array 116 ESR_ReturnCode(*toStaticArray)(struct Int8ArrayList_t* self, asr_int8_t** newArray); 206 * @param newArray Pointer to resulting array 208 ESR_SHARED_API ESR_ReturnCode Int8ArrayListToStaticArray(Int8ArrayList* self, asr_int8_t** newArray);
|
H A D | Int8ArrayListImpl.h | 91 ESR_SHARED_API ESR_ReturnCode Int8ArrayList_ToStaticArray(Int8ArrayList* self, asr_int8_t** newArray);
|
/external/srec/shared/src/ |
H A D | IntArrayList.c | 73 ESR_ReturnCode IntArrayListToStaticArray(IntArrayList* self, int** newArray) argument 77 return self->toStaticArray(self, newArray);
|
H A D | Int8ArrayList.c | 96 ESR_ReturnCode Int8ArrayListToStaticArray(Int8ArrayList* self, asr_int8_t** newArray) argument 103 return self->toStaticArray(self, newArray);
|
H A D | IntArrayListImpl.c | 175 ESR_ReturnCode IntArrayList_ToStaticArray(IntArrayList* self, int** newArray) argument 179 *newArray = impl->contents;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | ObjectArraysTest.java | 45 @GwtIncompatible("ObjectArrays.newArray(Class, int)") 47 String[] empty = ObjectArrays.newArray(String.class, 0); 52 @GwtIncompatible("ObjectArrays.newArray(Class, int)") 54 String[] array = ObjectArrays.newArray(String.class, 2); 60 @GwtIncompatible("ObjectArrays.newArray(Class, int)") 62 String[][] array = ObjectArrays.newArray(String[].class, 1); 70 String[] empty = ObjectArrays.newArray(in, 0); 75 String[] array = ObjectArrays.newArray(new String[0], 2); 82 String[][] array = ObjectArrays.newArray(new String[0][0], 1);
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
H A D | qscriptengine.cpp | 355 \sa newArray(), QScriptValue::setProperty() 367 QScriptValue QScriptEngine::newArray(uint length) function in class:QScriptEngine 369 return QScriptValuePrivate::get(d_ptr->newArray(length));
|
H A D | qscriptengine.h | 72 QScriptValue newArray(uint length = 0);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | AMutableArray.h | 21 + (id) newArray; variable
|
H A D | ANTLRIntArray.h | 44 + (ANTLRIntArray *)newArray; variable
|
/external/skia/src/gpu/ |
H A D | GrTDArray.h | 193 T* newArray = (T*)GrMalloc(fAllocated * sizeof(T)); local 194 memcpy(newArray, fArray, index * sizeof(T)); 195 memcpy(newArray + index + 1, fArray + index, 198 fArray = newArray;
|
/external/srec/portable/include/ |
H A D | ArrayList.h | 138 * @param newArray Pointer to resulting array 141 ESR_ReturnCode(*toStaticArray)(struct ArrayList_t* self, void** newArray);
|