HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 51 - 75 of 1582) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
RenderableProvider.java 20 import com.badlogic.gdx.utils.Array;
27 * array. The Renderables obtained using {@link Pool#obtain()} will later be put back into the pool, do not store them
28 * internally. The resulting array can be rendered via a {@link ModelBatch}.
29 * @param renderables the output array
31 public void getRenderables (Array<Renderable> renderables, Pool<Renderable> pool);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
RenderableSorter.java 21 import com.badlogic.gdx.utils.Array;
26 /** Sorts the array of {@link Renderable} instances based on some criteria, e.g. material, distance to camera etc.
27 * @param renderables the array of renderables to be sorted */
28 public void sort (Camera camera, Array<Renderable> renderables);
  /external/v8/test/mjsunit/regress/
regress-3158.js 7 Array.prototype[0] = 'a';
8 delete Array.prototype[0];
14 var a = new Array(100000);
22 Array.prototype[0] = 'a';
regress-crbug-605060.js 7 Array.prototype.__defineGetter__('map', function(){});
8 Array.prototype.__defineGetter__('map', function(){});
9 Array.prototype.__defineGetter__('map', function(){});
10 assertTrue(%HasFastProperties(Array.prototype));
regress-crbug-617524.js 13 f(new Array(5),.5,0);
14 var o1 = f(new Array(5),0,.5);
16 var o2 = f(new Array(5),0,0);
17 var o3 = f(new Array(5),0);
get-array-keys-oob.js 5 Array.prototype[10000000] = 1;
6 Array(1000).join();
regress-sort-arguments.js 8 Array.prototype.sort.apply(a);
10 Array.prototype.sort.apply(a);
  /ndk/tests/device/test-stlport_shared-exception/jni/
array5.cpp 6 // array of class.
35 struct Array
37 A array[2][2][2]; member in struct:Array
45 Array A;
  /ndk/tests/device/test-stlport_static-exception/jni/
array5.cpp 6 // array of class.
35 struct Array
37 A array[2][2][2]; member in struct:Array
45 Array A;
  /external/v8/test/mjsunit/
array-constructor.js 32 var a = new Array();
33 var b = Array();
45 var a = new Array(j);
46 var b = Array(j);
58 a = new Array(0, 1);
60 a = new Array(0, 1, 2);
62 a = new Array(0, 1, 2, 3);
64 a = new Array(0, 1, 2, 3, 4);
66 a = new Array(0, 1, 2, 3, 4, 5);
68 a = new Array(0, 1, 2, 3, 4, 5, 6)
    [all...]
  /external/v8/test/mjsunit/es6/
array-species-constructor-delete.js 11 assertEquals(Array, x.map(()=>{}).constructor);
12 assertEquals(Array, x.filter(()=>{}).constructor);
13 assertEquals(Array, x.slice().constructor);
14 assertEquals(Array, x.splice().constructor);
15 assertEquals(Array, x.concat([1]).constructor);
18 class MyArray extends Array { }
21 delete Array.prototype.constructor;
array-species-delete.js 11 assertEquals(Array, x.map(()=>{}).constructor);
12 assertEquals(Array, x.filter(()=>{}).constructor);
13 assertEquals(Array, x.slice().constructor);
14 assertEquals(Array, x.splice().constructor);
15 assertEquals(Array, x.concat([1]).constructor);
18 class MyArray extends Array { }
21 delete Array[Symbol.species];
array-length.js 5 // Test array functions do not cause infinite loops when length is negative,
11 var result = Array.prototype.toString.call(o);
17 var result = Array.prototype.toLocaleString.call(o);
23 var result = Array.prototype.join.call(o);
29 Array.prototype.push.call(o, 1);
34 assertThrows(() => Array.prototype.push.call(o, 1), TypeError);
39 Array.prototype.pop.call(o);
43 Array.prototype.pop.call(o);
47 Array.prototype.pop.call(o);
53 var result = Array.prototype.reverse.call(o)
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp 42 template<class T> class Array { /* ... */ };
44 template<class T> void sort(Array<T>& v) { /* ... */ }
48 void f(Array<String>& v) {
52 // sort(Array<T>&), T is String
55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}}
56 template<> void sort<>(Array<char*>& v); // OK: sort<char*> not yet used
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfArray.h 42 // class Array
46 // When an array goes out of scope, its elements are automatically
60 // Array <C> a(3);
76 class Array
84 Array () {_data = 0;}
85 Array (long size) {_data = new T[size];}
86 ~Array () {delete [] _data;}
90 // Access to the array elements
98 // Resize and clear the array (the contents of the array
    [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 21 * \brief Vertex array and buffer tests
72 Array::Usage usages[] = {Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW};
75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE}
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
EventManager.java 3 import com.badlogic.gdx.utils.Array;
15 private ObjectMap<Integer, Array<Listener>> mListeners;
19 mListeners = new ObjectMap<Integer, Array<Listener>>();
31 Array<Listener> listeners = mListeners.get(aEventType);
34 listeners = new Array<EventManager.Listener>();
48 Array<Listener> listeners = mListeners.get(aEventType);
58 Array<Listener> listeners = mListeners.get(aEventType);
  /external/v8/test/webkit/
array-proto-func-length-getter-except.js 25 "This test checks that functions on the array prototype correctly handle exceptions from length getters when called on non-array objects."
47 shouldBeTrue("test(Array.prototype.join)");
48 shouldBeTrue("test(Array.prototype.pop)");
49 shouldBeTrue("test(Array.prototype.push)");
50 shouldBeTrue("test(Array.prototype.reverse)");
51 shouldBeTrue("test(Array.prototype.shift)");
52 shouldBeTrue("test(Array.prototype.slice)");
53 shouldBeTrue("test(Array.prototype.sort)");
54 shouldBeTrue("test(Array.prototype.splice)")
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp 39 template<typename T> struct Array {
41 Array() : a() {}
43 Array<int> s;
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
FlushablePool.java 23 protected Array<T> obtained = new Array<T>();
57 public void freeAll (Array<T> objects) {
  /external/v8/test/mjsunit/es7/
array-includes-to-object-sloppy.js 6 // https://github.com/tc39/Array.prototype.includes/blob/master/test/number-this.js
9 // Array.prototype.includes should use ToObject on this, so that when called
23 assertTrue(Array.prototype.includes.call(5, "a"));
24 assertTrue(Array.prototype.includes.call(5, "b"));
25 assertTrue(Array.prototype.includes.call(5, "c"));
26 assertFalse(Array.prototype.includes.call(5, "d"));
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
AfterAction.java 21 import com.badlogic.gdx.utils.Array;
26 private Array<Action> waitForActions = new Array(false, 4);
39 Array<Action> currentActions = target.getActions();
  /external/guava/guava-gwt/src/com/google/common/collect/
GwtPlatform.java 21 import java.lang.reflect.Array;
48 T[] result = (T[]) Array.newInstance(type, length);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
GwtPlatform.java 21 import com.google.gwt.lang.Array;
38 return Array.createFrom(reference, length);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
GroupStrategy.java 20 import com.badlogic.gdx.utils.Array;
27 * A group is identified by an integer. The {@link #beforeGroup(int, Array) beforeGroup()} method provides the strategy with a list
57 * @param contents Array of entries of arrays containing all the decals in the group */
58 public void beforeGroup (int group, Array<Decal> contents);

Completed in 1431 milliseconds

1 23 4 5 6 7 8 91011>>