Searched defs:newArray (Results 1 - 12 of 12) sorted by relevance

/external/srec/shared/src/
H A DIntArrayList.c73 ESR_ReturnCode IntArrayListToStaticArray(IntArrayList* self, int** newArray) argument
77 return self->toStaticArray(self, newArray);
H A DInt8ArrayList.c96 ESR_ReturnCode Int8ArrayListToStaticArray(Int8ArrayList* self, asr_int8_t** newArray) argument
103 return self->toStaticArray(self, newArray);
H A DInt8ArrayListImpl.c176 ESR_ReturnCode Int8ArrayList_ToStaticArray(Int8ArrayList* self, asr_int8_t** newArray) argument
180 *newArray = impl->contents;
H A DIntArrayListImpl.c175 ESR_ReturnCode IntArrayList_ToStaticArray(IntArrayList* self, int** newArray) argument
179 *newArray = impl->contents;
/external/guava/src/com/google/common/collect/
H A DObjectArrays.java44 public static <T> T[] newArray(Class<T> type, int length) { method in class:ObjectArrays
45 return Platform.newArray(type, length);
55 public static <T> T[] newArray(T[] reference, int length) { method in class:ObjectArrays
56 return Platform.newArray(reference, length);
68 T[] result = newArray(type, first.length + second.length);
84 T[] result = newArray(array, array.length + 1);
107 T[] copy = newArray(original, newLength);
141 array = newArray(array, size);
H A DPlatform.java88 static <T> T[] newArray(Class<T> type, int length) { method in class:Platform
99 static <T> T[] newArray(T[] reference, int length) { method in class:Platform
/external/javassist/src/main/javassist/compiler/ast/
H A DNewExpr.java25 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/skia/gpu/include/
H A DGrTDArray.h199 T* newArray = (T*)GrMalloc(fAllocated * sizeof(T)); local
200 memcpy(newArray, fArray, index * sizeof(T));
201 memcpy(newArray + index + 1, fArray + index,
204 fArray = newArray;
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptengine.cpp355 \sa newArray(), QScriptValue::setProperty()
367 QScriptValue QScriptEngine::newArray(uint length) function in class:QScriptEngine
369 return QScriptValuePrivate::get(d_ptr->newArray(length));
H A Dqscriptengine_p.cpp130 QScriptValuePrivate* QScriptEnginePrivate::newArray(uint length) function in class:QScriptEnginePrivate
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
H A Dtst_qscriptengine.cpp52 void newArray();
557 void tst_QScriptEngine::newArray() function in class:tst_QScriptEngine
560 QScriptValue array = eng.newArray();
572 QScriptValue arrayWithSize = eng.newArray(42);
/external/icu4c/common/
H A Dunistr.cpp1307 UChar *newArray = getArrayStart(); local
1308 if(newArray != oldArray) {
1310 us_arrayCopy(oldArray, 0, newArray, 0, start);
1312 newArray, start + srcLength,
1317 newArray, start + srcLength,
1322 us_arrayCopy(srcChars, srcStart, newArray, start, srcLength);

Completed in 265 milliseconds