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

<<11121314151617181920>>

  /external/mesa3d/src/mesa/main/
varray.c 111 * \param attrib the attribute array index to update
120 * \param ptr the address (or offset inside VBO) of the array data
131 struct gl_client_array *array; local
138 * "Client vertex arrays - all vertex array attribute pointers must
139 * refer to buffer objects (section 2.9.2). The default vertex array
141 * VertexAttribPointer when no buffer object or no vertex array object
147 && (ctx->Array.ArrayObj == ctx->Array.DefaultArrayObj)) {
148 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(no array object bound)",
244 * organization of vertex array data are called while zero is boun
594 const struct gl_client_array *array; local
1166 struct gl_client_array *array; local
    [all...]
  /art/test/003-omnibus-opcodes/src/
Main.java 46 Array.run();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 62 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 61 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
  /external/eigen/Eigen/src/Core/
NumTraits.h 125 struct NumTraits<Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> >
127 typedef Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> ArrayType;
129 typedef Array<RealScalar, Rows, Cols, Options, MaxRows, MaxCols> Real;
131 typedef Array<NonIntegerScalar, Rows, Cols, Options, MaxRows, MaxCols> NonInteger;
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 20 import java.lang.reflect.Array;
163 private static Object resizeArray(Object array, int length)
165 if (Array.getLength(array) < length) {
166 Object newArray = Array.newInstance(array.getClass().getComponentType(), length);
167 System.arraycopy(array, 0, newArray, 0, Array.getLength(array));
170 return array;
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePackerTest.java 32 import com.badlogic.gdx.utils.Array;
37 Array<Page> pages;
56 Array<Rect> inputRects = new Array();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
PolygonRegionLoader.java 33 import com.badlogic.gdx.utils.Array;
75 * {@link AssetDescriptor} for the file referenced on that line will be added to the returned Array. Otherwise a sibling of the
77 * params.textureExtensions} will be used. If no suitable file is found, the returned Array will be empty. */
79 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, PolygonRegionParameters params) {
100 Array<AssetDescriptor> deps = new Array<AssetDescriptor>(1);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Model.java 51 import com.badlogic.gdx.utils.Array;
73 public final Array<Material> materials = new Array();
75 public final Array<Node> nodes = new Array();
77 public final Array<Animation> animations = new Array();
79 public final Array<Mesh> meshes = new Array();
82 public final Array<MeshPart> meshParts = new Array();
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
ParticleSorter.java 7 import com.badlogic.gdx.utils.Array;
30 public <T extends ParticleControllerRenderData> int[] sort(Array<T> renderData){
52 public <T extends ParticleControllerRenderData> int[] sort(Array<T> renderData){
98 //partition array
131 /**@return an array of offsets where each particle should be put in the resulting mesh
132 * (also if more than one mesh will be generated, this is an absolute offset considering a BIG output array). */
133 public abstract <T extends ParticleControllerRenderData> int[] sort(Array<T> renderData);
139 * In this way the sorter can increase the data structures used to sort the particles (i.e increase backing array size) */
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
ModelInfluencer.java 11 import com.badlogic.gdx.utils.Array;
100 public Array<Model> models;
104 this.models = new Array<Model>(true, 1, Model.class);
108 this.models = new Array<Model>(models);
  /external/llvm/include/llvm/CodeGen/
LiveRegMatrix.h 48 LiveIntervalUnion::Array Matrix;
142 /// This returns an array indexed by the regunit number.
  /external/v8/src/
api-arguments.cc 29 PropertyCallbackInfo<v8::Array> info(begin());
  /external/v8/test/mjsunit/
array-pop.js 66 Array.prototype[1] = 1;
67 Array.prototype[3] = 3;
68 Array.prototype[5] = 5;
69 Array.prototype[7] = 7;
70 Array.prototype[9] = 9;
77 var inherited = Array.prototype.hasOwnProperty(j);
81 assertEquals(inherited, Array.prototype.hasOwnProperty(j),
84 Array.prototype.length = 0; // Clean-up.
88 // arrays with array prototype.
113 // arrays with array prototype
    [all...]
  /external/v8/test/mjsunit/es6/
typedarray-fill.js 38 // Shadowing length doesn't affect fill, unlike Array.prototype.fill
43 Array.prototype.fill.call(a, 4);
typedarray-reverse.js 8 ArrayMaker.prototype = Array.prototype;
45 // Array.reverse works on array-like objects
  /external/v8/test/mjsunit/regress/
regress-crbug-614727.js 10 // On 64-bit machine this produces a 768K array which is sufficiently small to
14 var args = new Array(length);
18 // On 32-bit machines this produces an equally sized array, however it might in
21 var args = new Array(length);
  /libcore/ojluni/src/main/java/java/sql/
Array.java 30 * <code>ARRAY</code>.
31 * By default, an <code>Array</code> value is a transaction-duration
32 * reference to an SQL <code>ARRAY</code> value. By default, an <code>Array</code>
33 * object is implemented using an SQL LOCATOR(array) internally, which
34 * means that an <code>Array</code> object contains a logical pointer
35 * to the data in the SQL <code>ARRAY</code> value rather
36 * than containing the <code>ARRAY</code> value's data.
38 * The <code>Array</code> interface provides methods for bringing an SQL
39 * <code>ARRAY</code> value's data to the client as either an array or
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
BaseConstructor.java 18 import java.lang.reflect.Array;
230 return Array.newInstance(type.getComponentType(), size);
279 protected Object constructArrayStep2(SequenceNode node, Object array) {
299 Array.setByte(array, index, ((Number) value).byteValue());
302 Array.setShort(array, index, ((Number) value).shortValue());
305 Array.setInt(array, index, ((Number) value).intValue());
308 Array.setLong(array, index, ((Number) value).longValue())
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btTriangleIndexVertexArray.java 21 import com.badlogic.gdx.utils.Array;
67 protected final static Array<btTriangleIndexVertexArray> instances = new Array<btTriangleIndexVertexArray>();
69 /** @return Whether the supplied array contains all specified tags. */
70 public static <T extends Object> boolean compare(final btTriangleIndexVertexArray array, final Array<T> tags) {
71 if (array.meshes.size != tags.size)
73 for (final btIndexedMesh mesh : array.meshes) {
90 protected static <T extends Object> btTriangleIndexVertexArray getInstance(final Array<T> tags) {
98 /** Create or reuse a btTriangleIndexVertexArray instance based on the specified {@link MeshPart} array
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/
AndroidControllers.java 33 import com.badlogic.gdx.utils.Array;
41 private final Array<Controller> controllers = new Array<Controller>();
42 private final Array<ControllerListener> listeners = new Array<ControllerListener>();
43 private final Array<AndroidControllerEvent> eventQueue = new Array<AndroidControllerEvent>();
242 public Array<Controller> getControllers () {
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
I18NBundleLoader.java 25 import com.badlogic.gdx.utils.Array;
80 public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, I18NBundleParameter parameter) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Cubemap.java 35 import com.badlogic.gdx.utils.Array;
42 final static Map<Application, Array<Cubemap>> managedCubemaps = new HashMap<Application, Array<Cubemap>>();
203 Array<Cubemap> managedCubemapArray = managedCubemaps.get(app);
204 if (managedCubemapArray == null) managedCubemapArray = new Array<Cubemap>();
216 Array<Cubemap> managedCubemapArray = managedCubemaps.get(app);
232 Array<Cubemap> cubemaps = new Array<Cubemap>(managedCubemapArray);
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 95 Array = 3, // A sequence of fields, next field species elt encoding.
97 Blob = 5 // 32-bit aligned array of 8-bit characters.
123 case Array:
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 60 case BitCodeAbbrevOp::Array:
81 case BitCodeAbbrevOp::Array:
119 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
125 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
126 // Array case. Read the number of elements as a vbr6.
130 assert(i+2 == e && "array op not second to last?");
179 if (CodeOp.getEncoding() == BitCodeAbbrevOp::Array ||
181 report_fatal_error("Abbreviation starts with an Array or a Blob");
192 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
198 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
    [all...]

Completed in 1069 milliseconds

<<11121314151617181920>>