/external/v8/test/webkit/ |
array-constructor-host-call.js | 25 "This tests that array construction via a host call works." 33 var array = constructArray(Array); 34 shouldBeTrue("array instanceof Array"); 35 shouldBe("array.length", "100");
|
isPrototypeOf.js | 29 shouldBeTrue("Array.prototype.isPrototypeOf(new Array())");
|
array-enumerators-functions.js | 25 "This test checks the behavior of the various array enumeration functions in certain edge case scenarios" 30 function(elem, index, array) { return currentFunc.call(this, elem, index, array); }, 31 function(elem, index, array) { return currentFunc.call(this, elem, index, array); }, 32 function(elem, index, array) { return currentFunc.call(this, elem, index, array); }, 33 function(elem, index, array) { return currentFunc.call(this, elem, index, array); }, 34 function(prev, elem, index, array) { return currentFunc.call(this, elem, index, array); } [all...] |
/external/v8/test/webkit/fast/js/ |
array-slow-put.js | 25 "Tests that defining a setter on the Array prototype works." 29 Array.prototype.__defineSetter__("3", function() { ouches++; });
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
FloatArrayToStrFilter.java | 16 // Takes in an array, returns the size of the array 28 import java.lang.reflect.Array; 46 FrameType floatType = FrameType.array(float.class); 49 .addInputPort("array", Signature.PORT_REQUIRED, floatType) 59 FrameValue arrayFrame = getConnectedInputPort("array").pullFrame().asFrameValues(); 60 float[] array = (float[]) arrayFrame.getValue(); local 61 String outstr = Arrays.toString(array);
|
/frameworks/base/tools/layoutlib/bridge/src/dalvik/system/ |
VMRuntime_Delegate.java | 33 // Dalvik has 32bit pointers, the array header is 16bytes plus 4bytes for dlmalloc, 34 // allocations are 8byte aligned so having 4bytes of array data avoids padding. 37 return java.lang.reflect.Array.newInstance(componentType, size); 74 throw new IllegalArgumentException("Can't allocate an array of void");
|
/libcore/luni/src/main/java/libcore/reflect/ |
AnnotationMember.java | 26 import java.lang.reflect.Array; 40 * <li> one-dimensional array of the above 62 * Tag description of an array value type. 64 protected static final char ARRAY = '['; 114 tag = ARRAY; 168 if (tag == ARRAY) { 171 int len = Array.getLength(value); 174 sb.append(Array.get(value, i)); 201 if (tag == ARRAY) { 219 * @return true if the value is array and is equal to specified object [all...] |
/libcore/ojluni/src/main/java/java/sql/ |
SQLInput.java | 174 * Reads the next attribute in the stream and returns it as an array of bytes 325 * Reads an SQL <code>ARRAY</code> value from the stream and returns it as an 326 * <code>Array</code> object in the Java programming language. 328 * @return an <code>Array</code> object representing data of the SQL 329 * <code>ARRAY</code> value at the head of the stream; <code>null</code> 336 Array readArray() throws SQLException;
|
SQLOutput.java | 174 * Writes the next attribute to the stream as an array of bytes. 344 * Writes an SQL <code>ARRAY</code> value to the stream. 346 * @param x an <code>Array</code> object representing data of an SQL 347 * <code>ARRAY</code> type 354 void writeArray(Array x) throws SQLException;
|
/ndk/sources/host-tools/nawk-20071023/ |
proto.h | 104 extern Array *makesymtab(int); 107 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *); 109 extern void rehash(Array *); 110 extern Cell *lookup(const char *, Array *); 159 extern Cell *array(Node **, int);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/ |
_endian.py | 7 _array_type = type(Array) 18 # if typ is array
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/ |
_endian.py | 7 _array_type = type(Array) 18 # if typ is array
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
_endian.py | 7 _array_type = type(Array) 18 # if typ is array
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
_endian.py | 7 _array_type = type(Array) 18 # if typ is array
|
/art/runtime/ |
transaction.cc | 159 void Transaction::RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) { 160 DCHECK(array != nullptr); 161 DCHECK(array->IsArrayInstance()); 162 DCHECK(!array->IsObjectArray()); 164 ArrayLog& array_log = array_logs_[array]; 215 // TODO we may not need to restore array allocated during this transaction. Or we could directly 270 typedef std::pair<mirror::Array*, mirror::Array*> ArrayPair; 274 mirror::Array* old_root = it.first [all...] |
/art/runtime/native/ |
java_lang_System.cc | 22 #include "mirror/array.h" 34 * cause "word tearing". Accesses to 64-bit array elements may be two 32-bit operations. 38 static void ThrowArrayStoreException_NotAnArray(const char* identifier, mirror::Object* array) 40 std::string actualType(PrettyTypeOf(array)); 43 "%s of type %s is not an array", identifier, actualType.c_str()); 73 mirror::Array* srcArray = srcObject->AsArray(); 74 mirror::Array* dstArray = dstObject->AsArray(); 130 LOG(FATAL) << "Unknown array type: " << PrettyTypeOf(srcArray); 134 // If one of the arrays holds a primitive type the other array must hold the exact same type. 157 // Template to convert general array to that of its specific primitive type [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
CommonTreeNodeStream.as | 38 * the tree using an array of Object pointers. The stream necessarily 70 protected var nodes:Array; 85 * to consume). If -1, nodes array not filled yet. 93 protected var calls:Array; 103 nodes = new Array(); 312 calls = new Array(); 331 calls = new Array();
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
HashList.cs | 257 public void CopyTo(Array array, int index) 259 _hashList.CopyKeysTo(array, index); 328 public void CopyTo(Array array, int index) 330 _hashList.CopyValuesTo(array, index); 456 public void CopyTo(Array array, int index) 462 array.SetValue(e, index++); 482 private void CopyKeysTo(Array array, int index [all...] |
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/ |
apiviewer.js | [all...] |
/external/liblzf/cs/ |
CLZF.cs | 129 UInt32 FRST(byte[] Array,UInt32 ptr) 131 return (UInt32)(((Array[ptr]) << 8) | Array[ptr+1]); 134 UInt32 NEXT(UInt32 v,byte[] Array,UInt32 ptr) 136 return ((v) << 8) | Array[ptr+2];
|
/external/v8/test/mjsunit/ |
array-elements-from-object-prototype.js | 30 // for various Array.prototype functions (like unshift, shift, etc.) 32 // array-elements-from-array-prototype.js 33 // array-elements-from-array-prototype-chain.js 34 // array-elements-from-object-prototype.js 49 var a = new Array(13) 58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[ 72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7 [all...] |
allocation-folding.js | 107 var a1 = new Array(84632); 108 var a2 = new Array(84632); 109 var a3 = new Array(84632);
|
/external/v8/tools/ |
logreader.js | 36 * @param {Array.<Object>} dispatchTable A table used for parsing and processing 45 * @type {Array.<Object>} 82 * @type {Array.<String>} 144 * @param {Array.<string>} stack String representation of a stack. 145 * @return {Array.<number>} Processed stack. 182 * @param {Array.<string>} fields Log record. 219 * @param {Array.<string>} lines Log lines.
|
/external/eigen/Eigen/src/Core/util/ |
XprHelper.h | 190 typedef Array<typename traits<T>::Scalar, 226 struct eval<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense> 228 typedef const Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type; 409 /** \internal gives the plain matrix or array type to store a row/column/diagonal of a matrix type. 417 typedef Array<Scalar, 1, ExpressionType::ColsAtCompileTime, 432 typedef Array<Scalar, ExpressionType::RowsAtCompileTime, 1, 449 typedef Array<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> ArrayDiagType;
|
/external/v8/test/mjsunit/es6/ |
typedarray-findindex.js | 30 // Test predicate is not called when array is empty 83 // Test predicate is called array.length times 99 // Test array modifications 125 Array.prototype.push.apply(thisArg, [3, 2, 1]); 177 // Shadowing length doesn't affect findIndex, unlike Array.prototype.findIndex 183 assertEquals(Array.prototype.findIndex.call(a,
|