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

<<21222324252627282930>>

  /external/v8/tools/
consarray.js 32 * sequentally. The internal Array implementation is horribly slow
47 * Concatenates another array for iterating. Empty arrays are ignored.
51 * @param {Array} arr Array to concatenate.
  /frameworks/support/v7/recyclerview/src/android/support/v7/util/
SortedList.java 19 import java.lang.reflect.Array;
94 mData = (T[]) Array.newInstance(klass, initialCapacity);
117 * reference to the old item and puts the new item into the backing array even if
143 * If allowed, may modify the input array and even take the ownership over it in order
146 * @param items Array of items to be added into the list.
158 T[] copy = (T[]) Array.newInstance(mTClass, items.length);
170 * @param items Array of items to be added into the list.
184 T[] copy = (T[]) Array.newInstance(mTClass, items.size());
219 * Move the remaining items to the beginning of the array.
221 * @return Number of deduplicated items at the beginning of the array
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/
G3dModelLoader.java 39 import com.badlogic.gdx.utils.Array;
97 Array<ModelMeshPart> parts = new Array<ModelMeshPart>();
144 Array<VertexAttribute> vertexAttributes = new Array<VertexAttribute>();
227 if (jsonMaterial.textures == null) jsonMaterial.textures = new Array<ModelTexture>();
276 private Array<ModelNode> parseNodes (ModelData model, JsonValue json) {
396 nodeAnim.translation = new Array<ModelNodeKeyframe<Vector3>>();
405 nodeAnim.rotation = new Array<ModelNodeKeyframe<Quaternion>>();
414 nodeAnim.scaling = new Array<ModelNodeKeyframe<Vector3>>();
    [all...]
  /external/pdfium/fpdfsdk/src/jsapi/
fxjs_v8.cpp 568 v8::Local<v8::Array> FXJS_GetObjectElementNames(v8::Isolate* pIsolate,
571 return v8::Local<v8::Array>();
572 v8::Local<v8::Array> val;
574 return v8::Local<v8::Array>();
653 v8::Local<v8::Array> FXJS_NewArray(v8::Isolate* pIsolate) {
654 return v8::Array::New(pIsolate);
658 v8::Local<v8::Array> pArray,
669 v8::Local<v8::Array> pArray,
679 unsigned FXJS_GetArrayLength(v8::Local<v8::Array> pArray) {
709 v8::Local<v8::Array> pObj)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 15 public var following:Array = new Array();
45 /** An Array[size num rules] of Arrays that tracks
52 public var ruleMemo:Array;
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 20 import java.sql.Array;
195 public Array createArrayOf(String typeName, Object[] elements)
  /external/chromium-trace/catapult/third_party/vinn/vinn/
d8_bootstrap.js 68 var args = Array.prototype.slice.call(arguments);
73 var args = Array.prototype.slice.call(arguments);
78 var args = Array.prototype.slice.call(arguments);
83 var args = Array.prototype.slice.call(arguments);
  /external/deqp/framework/delibs/depool/
dePoolHashArray.h 23 * \brief Memory pool hash-array class.
37 * \brief Declare a template pool hash-array (array with hash) class interface.
38 * \param TYPENAME Type name of the declared hash-array.
41 * \param KEYARRAYTYPE Type of the key array.
42 * \param VALUEARRAYTYPE Type of the value array.
61 DE_DECLARE_POOL_ARRAY(TYPENAME##Array, VALUETYPE); \
67 TYPENAME##Array* array; \
80 return TYPENAME##Array_getNumElements(hashArray->array); \
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
plugin.properties 16 descriptionCollection=Array
  /external/eigen/bench/btl/libs/blitz/
blitz_interface.hh 25 #include <blitz/array.h>
43 typedef blitz::Array<real, 2> gene_matrix;
44 typedef blitz::Array<real, 1> gene_vector;
  /external/guava/guava/src/com/google/common/collect/
ObjectArrays.java 24 import java.lang.reflect.Array;
42 * Returns a new array of the given length with the specified component type.
45 * @param length the length of the new array
47 @GwtIncompatible("Array.newInstance(Class, int)")
50 return (T[]) Array.newInstance(type, length);
54 * Returns a new array of the given length with the same type as a reference
55 * array.
57 * @param reference any array of the desired type
58 * @param length the length of the new array
65 * Returns a new array that contains the concatenated contents of two arrays
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingTestCase.java 24 import java.lang.reflect.Array;
117 return Array.newInstance(returnType.getComponentType(), 0);
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
CubemapLoader.java 35 import com.badlogic.gdx.utils.Array;
96 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, CubemapParameter parameter) {
TextureLoader.java 34 import com.badlogic.gdx.utils.Array;
94 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, TextureParameter parameter) {
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
ArrayMap.java 29 * makes iteration fast. Like {@link Array}, if ordered is false, this class avoids a memory copy when removing elements (the last
79 public ArrayMap (ArrayMap array) {
80 this(array.ordered, array.size, array.keys.getClass().getComponentType(), array.values.getClass().getComponentType());
81 size = array.size;
82 System.arraycopy(array.keys, 0, keys, 0, size);
83 System.arraycopy(array.values, 0, values, 0, size);
348 * many entries to avoid multiple backing array resizes. */
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SimpleStageCullingTest.java 35 import com.badlogic.gdx.utils.Array;
138 Array<Actor> actors = stage.getActors();
StagePerformanceTest.java 31 import com.badlogic.gdx.utils.Array;
84 Array<Actor> actors = root.getChildren();
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
HeightMapTest.java 21 import com.badlogic.gdx.utils.Array;
67 protected void render (ModelBatch batch, Array<ModelInstance> instances) {
LightsTest.java 32 import com.badlogic.gdx.utils.Array;
69 protected void render (ModelBatch batch, Array<ModelInstance> instances) {
  /external/libvncserver/webclients/novnc/include/
jsunzip.js 216 this.table = new Array(16); /* table of code length counts */
217 this.trans = new Array(288); /* code -> symbol translation table */
242 this.length_bits = new Array(30);
243 this.length_base = new Array(30);
246 this.dist_bits = new Array(30);
247 this.dist_base = new Array(30);
302 /* given an array of code lengths, build a tree */
305 var offs = new Array(16);
408 var lengths = new Array(288+32);
util.js 26 addFunc(Array, 'push8', function (num) {
31 addFunc(Array, 'push16', function (num) {
37 addFunc(Array, 'push32', function (num) {
49 addFunc(Array, 'map', function (fun /*, thisp*/) {
56 var res = new Array(len);
71 addFunc(Array, 'indexOf', function (elt /*, from*/) {
145 var aArgs = Array.prototype.slice.call(arguments, 1),
151 aArgs.concat(Array.prototype.slice.call(arguments)));
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 42 Ast.Call (id, Array.of_list (List.rev args))
160 Ast.Prototype (id, Array.of_list (List.rev args))
169 let args = Array.of_list (List.rev args) in
172 if Array.length args != kind
  /external/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 184 void LiveIntervalUnion::Array::init(LiveIntervalUnion::Allocator &Alloc,
197 void LiveIntervalUnion::Array::clear() {
  /external/v8/build/android/incremental_install/java/org/chromium/incrementalinstall/
Reflect.java 7 import java.lang.reflect.Array;
46 * Concatenates two arrays into a new array. The arrays must be of the same
50 Object[] result = (Object[]) Array.newInstance(
  /external/v8/test/mjsunit/
array-push4.js 17 array = [];
18 array.__proto__ = my_array_proto;
20 array[0] = 10;
21 assertEquals(0, array.length);
23 assertEquals("get 10", array[0]);
25 Array.prototype.push.call(array, 100);
26 assertEquals(1, array.length);
28 assertEquals("get 110", array[0]);
30 array = []
    [all...]

Completed in 1276 milliseconds

<<21222324252627282930>>