/external/vixl/examples/ |
add2-vectors.cc | 30 #define ARRAY_SIZE(Array) (sizeof(Array) / sizeof((Array)[0]))
|
/frameworks/base/tools/aapt2/ |
ValueVisitor.h | 43 virtual void visit(Array* value) {} 79 void visitSubValues(Array* array) { 80 for (std::unique_ptr<Item>& item : array->items) { 101 DECL_VISIT_COMPOUND_VALUE(Array);
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CameraInfoDialogFragment.java | 18 import java.lang.reflect.Array; 103 // Iterate an array-type value 105 int len = Array.getLength(val); 110 Array.get(val, i),
|
/art/runtime/mirror/ |
array-inl.h | 20 #include "array.h" 33 inline uint32_t Array::ClassSize(size_t pointer_size) { 39 inline size_t Array::SizeOf() { 40 // This is safe from overflow because the array was already allocated, so we know it's sane. 51 inline MemberOffset Array::DataOffset(size_t component_size) { 53 size_t data_offset = RoundUp(OFFSETOF_MEMBER(Array, first_element_), component_size); 55 << "Array data offset isn't aligned with component size"; 60 inline bool Array::CheckIsValidIndex(int32_t index) { 73 size_t header_size = Array::DataOffset(component_size).SizeValue(); 87 // The array length limit (exclusive) 106 Array* array = down_cast<Array*>(obj); local 130 Array* array = down_cast<Array*>(obj); local [all...] |
/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...] |
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...] |
/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/llvm/include/llvm/CodeGen/ |
LiveRegMatrix.h | 48 LiveIntervalUnion::Array Matrix; 142 /// This returns an array indexed by the regunit number.
|
/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...] |
array-push7.js | 10 function push_wrapper(array, value) { 11 array.push(value); 13 function pop_wrapper(array) { 14 return array.pop(); 18 // Array.push() and Array.pop() both from optimized and un-optimized code. 19 var array = []; variable 25 Object.observe(array, somethingChanged); 26 push_wrapper(array, 1); 28 assertEquals(1, array.length) [all...] |
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/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-403292.js | 29 __f_3(Array); 44 var __v_5 = new Array(__v_6);
|
/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/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...] |
/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)
|