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

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
BitmapFontLoader.java 32 import com.badlogic.gdx.utils.Array;
47 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, BitmapFontParameter parameter) {
48 Array<AssetDescriptor> deps = new Array();
94 Array<TextureRegion> regs = new Array(n);
SkinLoader.java 27 import com.badlogic.gdx.utils.Array;
44 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, SkinParameter parameter) {
45 Array<AssetDescriptor> deps = new Array();
TextureAtlasLoader.java 28 import com.badlogic.gdx.utils.Array;
52 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle atlasFile, TextureAtlasParameter parameter) {
61 Array<AssetDescriptor> dependencies = new Array();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
TextureArray.java 25 import com.badlogic.gdx.utils.Array;
36 final static Map<Application, Array<TextureArray>> managedTextureArrays = new HashMap<Application, Array<TextureArray>>();
121 Array<TextureArray> managedTextureArray = managedTextureArrays.get(app);
122 if (managedTextureArray == null) managedTextureArray = new Array<TextureArray>();
135 Array<TextureArray> managedTextureArray = managedTextureArrays.get(app);
  /external/v8/test/mjsunit/regress/
regress-460917.js 18 var fast_elem = new Array(1);
23 var double_elem = new Array(1);
28 double_elem = new Array(10);
regress-crbug-381534.js 12 var arr = new Array(+0, true, 0, -0, false, undefined, null, "0", obj, v1, -(4/3), -1.3333333333333, "str", v2, 1, false);
24 var arr = new Array({}, x-1.1, x-2, x-3.1);
regress-crbug-594574-concat-leak-1.js 7 array = new Array(10);
8 array[0] = 0.1;
9 // array[1] = THE_HOLE, reading through the prototype chain
10 array[2] = 2.1;
11 array[3] = 3.1;
13 var copy = array.slice(0, array.length);
15 // Change the array's prototype.
17 array.__proto__ = proto
    [all...]
regress-crbug-594574-concat-leak-2.js 7 array = new Array(10);
8 array[0] = 0.1;
9 // array[1] = THE_HOLE, reading through the prototype chain
10 array[2] = 2.1;
11 array[3] = 3.1;
13 var copy = array.slice(0, array.length);
15 // Use the defaul array prototype.
16 var proto = array.__proto__
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
LazyList.java 22 import java.lang.reflect.Array;
151 /** Add the contents of an array to a LazyList
153 * @param array The array whose contents should be added.
156 public static Object addArray(Object list, Object[] array)
158 for(int i=0;array!=null && i<array.length;i++)
159 list=LazyList.add(list,array[i]);
288 /** Convert a lazylist to an array
290 * @param clazz The class of the array, which may be a primitive typ
    [all...]
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwApplicationConfiguration.java 23 import com.badlogic.gdx.utils.Array;
79 Array<DisplayMode> modes = new Array();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/batches/
BufferedParticleBatch.java 6 import com.badlogic.gdx.utils.Array;
11 protected Array<T> renderData;
18 renderData = new com.badlogic.gdx.utils.Array<T>(false, 10, type);
73 * The offsets represent the position at which a particle should be placed into the vertex array.
  /external/mesa3d/src/mesa/vbo/
vbo_context.h 121 * drawing to array drawing we need to invalidate the array state.
137 ctx->Array._DrawArrays = vbo->exec.array.inputs;
140 ctx->Array._DrawArrays = vbo->exec.vtx.inputs;
143 ctx->Array._DrawArrays = vbo->save.inputs;
176 * The return type is an array of floats, because that's how we declare
  /art/runtime/entrypoints/quick/
quick_default_externs.h 24 class Array;
68 // Array entrypoints.
69 extern "C" void art_quick_aput_obj_with_null_and_bound_check(art::mirror::Array*, int32_t,
71 extern "C" void art_quick_aput_obj_with_bound_check(art::mirror::Array*, int32_t,
73 extern "C" void art_quick_aput_obj(art::mirror::Array*, int32_t, art::mirror::Object*);
  /art/test/004-UnsafeTest/
unsafe_test.cc 19 #include "mirror/array.h"
30 return mirror::Array::DataOffset(
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 46 protected var bits:Array;
48 /** Construction from a static array of longs */
49 public function BitSet(bits:Array = null) {
51 this.bits = new Array();
54 this.bits = new Array();
212 /** return how much space is being used by the bits array not
219 public function toArray():Array {
220 var elems:Array = new Array[this.bits.length];
230 public function toPackedArray():Array {
    [all...]
DFA.as 15 protected var eot:Array; // short[]
16 protected var eof:Array; // short[]
17 protected var min:Array; // char[]
18 protected var max:Array; // char[]
19 protected var accept:Array; //short[]
20 protected var special:Array; // short[]
21 protected var transition:Array; // short[][]
33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array
    [all...]
  /external/autotest/client/deps/webgl_mpd/src/
cros_fps.js 13 this.frameDataBuf = new Array();
29 this.frameDataBuf = new Array();
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
ICUTestCase.java 17 import java.lang.reflect.Array;
180 * be the same length, and each element in the left array must compare
181 * equal to the corresponding element of the right array.
182 * Also fails if one of the objects is not an array.
183 * @param lhs the left array
184 * @param rhs the right array
200 * argument is not an array.
201 * @param lhs the left array
202 * @param rhs the right array
218 int lhsl = Array.getLength(lhsa)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
ArrayMemberValue.java 20 import java.lang.reflect.Array;
24 * Array member.
34 * Constructs an array. The initial value or type are not specified.
43 * Constructs an array. The initial value is not specified.
45 * @param t the type of the array elements.
58 "no array elements found: " + method.getName());
65 throw new ClassNotFoundException("broken array type: "
71 Object a = Array.newInstance(clazz, size);
73 Array.set(a, i, values[i].getValue(cl, cp, method));
80 throw new ClassNotFoundException("no array type specified")
    [all...]
  /external/libgdx/extensions/gdx-bullet/src/com/badlogic/gdx/physics/bullet/
Bullet.java 29 import com.badlogic.gdx.utils.Array;
71 public Array<MeshPart> parts = new Array<MeshPart>();
81 private final static Array<ShapePart> shapePartArray = new Array<ShapePart>();
86 public static void getShapeParts (final Node node, final boolean applyTransform, final Array<ShapePart> out, final int offset,
121 public static <T extends Node> void getShapeParts (final Iterable<T> nodes, final Array<ShapePart> out, final int offset,
142 public static btCollisionShape obtainStaticNodeShape (final Array<Node> nodes) {
150 public static btCollisionShape obtainStaticShape (final Array<ShapePart> parts) {
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/
AndroidController.java 27 import com.badlogic.gdx.utils.Array;
39 private final Array<ControllerListener> listeners = new Array<ControllerListener>();
104 public Array<ControllerListener> getListeners() {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ViewportTest1.java 31 import com.badlogic.gdx.utils.Array;
43 Array<Viewport> viewports;
44 Array<String> names;
99 static public Array<String> getViewportNames () {
100 Array<String> names = new Array();
112 static public Array<Viewport> getViewports (Camera camera) {
118 Array<Viewport> viewports = new Array();
  /external/v8/test/mjsunit/
elide-double-hole-check-10.js 16 // Trick crankshaft into accepting feedback with the array prototype
19 // the array prototype.
20 var push = Array.prototype.push;
21 var array_prototype = Array.prototype;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 52 Array stackTrace = new StackTrace(true).GetFrames();
53 Array.Copy(stackTrace, 1, frames, 0, stackTrace.Length);
  /external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
HeadlessApplication.java 32 import com.badlogic.gdx.utils.Array;
49 protected final Array<Runnable> runnables = new Array<Runnable>();
50 protected final Array<Runnable> executedRunnables = new Array<Runnable>();
51 protected final Array<LifecycleListener> lifecycleListeners = new Array<LifecycleListener>();
106 Array<LifecycleListener> lifecycleListeners = this.lifecycleListeners;

Completed in 1303 milliseconds

1 2 3 4 5 6 7 8 91011>>