HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 1276 - 1300 of 1692) sorted by null

<<51525354555657585960>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
shell.js 67 testcases = new Array();
  /external/webkit/Source/WebCore/inspector/front-end/
InjectedFakeWorker.js 337 var args = Array.prototype.slice.call(arguments, 2);
338 return function() { return func.apply(thisObject, args.concat(Array.prototype.slice.call(arguments, 0))); };
HeapSnapshot.js 559 var result = new Array(indexes.length);
618 this._retainerIndex = new Array(this._nodeIndex.length);
633 this._retainers = new Array(retainerCount + 1);
698 this._idsList = new Array(count);
709 this._nodeIndex = new Array(count + 1);
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 38 public final class Array {
39 private Array() {
43 throw new IllegalArgumentException("Not an array: " + o.getClass());
47 throw new IllegalArgumentException("Array has incompatible type: " + o.getClass());
50 private static RuntimeException badArray(Object array) {
51 if (array == null) {
52 throw new NullPointerException("array == null");
53 } else if (!array.getClass().isArray()) {
54 throw notAnArray(array);
56 throw incompatibleType(array);
    [all...]
  /libcore/luni/src/main/java/java/sql/
CallableStatement.java 60 * Gets the value of a specified JDBC {@code ARRAY} parameter as a
61 * {@code java.sql.Array}.
66 * @return a {@code java.sql.Array} containing the parameter value.
70 public Array getArray(int parameterIndex) throws SQLException;
73 * Gets the value of a specified JDBC {@code ARRAY} parameter as a {@code
74 * java.sql.Array}.
78 * @return a {@code java.sql.Array} containing the parameter's value.
82 public Array getArray(String parameterName) throws SQLException;
218 * Returns a byte array representation of the indexed JDBC {@code BINARY} or
224 * @return an array of bytes giving the value of the parameter. {@code null
    [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 24 import java.sql.Array;
261 * Sets the specified {@code ARRAY} parameter in the {@code RowSet} command
262 * with the supplied {@code java.sql.Array} value.
268 * the {@code Array} data value to which the parameter is set.
272 public void setArray(int parameterIndex, Array theArray)
600 * to the supplied byte array value.
606 * the {@code Array} of {@code bytes} to which the parameter is set.
615 * supplied byte array value.
620 * the array of bytes to set into the parameter.
    [all...]
  /system/media/camera/docs/
camera_metadata_tag_info.mako 24 * Array assignments are done using specified-index syntax to keep things in
  /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/chromium/chrome/browser/resources/sync_internals/
chrome_sync.js 50 var args = Array.prototype.slice.call(arguments);
97 var args = Array.prototype.slice.call(arguments);
104 var args = Array.prototype.slice.call(arguments);
  /external/v8/src/
collection.js 223 InstallFunctions($Set.prototype, DONT_ENUM, $Array(
230 InstallFunctions($Map.prototype, DONT_ENUM, $Array(
244 InstallFunctions($WeakMap.prototype, DONT_ENUM, $Array(
handles.cc 134 Handle<JSArray> array) {
136 content->AddKeysFromJSArray(*array), FixedArray);
392 // Init line_ends array with code positions of line ends inside script
409 Handle<FixedArray> array = CalculateLineEnds(src, true); local
411 if (*array != isolate->heap()->empty_fixed_array()) {
412 array->set_map(isolate->heap()->fixed_cow_array_map());
415 script->set_line_ends(*array);
470 Handle<FixedArray> array = isolate->factory()->NewFixedArray(line_count); local
472 array->set(i, Smi::FromInt(line_ends[i]));
474 return array;
    [all...]
v8natives.js 35 // var $Array = global.Array;
190 InstallFunctions(global, DONT_ENUM, $Array(
499 SetUpLockedPrototype(PropertyDescriptor, $Array(
512 ), $Array(
578 // Converts an array returned from Runtime_GetOwnProperty to an actual
579 // property descriptor. For a description of the array layout please
651 // GetOwnProperty returns an array indexed by the constants
854 // Note that the length of an array is not actually stored as part of the
866 throw new $RangeError('defineProperty() array length out of range')
    [all...]
  /external/v8/test/mjsunit/
fuzz-natives.js 37 result.push(new Array(100));
38 result.push(new Array(100003));
172 // That can only be invoked on Array.prototype.
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 165 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
248 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
258 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
266 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
274 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
284 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
359 // ARRAY: [numelts, eltty]
625 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
760 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
767 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 143 // We don't want to hand out our array directly because the NTP will
144 // assume it owns the array and is free to modify it. For now we make a
145 // one-level deep copy of the array (since cloning the whole thing is
191 * Like Array.prototype.indexOf but calls a predicate to test for match
193 * @param {Array} array The array to search.
198 function indexOfPred(array, predicate) {
199 for (var i = 0; i < array.length; i++) {
200 if (predicate(array[i])
    [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/chromium/third_party/libevent/
event_rpcgen.py 53 """Takes an array, add indentation to each entry and prints it."""
77 if entry.Array():
112 if entry.Array():
152 if entry.Array():
220 if not entry.Array():
329 def Array(self):
419 if self.Array():
427 if self.Array() and not self._can_be_array:
429 'Entry "%s" cannot be created as an array '
439 'optional and array around line %d' ) %
    [all...]
  /external/v8/test/cctest/
test-api.cc 123 v8::Handle<v8::Array> result = v8::Array::New(args.Length());
132 v8::Handle<v8::Array> result = v8::Array::New(args.Length());
311 Local<v8::Array> value = CompileRun("[\"a\", \"b\"]").As<v8::Array>();
2492 Local<v8::Array> array = v8::Array::New(); local
12977 i::Handle<ExternalArrayClass> array = local
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 252 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
261 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
269 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
277 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
368 // ARRAY: [numelts, eltty]
657 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
827 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
834 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
840 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
846 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 199 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
208 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
216 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
224 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
315 // ARRAY: [numelts, eltty]
579 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
714 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
721 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
727 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
733 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 208 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
217 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
225 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
233 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
324 // ARRAY: [numelts, eltty]
617 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
787 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
794 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
800 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
806 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 37 using Array = System.Array;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 40 using Array = System.Array;
633 Array.Copy(X, 0, trimmed, 0, n);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 38 using Array = System.Array;
    [all...]

Completed in 1268 milliseconds

<<51525354555657585960>>