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

<<11121314151617181920>>

  /external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/src/com/badlogic/gdx/controllers/gwt/
GwtControllers.java 26 import com.badlogic.gdx.utils.Array;
34 private final Array<Controller> controllers = new Array<Controller>();
35 private final Array<ControllerListener> listeners = new Array<ControllerListener>();
36 private final Array<GwtControllerEvent> eventQueue = new Array<GwtControllerEvent>();
111 public Array<Controller> getControllers() {
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeTypeFontGeneratorLoader.java 25 import com.badlogic.gdx.utils.Array;
54 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, FreeTypeFontGeneratorParameters parameter) {
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
MusicLoader.java 25 import com.badlogic.gdx.utils.Array;
59 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, MusicParameter parameter) {
PixmapLoader.java 24 import com.badlogic.gdx.utils.Array;
49 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, PixmapParameter parameter) {
SoundLoader.java 25 import com.badlogic.gdx.utils.Array;
59 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, SoundParameter parameter) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Texture.java 31 import com.badlogic.gdx.utils.Array;
49 final static Map<Application, Array<Texture>> managedTextures = new HashMap<Application, Array<Texture>>();
203 Array<Texture> managedTextureArray = managedTextures.get(app);
204 if (managedTextureArray == null) managedTextureArray = new Array<Texture>();
216 Array<Texture> managedTextureArray = managedTextures.get(app);
232 Array<Texture> textures = new Array<Texture>(managedTextureArray);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
SimpleOrthoGroupStrategy.java 22 import com.badlogic.gdx.utils.Array;
80 public void beforeGroup (int group, Array<Decal> contents) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
DefaultRenderableSorter.java 26 import com.badlogic.gdx.utils.Array;
34 public void sort (final Camera camera, final Array<Renderable> renderables) {
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
PerformanceCounters.java 26 public final Array<PerformanceCounter> counters = new Array<PerformanceCounter>();
Pools.java 59 /** Frees the specified objects from the {@link #get(Class) pool}. Null objects within the array are silently ignored. Objects
61 static public void freeAll (Array objects) {
65 /** Frees the specified objects from the {@link #get(Class) pool}. Null objects within the array are silently ignored.
67 static public void freeAll (Array objects, boolean samePool) {
Sort.java 30 public <T> void sort (Array<T> a) {
45 public <T> void sort (Array<T> a, Comparator<? super T> c) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
ModelCacheTest.java 7 import com.badlogic.gdx.utils.Array;
27 protected void render (ModelBatch batch, Array<ModelInstance> instances) {
  /external/v8/test/mjsunit/
array-push2.js 5 var array = []; variable
8 Object.defineProperty(Array.prototype, "0", {
13 array[0] = 10;
14 assertEquals(0, array.length);
16 assertEquals("get 10", array[0]);
18 array.push(100);
19 assertEquals(1, array.length);
21 assertEquals("get 110", array[0]);
array-shift3.js 7 Array.prototype[1] = "element 1";
elide-double-hole-check-11.js 15 Array.prototype.unshift(1.5);
handle-count-ast.js 7 var ones = eval("[" + Array(12 * 1024).join("1,") + 1 + "]")
  /external/v8/test/mjsunit/compiler/
osr-forin.js 19 var a = new Array(10000);
regress-621147.js 8 return Array(n);
  /external/v8/test/mjsunit/es6/
array-copywithin.js 6 assertEquals(Array.prototype.copyWithin.length, 2);
40 // works with array-like values
42 Array.prototype.copyWithin.call(args, -2, 0);
43 assertArrayEquals([1, 1, 2], Array.prototype.slice.call(args));
53 return Array.prototype.copyWithin.call(null, 0, 3);
60 return Array.prototype.copyWithin.call(undefined, 0, 3);
70 // return Array.prototype.copyWithin.call("hello world", 0, 3);
77 assertEquals(34, Array.prototype.copyWithin.call(34, 0, 3).valueOf());
84 assertEquals(sym, Array.prototype.copyWithin.call(sym, 0, 3).valueOf());
96 Array.prototype.copyWithin.call(int32View, 0, 1))
    [all...]
instanceof-proxies.js 12 return x instanceof Array;
21 getPrototypeOf: function(target) { return Array.prototype; }
38 x instanceof Array;
48 handler.getPrototypeOf = function(target) { return Array.prototype; }
  /external/v8/test/mjsunit/regress/
regress-1447.js 28 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); });
29 [0].every(function(){ Object.seal(Array.prototype.every); });
33 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); });
34 [0].every(function(){ Object.seal(Array.prototype.every); });
regress-350884.js 5 var obj = new Array(1);
regress-351261.js 13 var __v_7 = new Array(4999990);
regress-357105.js 12 var x = new Array(3);
regress-369450.js 13 Array.prototype[0] = 5.5;

Completed in 776 milliseconds

<<11121314151617181920>>