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

<<11121314151617181920>>

  /external/mesa3d/src/mesa/main/
arrayobj.c 57 * Look up the array object for the given ID.
60 * Either a pointer to the array object with the specified ID or \c NULL for
72 _mesa_HashLookup(ctx->Array.Objects, id);
77 * For all the vertex arrays in the array object, unbind any pointers
79 * This is done just prior to array object destruction.
92 * Allocate and initialize a new vertex array object.
108 * Delete an array object.
137 /* Unreference the old array object */
161 /* reference new array object */
164 /* this array's being deleted (look just above) *
    [all...]
  /external/protobuf/java/src/device/main/java/com/google/protobuf/nano/android/
ParcelableMessageNanoCreator.java 40 import java.lang.reflect.Array;
81 return (T[]) Array.newInstance(mClazz, i);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
GenericProperty.java 18 import java.lang.reflect.Array;
53 actualClasses[i] = Array.newInstance((Class<?>) componentType, 0)
  /external/v8/test/mjsunit/
array-push3.js 7 var array = []; variable
9 function push(array, value) {
10 array.push(value);
13 push(array, 0);
14 push(array, 1);
15 push(array, 2);
17 push(array, 3);
20 Object.defineProperty(Array.prototype, "4", {
25 push(array, 4);
27 assertEquals(5, array.length)
    [all...]
array-push9.js 7 var array = []; variable
9 function push(array, value) {
10 array.push(value);
13 push(array, 0);
14 push(array, 1);
15 push(array, 2);
17 push(array, 3);
20 Object.defineProperty(Array.prototype, "4", {
25 push(array, 4);
27 assertEquals(5, array.length)
    [all...]
  /external/v8/test/mjsunit/compiler/
osr-block-scope-id.js 10 var result = new Array();
osr-forof.js 18 var a = new Array(10000);
27 function wrap(array) {
31 return { done: i >= array.length, value: array[i++] };
  /external/v8/test/mjsunit/es6/
arrow-rest-params-lazy-parsing.js 24 assertEquals(Array, c.constructor);
25 assertTrue(Array.isArray(c));
37 assertEquals(Array, c.constructor);
38 assertTrue(Array.isArray(c));
arrow-rest-params.js 22 assertEquals(Array, c.constructor);
23 assertTrue(Array.isArray(c));
35 assertEquals(Array, c.constructor);
36 assertTrue(Array.isArray(c));
proxies-get-prototype-of.js 54 assertFalse(Object.prototype.isPrototypeOf.call(Array.prototype, object));
55 assertFalse(Array.prototype.isPrototypeOf(object));
67 assertThrows(()=> Object.prototype.isPrototypeOf.call(Array.prototype, object));
68 assertThrows(()=> Array.prototype.isPrototypeOf(object));
  /external/v8/test/mjsunit/regress/
regress-3718.js 20 assertEquals("Array", getTypeName([]));
regress-842.js 28 // 842 describes a scenario where Object.prototype or Array.prototype is
32 Array.prototype.myfunc = function() {};
33 Array.prototype[10] = 42;
34 Array.prototype.length = 3000;
regress-crbug-350890.js 13 var a = Array(l);
  /frameworks/base/core/java/android/text/
SpanSet.java 19 import java.lang.reflect.Array;
52 spans = (E[]) Array.newInstance(classType, length);
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaTypeUtil.java 21 import java.lang.reflect.Array;
79 if (Array.class.isAssignableFrom(klass)) {
80 return ARRAY + getDescription(klass.getComponentType());
  /frameworks/support/v7/recyclerview/src/android/support/v7/util/
TileList.java 21 import java.lang.reflect.Array;
94 mItems = (T[]) Array.newInstance(klass, size);
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
ocaml.i 30 | C_array a -> Swig.C_array (Array.map (swig_val t) a)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 202 relative_list = Array.new( reference_list.length, '..' )
230 class Array
232 # Pad an array with a given <tt>value</tt> upto a given <tt>length</tt>.
237 # to the beginning of the array.
246 Array.new( ( len+size ).abs,val ) + self
248 self + Array.new( len-size,val )
252 # Like #pad but changes the array in place.
263 replace Array.new( ( len+size ).abs,val ) + self
265 concat Array.new( len-size,val )
  /external/deqp/framework/common/
tcuFormatUtil.hpp 172 // Array formatters.
175 class Array
181 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {}
195 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
212 return str << Array<const T*>(fmt.arr, fmt.arr+fmt.size);
268 /** Format array contents. */
270 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end)
272 return Format::Array<Iterator>(begin, end);
275 /** Format array contents. */
282 /** Format array contents. *
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Window.java 30 import com.badlogic.gdx.utils.Array;
41 private final Array<Runnable> runnables = new Array<Runnable>();
42 private final Array<Runnable> executedRunnables = new Array<Runnable>();
237 void update(Array<LifecycleListener> lifecycleListeners) {
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
ModelLoader.java 31 import com.badlogic.gdx.utils.Array;
40 protected Array<ObjectMap.Entry<String, ModelData>> items = new Array<ObjectMap.Entry<String, ModelData>>();
73 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, P parameters) {
74 final Array<AssetDescriptor> deps = new Array();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/
Node.java 25 import com.badlogic.gdx.utils.Array;
52 public Array<NodePart> parts = new Array<NodePart>(2);
55 private final Array<Node> children = new Array<Node>(2);
295 /** Helper method to recursive fetch a node from an array
298 public static Node getNode (final Array<Node> nodes, final String id, boolean recursive, boolean ignoreCase) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
RegionInfluencer.java 7 import com.badlogic.gdx.utils.Array;
88 * to calculate the current index in the {@link RegionInfluencer#regions} array.*/
165 public Array<AspectTextureRegion> regions;
169 this.regions = new Array<AspectTextureRegion>(false, regionsCount, AspectTextureRegion.class);
183 this.regions = new Array<AspectTextureRegion>( false, regions.length, AspectTextureRegion.class);
217 json.writeValue("regions", regions, Array.class, AspectTextureRegion.class);
223 regions.addAll(json.readValue("regions", Array.class, AspectTextureRegion.class, jsonData));
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SelectTest.java 23 import com.badlogic.gdx.utils.Array;
175 // remember that k = min value = 0 position in the array, therefore k - 1
239 public static Array<Dummy> player;
240 public static Array<Dummy> enemy;
242 public static Array<Dummy> createDummies (int n) {
244 Array<Dummy> dummies = new Array<Dummy>();
  /external/v8/test/cctest/
test-access-checks.cc 51 void NamedEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info) {
54 v8::Local<v8::Array> names = v8::Array::New(isolate, 1);
85 void IndexedEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info) {
88 v8::Local<v8::Array> names = v8::Array::New(isolate, 1);

Completed in 1423 milliseconds

<<11121314151617181920>>