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

1 2 3 45 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
BaseShaderProvider.java 22 import com.badlogic.gdx.utils.Array;
25 protected Array<Shader> shaders = new Array<Shader>();
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMap.java 22 import com.badlogic.gdx.utils.Array;
30 private Array<? extends Disposable> ownedResources;
45 public void setOwnedResources (Array<? extends Disposable> resources) {
  /external/v8/test/mjsunit/es7/
array-includes-to-object-strict.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
26 assertTrue(Array.prototype.includes.call(5, "a"));
27 assertTrue(Array.prototype.includes.call(5, "b"));
28 assertTrue(Array.prototype.includes.call(5, "c"));
29 assertFalse(Array.prototype.includes.call(5, "d"));
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_primitive_restart.c 55 cut_index_will_work = (ctx->Array.RestartIndex & 0xff) == 0xff;
58 cut_index_will_work = (ctx->Array.RestartIndex & 0xffff) == 0xffff;
61 cut_index_will_work = ctx->Array.RestartIndex == 0xffffffff;
160 if (!(ctx->Array.PrimitiveRestart)) {
199 ctx->Array.PrimitiveRestart ? HSW_CUT_INDEX_ENABLE : 0;
203 OUT_BATCH(ctx->Array.RestartIndex);
  /external/v8/test/mjsunit/es6/
typedarray-tostring.js 5 // Array's toString should call the object's own join method, if one exists and
30 // On an Array object.
50 assertEquals(0, a3.toString().search(/\[object .+Array\]/));
55 // No join on Array.
56 assertEquals(0, a3.toString().search(/\[object .+Array\]/));
59 // On a non-Array object, throws.
68 o1.join = Array.prototype.join;
73 // Array, as the spec says (but Firefox doesn't do either).
75 // assertEquals(o1.toString, Array.prototype.toString);
83 assertEquals("1,2", Array.prototype.join.call(a5))
    [all...]
array-find.js 28 assertEquals(1, Array.prototype.find.length);
40 // Test predicate is not called when array is empty
93 // Test predicate is called array.length times
109 // Test Array.prototype.find works with String
117 var found = Array.prototype.find.call(a, function(val, key, obj) {
132 found = Array.prototype.find.apply(a, [function(val, key, obj) {
150 // Test Array.prototype.find works with exotic object
165 Array.prototype.push.apply(a, [30, 31, 32]);
166 var found = Array.prototype.find.call(a, function(val, key, obj) {
184 // Test array modification
    [all...]
array-findindex.js 28 assertEquals(1, Array.prototype.findIndex.length);
40 // Test predicate is not called when array is empty
93 // Test predicate is called array.length times
109 // Test Array.prototype.findIndex works with String
118 var index = Array.prototype.findIndex.call(a, function(val, key, obj) {
133 index = Array.prototype.findIndex.apply(a, [function(val, key, obj) {
151 // Test Array.prototype.findIndex works with exotic object
166 Array.prototype.push.apply(a, [30, 31, 32]);
168 var index = Array.prototype.findIndex.call(a, function(val, key, obj) {
186 // Test array modification
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-array.cpp 16 static_assert(sizeof(IntArray<10>) == sizeof(int) * 10, "Array size mismatch");
17 static_assert(sizeof(IntArray<1>) == sizeof(int) * 1, "Array size mismatch");
23 static_assert(sizeof(TenElementArray<int>) == sizeof(int) * 10, "Array size mismatch");
25 template<typename T, int N> class Array {
29 static_assert(sizeof(Array<int, 10>) == sizeof(int) * 10, "Array size mismatch");
  /external/libcxxabi/test/
test_vector3.pass.cpp 53 typedef test1::A Array[10];
54 Array a[10]; // calls _cxa_vec_dtor
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-lwjgl3/src/com/badlogic/gdx/controllers/lwjgl3/
Lwjgl3ControllerManager.java 9 import com.badlogic.gdx.utils.Array;
12 final Array<Controller> controllers = new Array<Controller>();
13 final Array<Controller> polledControllers = new Array<Controller>();
14 final Array<ControllerListener> listeners = new Array<ControllerListener>();
57 public Array<Controller> getControllers () {