Searched defs:array (Results 51 - 75 of 627) sorted by relevance

1234567891011>>

/external/clang/test/SemaTemplate/
H A Dtemp_class_spec_neg.cpp27 int array[5]; variable
28 template< int X > class A2<X, &array> { }; // expected-error{{specializes}}
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGwtPlatform.java37 public static <T> T[] clone(T[] array) { argument
38 return (T[]) Array.clone(array);
/external/hamcrest/src/org/hamcrest/internal/
H A DArrayIterator.java7 private final Object array; field in class:ArrayIterator
10 public ArrayIterator(Object array) { argument
11 if (!array.getClass().isArray()) {
12 throw new IllegalArgumentException("not an array");
14 this.array = array;
18 return currentIndex < Array.getLength(array);
22 return Array.get(array, currentIndex++);
26 throw new UnsupportedOperationException("cannot remove items from an array");
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_HullCollisionShape.cpp50 (JNIEnv *env, jobject object, jobject array) {
52 float* data = (float*) env->GetDirectBufferAddress(array);
54 int length = env->GetDirectBufferCapacity(array)/4;
49 Java_com_jme3_bullet_collision_shapes_HullCollisionShape_createShape(JNIEnv *env, jobject object, jobject array) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DSorter.java22 public abstract void sort(Type[] array, int count, Comparator<Type> comparator); argument
H A DStandardSorter.java25 public void sort(Object[] array, int count, Comparator comparator) { argument
26 Arrays.sort(array, 0, count, comparator);
/external/skia/src/core/
H A DSkTSort.h16 void SkTHeapSort_SiftDown(T array[], int root, int bottom) { argument
19 if (child+1 <= bottom && array[child] < array[child+1]) {
22 if (array[root] < array[child]) {
23 SkTSwap<T>(array[root], array[child]);
31 template <typename T> void SkTHeapSort(T array[], int count) { argument
34 SkTHeapSort_SiftDown<T>(array, i, count-1);
37 SkTSwap<T>(array[
[all...]
/external/skia/src/gpu/
H A DGrTBSearch.h15 int GrTBSearch(const ELEM array[], int count, KEY target) { argument
26 if (LT(array[index], target)) {
34 if (EQ(array[high], target)) {
39 if (LT(array[high], target)) {
H A Dgr_unittests.cpp29 static void dump(const GrTDArray<int>& array) { argument
31 for (int i = 0; i < array.count(); i++) {
32 printf(" %d", array[i]);
39 GrTDArray<int> array; local
41 *array.append() = 0; dump(array);
42 *array.append() = 2; dump(array);
43 *array.append() = 4; dump(array);
61 const int array[] = { local
[all...]
/external/v8/src/ia32/
H A Dcodegen-ia32.h63 static Operand FixedArrayElementOperand(Register array, argument
67 return FieldOperand(array, index_as_smi, times_half_pointer_size, offset);
/external/v8/test/mjsunit/
H A Dundeletable-functions.js31 var array; variable
33 array = [
37 CheckEcmaSemantics(Array.prototype, array, "Array prototype");
46 array = [
57 CheckEcmaSemantics(Date.prototype, array, "Date prototype");
59 array = [
62 CheckEcmaSemantics(Math, array, "Math1");
66 array = [
68 CheckDontDelete(Math, array, "Math2");
70 array
[all...]
/external/webkit/Source/WebCore/html/canvas/
H A DFloat32Array.cpp37 PassRefPtr<Float32Array> Float32Array::create(const float* array, unsigned length) argument
39 return TypedArrayBase<float>::create<Float32Array>(array, length);
H A DFloat64Array.cpp37 PassRefPtr<Float64Array> Float64Array::create(const double* array, unsigned length) argument
39 return TypedArrayBase<double>::create<Float64Array>(array, length);
H A DInt16Array.cpp36 PassRefPtr<Int16Array> Int16Array::create(short* array, unsigned length) argument
38 return TypedArrayBase<short>::create<Int16Array>(array, length);
H A DInt32Array.cpp37 PassRefPtr<Int32Array> Int32Array::create(int* array, unsigned length) argument
39 return TypedArrayBase<int>::create<Int32Array>(array, length);
H A DInt8Array.cpp37 PassRefPtr<Int8Array> Int8Array::create(signed char* array, unsigned length) argument
39 return TypedArrayBase<signed char>::create<Int8Array>(array, length);
H A DUint16Array.cpp37 PassRefPtr<Uint16Array> Uint16Array::create(unsigned short* array, unsigned length) argument
39 return TypedArrayBase<unsigned short>::create<Uint16Array>(array, length);
H A DUint32Array.cpp37 PassRefPtr<Uint32Array> Uint32Array::create(unsigned int* array, unsigned length) argument
39 return TypedArrayBase<unsigned int>::create<Uint32Array>(array, length);
H A DUint8Array.cpp37 PassRefPtr<Uint8Array> Uint8Array::create(unsigned char* array, unsigned length) argument
39 return TypedArrayBase<unsigned char>::create<Uint8Array>(array, length);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKArray.cpp41 RefPtr<ImmutableArray> array = ImmutableArray::create(reinterpret_cast<APIObject**>(const_cast<void**>(values)), numberOfValues); local
42 return toAPI(array.release().releaseRef());
H A DWKMutableArray.cpp36 RefPtr<MutableArray> array = MutableArray::create(); local
37 return toAPI(array.release().releaseRef());
/external/webrtc/src/system_wrappers/interface/
H A Ddata_log.h92 // Inserts an array of values into a table with name table_name at the
102 const T* array,
110 new MultiValueContainer<T>(array, length));
100 InsertCell(const std::string& table_name, const std::string& column_name, const T* array, int length) argument
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Proxy_I1.java23 int[] array(long[] f); method in interface:Support_Proxy_I1
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERSequence.java37 * create a sequence containing an array of objects.
40 ASN1Encodable[] array)
42 super(array);
39 DERSequence( ASN1Encodable[] array) argument
H A DDLSequence.java37 * create a sequence containing an array of objects.
40 ASN1Encodable[] array)
42 super(array);
39 DLSequence( ASN1Encodable[] array) argument

Completed in 2901 milliseconds

1234567891011>>