/libcore/luni/src/main/java/java/sql/ |
SQLInput.java | 142 * Returns the next attribute in the stream in the form of a byte array. 144 * @return the attribute as a byte array. {@code null} if the read returns 282 * java.sql.Array}. 284 * @return the next attribute as an {@code Array}. {@code null} if the value 288 * @see Array 290 public Array readArray() throws SQLException;
|
SQLOutput.java | 134 * Write an array of bytes into the output stream. 137 * the array of bytes to write. 273 * Write an SQL {@code Array} value into the output stream. 276 * the {@code java.sql.Array} object to write. 279 * @see Array 281 public void writeArray(Array theArray) throws SQLException;
|
/libcore/luni/src/main/java/org/apache/harmony/lang/annotation/ |
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...] |
/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);
|
/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/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/llvm/include/llvm/Bitcode/ |
BitstreamReader.h | 367 uint8_t Array[sizeof(word_t)] = {0}; 369 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), 370 Array, NULL); 375 memcpy(&EndianValue, Array, sizeof(Array));
|
/external/v8/test/mjsunit/ |
elements-kind.js | 37 support_smi_only_arrays = %HasFastSmiOnlyElements(new Array(1,2,3,4,5,6,7,8)); 66 // Every external kind is also an external array. 120 var you = new Array(); 132 assertKind(elements_kind.dictionary, new Array(0xDECAF)); 134 var fast_double_array = new Array(0xDECAF); 148 // Crankshaft support for smi-only array elements. 149 function monomorphic(array) { 150 assertKind(elements_kind.fast_smi_only, array); 152 array[i] = i + 10; 154 assertKind(elements_kind.fast_smi_only, array); [all...] |
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...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
util.js | 103 * Detect if an object looks like an Array.
104 * Note that instanceof Array is not robust; for example an Array
105 * created in another iframe fails instanceof Array.
107 * @return {boolean} Is the object an array?
117 * Finds a slice of an array.
119 * @param {Array} array Array to be sliced.
122 * @return {Array} array The slice of the array from start to end. [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
util.js | 103 * Detect if an object looks like an Array. 104 * Note that instanceof Array is not robust; for example an Array 105 * created in another iframe fails instanceof Array. 107 * @return {boolean} Is the object an array? 117 * Finds a slice of an array. 119 * @param {Array} array Array to be sliced. 122 * @return {Array} array The slice of the array from start to end [all...] |
/external/v8/src/ |
array.js | 30 // var $Array = global.Array; 39 // Gets a sorted array of array keys. Useful for operations on sparse 41 function GetSortedArrayKeys(array, intervals) { 50 var e = array[j]; 51 if (!IS_UNDEFINED(e) || j in array) { 58 var e = array[key]; 59 if (!IS_UNDEFINED(e) || key in array) { 70 function SparseJoinWithSeparator(array, len, convert, separator) [all...] |
/external/webkit/LayoutTests/dom/html/level1/core/ |
selfhtml.js | 263 this.atEvents = new Array(); 264 this.bubbledEvents = new Array(); 265 this.capturedEvents = new Array(); 266 this.allEvents = new Array(); 298 this.allErrors = new Array(); 323 this.allNotifications = new Array(); 349 this.documentURLs = new Array(); 350 this.documentVarnames = new Array(); 516 var newArray = new Array();
|
/external/webkit/LayoutTests/dom/html/level2/core/ |
selfhtml.js | 263 this.atEvents = new Array(); 264 this.bubbledEvents = new Array(); 265 this.capturedEvents = new Array(); 266 this.allEvents = new Array(); 298 this.allErrors = new Array(); 323 this.allNotifications = new Array(); 349 this.documentURLs = new Array(); 350 this.documentVarnames = new Array(); 516 var newArray = new Array();
|
/external/webkit/LayoutTests/dom/html/level2/events/ |
selfhtml.js | 263 this.atEvents = new Array(); 264 this.bubbledEvents = new Array(); 265 this.capturedEvents = new Array(); 266 this.allEvents = new Array(); 298 this.allErrors = new Array(); 323 this.allNotifications = new Array(); 349 this.documentURLs = new Array(); 350 this.documentVarnames = new Array(); 516 var newArray = new Array();
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
selfhtml.js | 263 this.atEvents = new Array(); 264 this.bubbledEvents = new Array(); 265 this.capturedEvents = new Array(); 266 this.allEvents = new Array(); 298 this.allErrors = new Array(); 323 this.allNotifications = new Array(); 349 this.documentURLs = new Array(); 350 this.documentVarnames = new Array(); 516 var newArray = new Array();
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
selfxhtml.js | 253 var newArray = new Array(); 271 this.atEvents = new Array(); 272 this.bubbledEvents = new Array(); 273 this.capturedEvents = new Array(); 274 this.allEvents = new Array(); 306 this.allErrors = new Array(); 331 this.allNotifications = new Array(); 357 this.documentURLs = new Array(); 358 this.documentVarnames = new Array();
|
/external/webkit/LayoutTests/dom/xhtml/level2/core/ |
selfxhtml.js | 253 var newArray = new Array(); 271 this.atEvents = new Array(); 272 this.bubbledEvents = new Array(); 273 this.capturedEvents = new Array(); 274 this.allEvents = new Array(); 306 this.allErrors = new Array(); 331 this.allNotifications = new Array(); 357 this.documentURLs = new Array(); 358 this.documentVarnames = new Array();
|
/external/webkit/LayoutTests/dom/xhtml/level2/events/ |
selfxhtml.js | 253 var newArray = new Array(); 271 this.atEvents = new Array(); 272 this.bubbledEvents = new Array(); 273 this.capturedEvents = new Array(); 274 this.allEvents = new Array(); 306 this.allErrors = new Array(); 331 this.allNotifications = new Array(); 357 this.documentURLs = new Array(); 358 this.documentVarnames = new Array();
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
selfxhtml.js | 253 var newArray = new Array(); 271 this.atEvents = new Array(); 272 this.bubbledEvents = new Array(); 273 this.capturedEvents = new Array(); 274 this.allEvents = new Array(); 306 this.allErrors = new Array(); 331 this.allNotifications = new Array(); 357 this.documentURLs = new Array(); 358 this.documentVarnames = new Array();
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
selfxhtml.js | 253 var newArray = new Array(); 271 this.atEvents = new Array(); 272 this.bubbledEvents = new Array(); 273 this.capturedEvents = new Array(); 274 this.allEvents = new Array(); 306 this.allErrors = new Array(); 331 this.allNotifications = new Array(); 357 this.documentURLs = new Array(); 358 this.documentVarnames = new Array();
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8WebGLRenderingContextCustom.cpp | 72 // Returns NULL if array failed to convert for any reason. 73 static float* jsArrayToFloatArray(v8::Handle<v8::Array> array, uint32_t len) 80 v8::Local<v8::Value> val = array->Get(v8::Integer::New(i)); 91 // Returns NULL if array failed to convert for any reason. 92 static int* jsArrayToIntArray(v8::Handle<v8::Array> array, uint32_t len) 99 v8::Local<v8::Value> val = array->Get(v8::Integer::New(i)); 118 v8::Local<v8::Array> array = v8::Array::New(value.size()) local 399 v8::Local<v8::Array> array = v8::Array::New(value.size()); local 510 Float32Array* array = V8Float32Array::toNative(args[1]->ToObject()); local 533 v8::Handle<v8::Array> array = local 586 Int32Array* array = V8Int32Array::toNative(args[1]->ToObject()); local 605 v8::Handle<v8::Array> array = local 704 Float32Array* array = V8Float32Array::toNative(args[2]->ToObject()); local 722 v8::Handle<v8::Array> array = local [all...] |
/external/chromium/chrome/browser/resources/file_manager/js/ |
util.js | 17 var ary = Array.apply(null, arguments); 32 var ary = Array.apply(null, arguments); 97 * @param {Array<string>} paths The list of directories to resolve. 107 // Copy the params array, since we're going to destroy it.
|
/external/eigen/Eigen/src/Core/util/ |
XprHelper.h | 168 typedef Array<typename traits<T>::Scalar, 204 struct eval<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense> 206 typedef const Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type; 387 /** \internal gives the plain matrix or array type to store a row/column/diagonal of a matrix type. 395 typedef Array<Scalar, 1, ExpressionType::ColsAtCompileTime, 410 typedef Array<Scalar, ExpressionType::RowsAtCompileTime, 1, 427 typedef Array<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> ArrayDiagType;
|