HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 676 - 700 of 1268) sorted by null

<<21222324252627282930>>

  /external/v8/test/webkit/fast/js/kde/
iteration.js 66 arr = new Array;
  /external/v8/test/webkit/fast/js/
object-bad-time.js 55 shouldBe("\"" + Array.prototype.join.apply(foo(haveABadTime), [","]) + "\"", expected);
  /external/v8/test/webkit/
regexp-in-and-foreach-handling.js 24 description("Test for bug 31689: RegExp#exec's returned Array-like object behaves differently from regular Arrays");
array-defineOwnProperty.js 24 description("This test checks the behavior of [[DefineOwnProperty]] applied to Array objects (see ES5.1 15.4.5.1).");
26 // Test that properties other than length, array indices are handled as normal.
76 Object.defineProperty(Array.prototype, "0", { set: function () { throw false; } });
77 Object.defineProperty(Array.prototype, "1", { set: function () { throw false; } });
  /external/v8/tools/
SourceMap.js 130 * @return {Array.<string>}
174 * @param {Array.<SourceMapV3.Section>} sections
187 * @return {?Array}
213 * @return {Array}
  /libcore/ojluni/src/main/java/java/lang/reflect/
Array.java 30 * The {@code Array} class provides static methods to dynamically create and
33 * <p>{@code Array} permits widening conversions to occur during a get or set
40 class Array {
43 * Constructor. Class Array is not instantiable.
45 private Array() {}
48 * Creates a new array with the specified component type and
50 * Invoking this method is equivalent to creating an array
55 * Array.newInstance(componentType, x);
60 * component type of the new array
61 * @param length the length of the new array
    [all...]
  /system/media/camera/docs/
camera_metadata_tag_info.mako 24 * Array assignments are done using specified-index syntax to keep things in
  /art/runtime/native/
dalvik_system_VMRuntime.cc 88 mirror::Array* result = mirror::Array::Alloc<true>(soa.Self(), array_class, length,
113 mirror::Array* result = mirror::Array::Alloc<true, true>(soa.Self(), array_class, length,
124 mirror::Array* array = soa.Decode<mirror::Array*>(javaArray); local
125 if (!array->IsArrayInstance()) {
126 ThrowIllegalArgumentException("not an array");
129 if (Runtime::Current()->GetHeap()->IsMovableObject(array)) {
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 24 import java.sql.Array;
105 public void setArray(int parameterIndex, Array theArray)
281 public Array getArray(int columnIndex) throws SQLException {
285 public Array getArray(String colName) throws SQLException {
609 public void updateArray(int columnIndex, Array x) throws SQLException {
612 public void updateArray(String columnName, Array x) throws SQLException {
  /external/deqp/framework/common/
tcuMatrix.hpp 71 Array<T, Rows*Cols> getRowMajorData (void) const;
72 Array<T, Rows*Cols> getColumnMajorData (void) const;
328 // Initialize from data array.
413 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getColumnMajorData (void) const
415 Array<T, Rows*Cols> a;
424 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getRowMajorData (void) const
426 Array<T, Rows*Cols> a;
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 79 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, CJS_Array& array)
81 operator=(array);
142 v8::Local<v8::Array> CJS_Value::ToV8Array() const {
144 return v8::Local<v8::Array>::Cast(
146 return v8::Local<v8::Array>();
203 void CJS_Value::operator=(CJS_Array& array) {
205 FXJS_NewObject2(m_pJSRuntime->GetIsolate(), (v8::Local<v8::Array>)array);
256 FX_BOOL CJS_Value::ConvertToArray(CJS_Array& array) const {
258 array.Attach(FXJS_ToArray(m_pJSRuntime->GetIsolate(), m_pValue))
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsplugin.c 137 cmsBool CMSEXPORT _cmsReadUInt16Array(cmsIOHANDLER* io, cmsUInt32Number n, cmsUInt16Number* Array)
145 if (Array != NULL) {
146 if (!_cmsReadUInt16Number(io, Array + i)) return FALSE;
276 cmsBool CMSEXPORT _cmsWriteUInt16Array(cmsIOHANDLER* io, cmsUInt32Number n, const cmsUInt16Number* Array)
281 _cmsAssert(Array != NULL);
284 if (!_cmsWriteUInt16Number(io, Array[i])) return FALSE;
  /external/testng/src/main/java/org/testng/
Assert.java 10 import java.lang.reflect.Array;
143 fail("expected a null array, but not null found. " + message);
146 fail("expected not null array, but null found. " + message);
148 //is called only when expected is an array
150 int expectedLength = Array.getLength(expected);
151 if (expectedLength == Array.getLength(actual)) {
153 Object _actual = Array.get(actual, i);
154 Object _expected = Array.get(expected, i);
162 //array values matched
165 failNotEquals(Array.getLength(actual), expectedLength, message == null ? "" : messag
    [all...]
  /external/v8/test/cctest/
test-accessors.cc 237 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast( local
254 CHECK_EQ(80u, array->Length());
257 array->Get(context.local(), v8::Integer::New(isolate, i))
480 info.GetReturnValue().Set(v8::Array::New(info.GetIsolate(), 1000));
578 void JSONStringifyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info) {
579 v8::Local<v8::Array> array = v8::Array::New(info.GetIsolate(), 1) local
    [all...]
  /external/v8/test/mjsunit/es6/
spread-call.js 352 Object.getOwnPropertyDescriptor(Array.prototype, Symbol.iterator);
353 Object.defineProperty(Array.prototype, Symbol.iterator, {
371 Object.defineProperty(Array.prototype, Symbol.iterator, origIterator);
string-includes.js 78 msg: "Empty array []", val: []
82 msg: "Array of size 3", val: new Array(3)
125 var dots = Array(10000).join(".");
  /external/v8/test/mjsunit/
eval-stack-trace.js 45 Array.prototype.verifyEquals = function(frames, func_name) {
57 Array.prototype.verifyContains = function(frames, func_name) {
69 Array.prototype.verifyUndefined = function(frames, func_name) {
  /external/v8/test/mjsunit/regress/
regress-410912.js 14 function PrettyPrintArrayElement(value, index, array) { return ""; }
17 function deepEquals(a, b) { if (a === b) { if (a === 0) return (1 / a) === (1 / b); return true; } if (typeof a != typeof b) return false; if (typeof a == "number") return isNaN(a) && isNaN(b); if (typeof a !== "object" && typeof a !== "function") return false; var objectClass = classOf(a); if (objectClass !== classOf(b)) return false; if (objectClass === "RegExp") { return (a.toString() === b.toString()); } if (objectClass === "Function") return false; if (objectClass === "Array") { var elementCount = 0; if (a.length != b.length) { return false; } for (var i = 0; i < a.length; i++) { if (!deepEquals(a[i], b[i])) return false; } return true; } if (objectClass == "String" || objectClass == "Number" || objectClass == "Boolean" || objectClass == "Date") { if (a.valueOf() !== b.valueOf()) return false; } return deepObjectEquals(a, b); }
20 assertArrayEquals = function assertArrayEquals(expected, found, name_opt) { var start = ""; if (name_opt) { start = name_opt + " - "; } assertEquals(expected.length, found.length, start + "array length"); if (expected.length == found.length) { for (var i = 0; i < expected.length; ++i) { assertEquals(expected[i], found[i], start + "array element at index " + i); } } };
165 var __v_27 = new Array();
179 var __v_26 = new Array(912561);
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_vector.i 84 public void CopyTo(System.Array array)
86 public void CopyTo($typemap(cstype, CTYPE)[] array)
89 CopyTo(0, array, 0, this.Count);
93 public void CopyTo(System.Array array, int arrayIndex)
95 public void CopyTo($typemap(cstype, CTYPE)[] array, int arrayIndex)
98 CopyTo(0, array, arrayIndex, this.Count);
102 public void CopyTo(int index, System.Array array, int arrayIndex, int count
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 204 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
212 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
219 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
227 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
317 // ARRAY: [numelts, eltty]
611 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
622 // location (it's never more expensive than building an array size 1).
638 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
783 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
790 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 203 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
212 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
220 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
228 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
319 // ARRAY: [numelts, eltty]
640 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
651 // location (it's never more expensive than building an array size 1).
667 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
819 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
826 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/node_modules/mocha/
mocha.js 81 function removeEmpty(array) {
83 for (var i = 0; i < array.length; i++) {
84 if (array[i]) {
85 ret.push(array[i]);
174 // as shallow array clone
365 Array.prototype.splice.apply(str,[d.start-1,+d.oldlength].concat(d.newlines));
426 * Check if `obj` is an array.
430 return '[object Array]' == {}.toString.call(obj);
910 * describe('Array', function(){
1052 * exports.Array =
    [all...]
  /dalvik/docs/
prettify.js 61 * @param {Array.<string>} out output buffer that receives chunks of HTML.
183 /** Splice one array into another.
187 * @param {Array} inserted
188 * @param {Array} container modified in place
535 * @param {Array} shortcutStylePatterns patterns that always start with
537 * @param {Array} fallthroughStylePatterns patterns that will be tried in
540 * @return {function (string, number?) : Array.<number|string>} a
694 * @return {function (string) : Array.<string|number>} a
751 * @return {Array.<number|string>} a decoration list.
    [all...]
  /external/libevent/
event_rpcgen.py 73 """Takes an array, add indentation to each entry and prints it."""
103 if entry.Array():
139 if entry.Array():
185 if entry.Array():
255 if not entry.Array():
371 def Array(self):
393 if self.Array() and not self._can_be_array:
395 'Entry "%s" cannot be created as an array '
403 'Entry "%s" has illegal combination of optional and array '
491 if self.Array()
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp 497 // Don't worry about emitting an error for it not being an array,
498 // visitGlobalValue will complain on appending non-array.
889 if (auto *Array = N.getRawEnumTypes()) {
890 Assert(isa<MDTuple>(Array), "invalid enum list", &N, Array);
    [all...]

Completed in 815 milliseconds

<<21222324252627282930>>