HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 301 - 325 of 1473) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 98 case BitCodeAbbrevOp::Array:
118 case BitCodeAbbrevOp::Array:
154 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
160 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
161 // Array case. Read the number of elements as a vbr6.
165 assert(i+2 == e && "array op not second to last?");
223 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
229 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
230 // Array case. Read the number of elements as a vbr6.
234 assert(i+2 == e && "array op not second to last?")
    [all...]
  /external/v8/test/mjsunit/
array-splice.js 28 // Check that splicing array of holes keeps it as array of holes
31 var array = new Array(10);
32 var spliced = array.splice(1, 1, 'one', 'two');
36 assertEquals(11, array.length);
37 assertFalse(0 in array, "0 in array");
38 assertTrue(1 in array);
39 assertTrue(2 in array);
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1160.js 30 // Array.prototype.join uses a temporary array internally. Verify it
32 // when keyed store on the array does not work as expected because of
36 var array = Array(N); variable
38 array[i] = i;
40 Array.prototype.__defineSetter__(2, function() { });
41 assertEquals("0,1,2,3,4,5,6,7,8,9", array.join(","));
regress-1708.js 29 // array caused invalid marking bit patterns on lazily swept pages.
34 var head = new Array(1);
40 tail[1] = new Array(1000);
43 array = new Array(100);
46 // At this point "array" should have been promoted to old-space and be
48 // the array to trigger left-trimming operations.
49 assertEquals(100, array.length);
51 array.shift();
53 assertEquals(50, array.length)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 54 protected var markers:Array;
63 /** Copy data in string to a local char array */
73 * when the object was created *except* the data array is not
129 markers = new Array();
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
background.js 28 window.results.data = new Array();
40 var benchmarks = new Array();
49 // Array Remove - By John Resig (MIT Licensed)
50 Array.prototype.remove = function(from, to) {
157 current_.startLoadResults = new Array(); // times to start
158 current_.commitLoadResults = new Array(); // times to commit
159 current_.docLoadResults = new Array(); // times to docload
160 current_.paintResults = new Array(); // times to paint
161 current_.totalResults = new Array(); // times to complete load
162 current_.KbytesRead = new Array();
    [all...]
  /external/chromium_org/chrome/renderer/
principals_extension_bindings.cc 86 v8::Local<v8::Array> v8_result = v8::Array::New(isolate);
  /external/chromium_org/remoting/webapp/
clipboard_event_proto.js 17 /** @type {Array.<string>} */
stats_accumulator.js 26 * @type Object.<string, Array.<number>>
82 * @param {Array.<number>} values
102 * @param {function(Array.<number>): number} map
117 * @return {Array.<number>} the list of values for that key
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestTypedefs.idl 73 typedef Array ARRAY;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptRegexp.cpp 86 // Array of strings with the first being the whole match string and others
87 // being subgroups. The Array also has some random properties tacked on like
95 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
WorkerScriptDebugServer.cpp 73 v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1708.js 29 // array caused invalid marking bit patterns on lazily swept pages.
34 var head = new Array(1);
40 tail[1] = new Array(1000);
43 array = new Array(100);
46 // At this point "array" should have been promoted to old-space and be
48 // the array to trigger left-trimming operations.
49 assertEquals(100, array.length);
51 array.shift();
53 assertEquals(50, array.length)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSpannableString.java 3 import java.lang.reflect.Array;
51 T[] array = (T[]) Array.newInstance(kind, retVal.size()); local
52 return retVal.toArray(array);
  /libcore/luni/src/main/java/java/security/cert/
TrustAnchor.java 23 import org.apache.harmony.security.utils.Array;
35 * representation of a so called "Name Constraints" extension as a byte array.
257 sb.append(Array.toString(nameConstraints, " "));
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AuthorityKeyIdentifier.java 33 import org.apache.harmony.security.utils.Array;
112 sb.append(Array.toString(keyIdentifier, prefix + " "));
Certificate.java 30 import org.apache.harmony.security.utils.Array;
97 result.append(Array.toString(signatureValue, ""));
CertificateList.java 30 import org.apache.harmony.security.utils.Array;
95 result.append(Array.toString(signatureValue, ""));
  /external/chromium_org/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, indices) {
47 var e = array[i];
48 if (!IS_UNDEFINED(e) || i in array) {
57 var e = array[key];
58 if (!IS_UNDEFINED(e) || key in array) {
69 function SparseJoinWithSeparator(array, len, convert, separator)
    [all...]
  /art/runtime/entrypoints/portable/
portable_fillarray_entrypoints.cc 26 mirror::Array* array,
33 if (UNLIKELY(array == NULL)) {
34 ThrowNullPointerException(NULL, "null array in FILL_ARRAY_DATA");
37 DCHECK(array->IsArrayInstance() && !array->IsObjectArray());
38 if (UNLIKELY(static_cast<int32_t>(payload->element_count) > array->GetLength())) {
43 array->GetLength(), payload->element_count - 1);
47 memcpy(array->GetRawData(payload->element_width), payload->data, size_in_bytes);
  /art/runtime/mirror/
object-inl.h 25 #include "array-inl.h"
153 inline Array* Object::AsArray() {
155 return down_cast<Array*>(this);
158 inline const Array* Object::AsArray() const {
160 return down_cast<const Array*>(this);
object_array.h 20 #include "array.h"
26 class MANAGED ObjectArray : public Array {
33 // Returns true if the object can be stored into the array. If not, throws
  /art/runtime/native/
dalvik_system_VMRuntime.cc 76 mirror::Array* result = mirror::Array::Alloc(soa.Self(), array_class, length);
85 mirror::Array* array = soa.Decode<mirror::Array*>(javaArray); local
86 if (!array->IsArrayInstance()) {
87 ThrowIllegalArgumentException(NULL, "not an array");
90 // TODO: we should also check that this is a non-movable array.
91 return reinterpret_cast<uintptr_t>(array->GetRawData(array->GetClass()->GetComponentSize()))
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
Main.java 55 Array.run();
  /development/tools/findunused/
find_unused_resources.rb 20 Regexp.new("@array/([_a-zA-Z0-9]*)"),
26 Regexp.new("R.array.([_a-zA-Z0-9]+)"),
36 result = Array.new
76 result = Array.new
169 result = Array.new
218 result = Array.new

Completed in 638 milliseconds

<<11121314151617181920>>