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

1 2 3 4 5 67 8 91011>>

  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
TextureAtlasPanel.java 18 import com.badlogic.gdx.utils.Array;
64 Array<AtlasRegion> atlasRegions = atlas.getRegions();
66 Array<TextureRegion> regions = new Array<TextureRegion>();
75 protected Array<TextureRegion> getRegions (Texture texture, Array<AtlasRegion> atlasRegions, Array<TextureRegion> out) {
84 public Array<TextureRegion> getSelectedRegions () {
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
ParallelAction.java 21 import com.badlogic.gdx.utils.Array;
27 Array<Action> actions = new Array(4);
69 Array<Action> actions = this.actions;
83 Array<Action> actions = this.actions;
99 Array<Action> actions = this.actions;
105 public Array<Action> getActions () {
113 Array<Action> actions = this.actions;
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsMoreEmptyValues.java 9 import java.lang.reflect.Array;
32 * Returns empty array for array-returning methods
71 return Array.newInstance(componenetType, 0);
  /external/skia/experimental/docs/
utilities.js 19 return a.constructor === Array;
  /external/v8/test/mjsunit/
array-shift.js 28 // Check that shifting array of holes keeps it as array of holes
30 var array = new Array(10);
31 array.shift();
32 assertFalse(0 in array);
35 // Now check the case with array of holes and some elements on prototype.
38 var array = new Array(len);
39 Array.prototype[3] = "@3"
    [all...]
array-store-and-grow.js 31 // to an array that grow it by a single element. Test functions are
39 // Check handling of the empty array.
121 a = new Array(1,2,3);
123 a = new Array(1,2,3);
132 a = new Array(1,2,3);
134 a = new Array(1,2,3);
143 a = new Array(1,2,3);
145 a = new Array(1,2,3);
155 var a = new Array(0.5, 1.5);
157 a = new Array(0.5, 1.5)
    [all...]
holy-double-no-arg-array.js 7 return new Array();
array-join.js 28 // Test that array join calls toString on subarrays.
46 // Replace array.prototype.toString.
47 var oldToString = Array.prototype.toString;
48 Array.prototype.toString = function() { return "array"; };
50 assertEquals('array*3*4*array*array', a.join('*'));
51 assertEquals('array**3**4**array**array', a.join('**'))
    [all...]
  /external/v8/test/mjsunit/bugs/
bug-4577.js 6 return Array.isArray(arguments);
  /external/v8/test/mjsunit/es6/
typed-array-iterator.js 24 assertFalse(Array.prototype.entries === TypedArrayPrototype.entries);
25 assertFalse(Array.prototype[Symbol.iterator] === TypedArrayPrototype.values);
26 assertFalse(Array.prototype.keys === TypedArrayPrototype.keys);
27 assertFalse(Array.prototype[Symbol.iterator] === TypedArrayPrototype[Symbol.iterator]);
31 var array = [1, 2, 3];
33 for (var value of new constructor(array)) {
34 assertEquals(array[i++], value);
36 assertEquals(i, array.length);
  /external/v8/test/mjsunit/regress/
regress-500173.js 12 f(new Array());
regress-alloc-smi-check.js 13 f(new Array(100000));
regress-arguments-slice.js 8 Array.prototype.slice.call(o);
regress-crbug-642056.js 8 return o.x instanceof Array;
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 24 import java.lang.reflect.Array;
29 * Marshal any array {@code T}.
37 * @param <T> the type of the array (e.g. T = int[], or T = Rational[])
62 int length = Array.getLength(value);
70 Object array; local
86 "Attempting to unpack array (count = %d, element size = %d, bytes "
91 array = Array.newInstance(mComponentClass, arraySize);
94 Array.set(array, i, elem)
    [all...]
  /libnativehelper/include/nativehelper/
ScopedPrimitiveArray.h 31 Scoped ## NAME ## ArrayRO(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
47 void reset(PRIMITIVE_TYPE ## Array javaArray) { \
58 PRIMITIVE_TYPE ## Array getJavaArray() const { return mJavaArray; } \
64 PRIMITIVE_TYPE ## Array mJavaArray; \
91 Scoped ## NAME ## ArrayRW(JNIEnv* env, PRIMITIVE_TYPE ## Array javaArray) \
104 void reset(PRIMITIVE_TYPE ## Array javaArray) { \
109 PRIMITIVE_TYPE ## Array getJavaArray() const { return mJavaArray; } \
116 PRIMITIVE_TYPE ## Array mJavaArray; \
  /ndk/sources/cxx-stl/gabi++/tests/
test_vector3.cpp 62 typedef test1::A Array[10];
63 Array a[10]; // calls _cxa_vec_dtor
  /art/runtime/entrypoints/quick/
quick_fillarray_entrypoints.cc 19 #include "mirror/array.h"
25 * Handle fill array data by copying appropriate part of dex file into array.
27 extern "C" int artHandleFillArrayDataFromCode(uint32_t payload_offset, mirror::Array* array,
34 bool success = FillArrayData(array, payload);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleElementStream.as 53 protected var elements:Array;
76 if (element is Array) {
78 this.elements = element as Array;
111 elements = new Array();
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
common.js 29 glMatrix.ARRAY_TYPE = (typeof Float32Array !== 'undefined') ? Float32Array : Array;
33 * Sets the type of array used when creating new vectors and matrices
35 * @param {Type} type Array type, such as Float32Array or Array
  /external/clang/test/CodeGenCXX/
alignment.cpp 172 struct Array {
177 __attribute__((aligned(16))) Array aArray;
182 Array bArray;
198 typedef __attribute__((aligned(64))) Array AlignedArray;
202 // CHECK: [[RESULT:%.*]] = alloca [[ARRAY:%.*]], align 64
205 // CHECK: [[T0:%.*]] = bitcast [[ARRAY]]* [[RESULT]] to i8*
206 // CHECK: [[T1:%.*]] = bitcast [[ARRAY]]* [[ARRAY_P]] to i8*
213 // CHECK: [[RESULT:%.*]] = alloca [[ARRAY]], align 64
224 // CHECK: [[T0:%.*]] = bitcast [[ARRAY]]* [[RESULT]] to i8*
225 // CHECK: [[T1:%.*]] = bitcast [[ARRAY]]* [[ARRAY_P]] to i8
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/src/com/badlogic/gdx/controllers/gwt/
GwtController.java 24 import com.badlogic.gdx.utils.Array;
37 private final Array<ControllerListener> listeners = new Array<ControllerListener>();
106 public Array<ControllerListener> getListeners() {
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreetypeFontLoader.java 13 import com.badlogic.gdx.utils.Array;
46 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, FreeTypeFontLoaderParameter parameter) {
47 Array<AssetDescriptor> deps = new Array<AssetDescriptor>();
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
ParticleEffectLoader.java 25 import com.badlogic.gdx.utils.Array;
48 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, ParticleEffectParameter param) {
49 Array<AssetDescriptor> deps = null;
51 deps = new Array();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/data/
ModelNodePart.java 20 import com.badlogic.gdx.utils.Array;

Completed in 1449 milliseconds

1 2 3 4 5 67 8 91011>>