/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ |
Rect.java | 17 public Rect[] newArray(int size) {
|
/external/javassist/src/main/javassist/expr/ |
NewArray.java | 29 public class NewArray extends Expr { 32 protected NewArray(int pos, CodeIterator i, CtClass declaring, 80 if (opcode == Opcode.NEWARRAY) { 123 if (opcode == Opcode.NEWARRAY) 181 if (opcode == Opcode.NEWARRAY) { 265 else if (opcode == Opcode.NEWARRAY)
|
ExprEditor.java | 186 else if (c < Opcode.NEWARRAY) { // c < 188 229 if (c == Opcode.NEWARRAY || c == Opcode.ANEWARRAY 231 expr = new NewArray(pos, iterator, clazz, minfo, c); 232 edit((NewArray)expr); 271 public void edit(NewArray a) throws CannotCompileException {}
|
/dalvik/dx/tests/024-code-bytecode/ |
expected.txt | 256 016c: newarray boolean 257 016e: newarray char 258 0170: newarray float 259 0172: newarray double 260 0174: newarray byte 261 0176: newarray short 262 0178: newarray int 263 017a: newarray long
|
small-class.txt | 267 bc 04 # 016c: newarray boolean 268 bc 05 # 016e: newarray char 269 bc 06 # 0170: newarray float 270 bc 07 # 0172: newarray double 271 bc 08 # 0174: newarray byte 272 bc 09 # 0176: newarray short 273 bc 0a # 0178: newarray int 274 bc 0b # 017a: newarray long
|
/external/srec/shared/src/ |
IntArrayList.c | 73 ESR_ReturnCode IntArrayListToStaticArray(IntArrayList* self, int** newArray) 77 return self->toStaticArray(self, newArray);
|
Int8ArrayList.c | 96 ESR_ReturnCode Int8ArrayListToStaticArray(Int8ArrayList* self, asr_int8_t** newArray) 103 return self->toStaticArray(self, newArray);
|
/cts/tests/src/android/app/cts/ |
IBinderParcelable.java | 44 public IBinderParcelable[] newArray(int size) {
|
/dalvik/dx/tests/106-verify-object-ops/ |
expected.txt | 28 newarray: expected failure occurred
|
run | 41 oneop newarray
|
/dalvik/vm/native/ |
dalvik_system_VMRuntime.cpp | 114 ArrayObject* newArray = dvmAllocArrayByClass(arrayClass, 117 if (newArray == NULL) { 121 dvmReleaseTrackedAlloc((Object*) newArray, NULL); 123 RETURN_PTR(newArray);
|
/dalvik/vm/oo/ |
Array.cpp | 58 ArrayObject* newArray = (ArrayObject*)dvmMalloc(totalSize, allocFlags); 59 if (newArray != NULL) { 60 DVM_OBJECT_INIT(newArray, arrayClass); 61 newArray->length = length; 64 return newArray; 115 ArrayObject* newArray; 158 newArray = allocArray(arrayClass, length, width, allocFlags); 161 return newArray; 174 ArrayObject* newArray; 184 newArray = allocArray(arrayClass, *dimensions [all...] |
/external/guava/src/com/google/common/collect/ |
RegularImmutableList.java | 69 Object[] newArray = new Object[size()]; 70 Platform.unsafeArrayCopy(array, offset, newArray, 0, size); 71 return newArray; 76 other = ObjectArrays.newArray(other, size);
|
Platform.java | 88 static <T> T[] newArray(Class<T> type, int length) { 99 static <T> T[] newArray(T[] reference, int length) {
|
/external/skia/gpu/include/ |
GrTDArray.h | 199 T* newArray = (T*)GrMalloc(fAllocated * sizeof(T)); 200 memcpy(newArray, fArray, index * sizeof(T)); 201 memcpy(newArray + index + 1, fArray + index, 204 fArray = newArray;
|
/external/srec/shared/include/ |
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);
|
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);
|
/frameworks/base/core/java/android/content/pm/ |
PathPermission.java | 64 public PathPermission[] newArray(int size) {
|
/frameworks/base/core/java/android/nfc/ |
ApduList.java | 35 public ApduList[] newArray(int size) {
|
TechListParcel.java | 62 public TechListParcel[] newArray(int size) {
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
SmsRawData.java | 40 public SmsRawData[] newArray(int size) {
|
/frameworks/base/telephony/java/com/android/internal/telephony/cat/ |
ToneSettings.java | 58 public ToneSettings[] newArray(int size) {
|
/external/v8/src/ |
allocation.cc | 86 char* result = NewArray<char>(length + 1); 96 char* result = NewArray<char>(length + 1);
|
circular-queue.cc | 48 buffer_(NewArray<Cell>(buffer_size_ + 1)) { 66 positions_ = NewArray<byte>(positions_size);
|
/frameworks/base/core/java/android/os/ |
Parcelable.java | 46 * public MyParcelable[] newArray(int size) { 114 public T[] newArray(int size);
|